2023-05-04 20:39:40 +00:00
|
|
|
<div x-data="{ deleteServer: false }">
|
|
|
|
<x-naked-modal show="deleteServer" message='Are you sure you would like to delete this server?' />
|
2023-04-25 08:47:13 +00:00
|
|
|
<form wire:submit.prevent='submit' class="flex flex-col">
|
2023-05-22 10:09:24 +00:00
|
|
|
<div class="flex gap-2">
|
|
|
|
<h2>General</h2>
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.button type="submit">Save</x-forms.button>
|
2023-05-22 10:47:15 +00:00
|
|
|
@if ($server_id !== 0)
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.button x-on:click.prevent="deleteServer = true">
|
2023-05-22 10:47:15 +00:00
|
|
|
Delete
|
2023-05-25 12:05:44 +00:00
|
|
|
</x-forms.button>
|
2023-05-22 10:47:15 +00:00
|
|
|
@endif
|
2023-05-22 10:09:24 +00:00
|
|
|
</div>
|
2023-04-25 08:47:13 +00:00
|
|
|
<div class="flex flex-col gap-2 xl:flex-row">
|
|
|
|
<div class="flex flex-col w-96">
|
2023-05-25 19:43:24 +00:00
|
|
|
@if ($server->id === 0)
|
2023-05-25 19:53:32 +00:00
|
|
|
<x-forms.input id="server.name" label="Name" readonly required />
|
|
|
|
<x-forms.input id="server.description" label="Description" readonly />
|
2023-05-25 19:43:24 +00:00
|
|
|
@else
|
|
|
|
<x-forms.input id="server.name" label="Name" required />
|
2023-05-25 19:48:25 +00:00
|
|
|
<x-forms.input id="server.description" label="Description" />
|
2023-05-25 19:43:24 +00:00
|
|
|
@endif
|
2023-05-25 19:48:25 +00:00
|
|
|
|
2023-05-25 12:05:44 +00:00
|
|
|
{{-- <x-forms.checkbox disabled type="checkbox" id="server.settings.is_part_of_swarm"
|
2023-05-22 10:09:24 +00:00
|
|
|
label="Is it part of a Swarm cluster?" /> --}}
|
2023-04-25 08:47:13 +00:00
|
|
|
</div>
|
2023-05-22 20:30:33 +00:00
|
|
|
<div class="flex flex-col">
|
2023-04-27 10:35:49 +00:00
|
|
|
@if ($server->id === 0)
|
2023-05-25 19:53:32 +00:00
|
|
|
<x-forms.input id="server.ip" label="IP Address" readonly required />
|
|
|
|
<x-forms.input id="server.user" label="User" readonly required />
|
|
|
|
<x-forms.input type="number" id="server.port" label="Port" readonly required />
|
2023-04-27 10:35:49 +00:00
|
|
|
@else
|
2023-05-25 19:53:32 +00:00
|
|
|
<x-forms.input id="server.ip" label="IP Address" readonly required />
|
2023-05-22 20:30:33 +00:00
|
|
|
<div class="flex gap-2">
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.input id="server.user" label="User" required />
|
|
|
|
<x-forms.input type="number" id="server.port" label="Port" required />
|
2023-05-22 20:30:33 +00:00
|
|
|
</div>
|
2023-04-27 10:35:49 +00:00
|
|
|
@endif
|
2023-04-25 08:47:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-06-02 13:15:12 +00:00
|
|
|
@if (!$server->settings->is_validated)
|
|
|
|
<x-forms.button class="mt-4" isHighlighted wire:click.prevent='validateServer'>
|
|
|
|
Validate Server
|
2023-05-25 12:05:44 +00:00
|
|
|
</x-forms.button>
|
2023-06-02 13:15:12 +00:00
|
|
|
@endif
|
|
|
|
@if ($server->settings->is_validated)
|
|
|
|
<h3 class="pt-8 pb-4">Quick Actions</h3>
|
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
<x-forms.button wire:click.prevent='validateServer'>
|
|
|
|
Check Connection
|
|
|
|
</x-forms.button>
|
|
|
|
{{-- <x-forms.button wire:click.prevent='installDocker'>Install Docker</x-forms.button> --}}
|
|
|
|
</div>
|
|
|
|
@endif
|
2023-05-22 20:30:33 +00:00
|
|
|
<div class="pt-3 text-sm">
|
2023-05-16 09:02:51 +00:00
|
|
|
@isset($uptime)
|
|
|
|
<p>Uptime: {{ $uptime }}</p>
|
|
|
|
@endisset
|
|
|
|
@isset($dockerVersion)
|
|
|
|
<p>Docker Engine {{ $dockerVersion }}</p>
|
|
|
|
@endisset
|
|
|
|
@isset($dockerComposeVersion)
|
|
|
|
<p>{{ $dockerComposeVersion }}</p>
|
|
|
|
@endisset
|
2023-04-26 13:38:50 +00:00
|
|
|
</div>
|
2023-04-25 08:47:13 +00:00
|
|
|
</form>
|
2023-05-16 18:47:59 +00:00
|
|
|
<div class="flex items-center gap-2 py-4">
|
2023-05-22 20:30:33 +00:00
|
|
|
<h3>Private Key</h3>
|
2023-05-16 18:47:59 +00:00
|
|
|
<a href="{{ route('server.private-key', ['server_uuid' => $server->uuid]) }}">
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.button>Change</x-forms.button>
|
2023-05-16 18:47:59 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2023-05-22 20:30:33 +00:00
|
|
|
<a href="{{ route('private-key.show', ['private_key_uuid' => data_get($server, 'privateKey.uuid')]) }}">
|
|
|
|
<button class="text-white btn-link">{{ data_get($server, 'privateKey.name') }}</button>
|
|
|
|
</a>
|
2023-05-16 18:47:59 +00:00
|
|
|
<div class="flex items-center gap-2 py-4">
|
2023-05-22 20:30:33 +00:00
|
|
|
<h3>Destinations</h3>
|
2023-05-16 18:47:59 +00:00
|
|
|
<a href="{{ route('destination.new', ['server_id' => $server->id]) }}">
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.button>Add</x-forms.button>
|
2023-05-16 18:47:59 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2023-05-22 20:30:33 +00:00
|
|
|
<div>
|
2023-06-02 13:15:12 +00:00
|
|
|
@forelse ($server->standaloneDockers as $docker)
|
2023-05-22 20:30:33 +00:00
|
|
|
<a href="{{ route('destination.show', ['destination_uuid' => data_get($docker, 'uuid')]) }}">
|
|
|
|
<button class="text-white btn-link">{{ data_get($docker, 'network') }}</button>
|
|
|
|
</a>
|
2023-06-02 13:15:12 +00:00
|
|
|
@empty
|
|
|
|
<div class="text-sm">No destinations added</div>
|
|
|
|
@endforelse
|
2023-05-22 20:30:33 +00:00
|
|
|
</div>
|
2023-04-25 08:47:13 +00:00
|
|
|
</div>
|