2023-08-07 20:14:21 +00:00
|
|
|
<div>
|
2025-10-01 06:23:21 +00:00
|
|
|
<form wire:submit='submit' class="flex flex-col items-center gap-4 p-4 bg-white border lg:items-start dark:bg-base dark:border-coolgray-300 border-neutral-200">
|
2023-09-22 09:23:49 +00:00
|
|
|
@if ($isReadOnly)
|
2025-10-03 14:39:57 +00:00
|
|
|
<div class="w-full p-2 text-sm rounded bg-warning/10 text-warning">
|
|
|
|
|
This volume is mounted as read-only and cannot be modified from the UI.
|
|
|
|
|
</div>
|
2023-10-03 06:48:07 +00:00
|
|
|
@if ($isFirst)
|
2025-03-28 21:10:15 +00:00
|
|
|
<div class="flex gap-2 items-end w-full md:flex-row flex-col">
|
|
|
|
|
@if (
|
|
|
|
|
$storage->resource_type === 'App\Models\ServiceApplication' ||
|
|
|
|
|
$storage->resource_type === 'App\Models\ServiceDatabase')
|
|
|
|
|
<x-forms.input id="storage.name" label="Volume Name" required readonly
|
|
|
|
|
helper="Warning: Changing the volume name after the initial start could cause problems. Only use it when you know what are you doing." />
|
|
|
|
|
@else
|
2025-08-26 08:27:31 +00:00
|
|
|
<x-forms.input id="storage.name" label="Volume Name" required readonly
|
2025-03-28 21:10:15 +00:00
|
|
|
helper="Warning: Changing the volume name after the initial start could cause problems. Only use it when you know what are you doing." />
|
|
|
|
|
@endif
|
|
|
|
|
@if ($isService || $startedAt)
|
|
|
|
|
<x-forms.input id="storage.host_path" readonly helper="Directory on the host system."
|
|
|
|
|
label="Source Path"
|
|
|
|
|
helper="Warning: Changing the source path after the initial start could cause problems. Only use it when you know what are you doing." />
|
|
|
|
|
<x-forms.input id="storage.mount_path" label="Destination Path"
|
|
|
|
|
helper="Directory inside the container." required readonly />
|
|
|
|
|
@else
|
2025-08-26 08:27:31 +00:00
|
|
|
<x-forms.input id="storage.host_path" readonly helper="Directory on the host system."
|
|
|
|
|
label="Source Path"
|
2025-03-28 21:10:15 +00:00
|
|
|
helper="Warning: Changing the source path after the initial start could cause problems. Only use it when you know what are you doing." />
|
|
|
|
|
<x-forms.input id="storage.mount_path" label="Destination Path"
|
|
|
|
|
helper="Directory inside the container." required readonly />
|
|
|
|
|
@endif
|
|
|
|
|
</div>
|
2023-10-03 06:48:07 +00:00
|
|
|
@else
|
2025-03-28 21:10:15 +00:00
|
|
|
<div class="flex gap-2 items-end w-full">
|
|
|
|
|
<x-forms.input id="storage.name" required readonly />
|
|
|
|
|
<x-forms.input id="storage.host_path" readonly />
|
|
|
|
|
<x-forms.input id="storage.mount_path" required readonly />
|
|
|
|
|
</div>
|
2023-10-03 06:48:07 +00:00
|
|
|
@endif
|
2023-08-07 20:14:21 +00:00
|
|
|
@else
|
2025-08-26 08:27:31 +00:00
|
|
|
@can('update', $resource)
|
|
|
|
|
@if ($isFirst)
|
|
|
|
|
<div class="flex gap-2 items-end w-full">
|
|
|
|
|
<x-forms.input id="storage.name" label="Volume Name" required />
|
|
|
|
|
<x-forms.input id="storage.host_path" helper="Directory on the host system." label="Source Path" />
|
|
|
|
|
<x-forms.input id="storage.mount_path" label="Destination Path"
|
|
|
|
|
helper="Directory inside the container." required />
|
|
|
|
|
</div>
|
|
|
|
|
@else
|
|
|
|
|
<div class="flex gap-2 items-end w-full">
|
|
|
|
|
<x-forms.input id="storage.name" required />
|
|
|
|
|
<x-forms.input id="storage.host_path" />
|
|
|
|
|
<x-forms.input id="storage.mount_path" required />
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
<div class="flex gap-2">
|
|
|
|
|
<x-forms.button type="submit">
|
|
|
|
|
Update
|
|
|
|
|
</x-forms.button>
|
|
|
|
|
<x-modal-confirmation title="Confirm persistent storage deletion?" isErrorButton buttonTitle="Delete"
|
|
|
|
|
submitAction="delete" :actions="[
|
|
|
|
|
'The selected persistent storage/volume will be permanently deleted.',
|
|
|
|
|
'If the persistent storage/volume is actvily used by a resource data will be lost.',
|
|
|
|
|
]" confirmationText="{{ $storage->name }}"
|
|
|
|
|
confirmationLabel="Please confirm the execution of the actions by entering the Storage Name below"
|
|
|
|
|
shortConfirmationLabel="Storage Name" />
|
2025-03-28 21:10:15 +00:00
|
|
|
</div>
|
2023-10-03 06:48:07 +00:00
|
|
|
@else
|
2025-08-26 08:27:31 +00:00
|
|
|
@if ($isFirst)
|
|
|
|
|
<div class="flex gap-2 items-end w-full">
|
|
|
|
|
<x-forms.input id="storage.name" label="Volume Name" required disabled />
|
|
|
|
|
<x-forms.input id="storage.host_path" helper="Directory on the host system." label="Source Path"
|
|
|
|
|
disabled />
|
|
|
|
|
<x-forms.input id="storage.mount_path" label="Destination Path"
|
|
|
|
|
helper="Directory inside the container." required disabled />
|
|
|
|
|
</div>
|
|
|
|
|
@else
|
|
|
|
|
<div class="flex gap-2 items-end w-full">
|
|
|
|
|
<x-forms.input id="storage.name" required disabled />
|
|
|
|
|
<x-forms.input id="storage.host_path" disabled />
|
|
|
|
|
<x-forms.input id="storage.mount_path" required disabled />
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
@endcan
|
2023-08-07 20:14:21 +00:00
|
|
|
@endif
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|