2023-05-04 20:39:40 +00:00
|
|
|
<div x-data="{ deleteDestination: false }">
|
|
|
|
<x-naked-modal show="deleteDestination" message='Are you sure you would like to delete this destination?' />
|
2023-06-13 08:02:58 +00:00
|
|
|
<form class="flex flex-col">
|
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
<h1>Destination</h1>
|
|
|
|
<x-forms.button wire:click.prevent='submit' type="submit">
|
2023-05-16 09:02:51 +00:00
|
|
|
Save
|
2023-05-25 12:05:44 +00:00
|
|
|
</x-forms.button>
|
2023-06-15 13:15:27 +00:00
|
|
|
@if ($destination->server->id === 0 && $destination->network !== 'coolify')
|
2023-06-15 12:18:49 +00:00
|
|
|
<x-forms.button x-on:click.prevent="deleteDestination = true">
|
|
|
|
Delete
|
|
|
|
</x-forms.button>
|
|
|
|
@endif
|
2023-05-04 08:45:09 +00:00
|
|
|
</div>
|
2023-06-13 08:02:58 +00:00
|
|
|
|
|
|
|
@if ($destination->getMorphClass() === 'App\Models\StandaloneDocker')
|
2023-06-15 12:41:39 +00:00
|
|
|
<div class="pt-2 pb-10 text-sm">A Docker network in a non-swarm environment</div>
|
2023-06-13 08:02:58 +00:00
|
|
|
@else
|
2023-06-13 08:11:11 +00:00
|
|
|
<div class="pt-2 pb-10 text-sm">Your swarm docker network. WIP</div>
|
2023-06-13 08:02:58 +00:00
|
|
|
@endif
|
|
|
|
<div class="flex gap-2">
|
|
|
|
<x-forms.input id="destination.name" label="Name" />
|
|
|
|
<x-forms.input id="destination.server.ip" label="Server IP" readonly />
|
|
|
|
@if ($destination->getMorphClass() === 'App\Models\StandaloneDocker')
|
|
|
|
<x-forms.input id="destination.network" label="Docker Network" readonly />
|
|
|
|
@endif
|
|
|
|
</div>
|
2023-05-04 08:45:09 +00:00
|
|
|
</form>
|
|
|
|
</div>
|