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-06-16 09:01:27 +00:00
|
|
|
@if ($server->id !== 0 || isDev())
|
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-06-15 12:24:27 +00:00
|
|
|
<div class="flex flex-col gap-2 ">
|
|
|
|
<div class="flex flex-col w-full gap-2 lg:flex-row">
|
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-06-15 12:24:27 +00:00
|
|
|
<div class="flex flex-col w-full gap-2 lg:flex-row">
|
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-15 12:24:27 +00:00
|
|
|
<h3 class="py-4">Actions</h3>
|
2023-06-15 11:51:31 +00:00
|
|
|
@if ($server->settings->is_reachable)
|
2023-06-02 13:15:12 +00:00
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
<x-forms.button wire:click.prevent='validateServer'>
|
2023-06-15 11:28:16 +00:00
|
|
|
Check Server Details
|
|
|
|
</x-forms.button>
|
2023-06-15 12:29:06 +00:00
|
|
|
<x-forms.button wire:click.prevent='installDocker' isHighlighted>
|
2023-06-15 11:51:31 +00:00
|
|
|
@if ($server->settings->is_usable)
|
2023-06-15 11:28:16 +00:00
|
|
|
Reconfigure Docker Engine
|
|
|
|
@else
|
|
|
|
Install Docker Engine
|
|
|
|
@endif
|
2023-06-02 13:15:12 +00:00
|
|
|
</x-forms.button>
|
2023-06-15 12:18:49 +00:00
|
|
|
</div>
|
|
|
|
@else
|
|
|
|
<div class="w-full">
|
|
|
|
<x-forms.button isHighlighted wire:click.prevent='validateServer'>
|
|
|
|
Validate Server
|
|
|
|
</x-forms.button>
|
2023-06-02 13:15:12 +00:00
|
|
|
</div>
|
|
|
|
@endif
|
2023-06-15 11:28:16 +00:00
|
|
|
<div class="container w-full py-4 mx-auto">
|
|
|
|
<livewire:activity-monitor :header="true" />
|
|
|
|
</div>
|
2023-06-07 13:08:35 +00:00
|
|
|
@isset($uptime)
|
2023-06-15 12:18:49 +00:00
|
|
|
<h4 class="pb-3">Server Info</h4>
|
2023-06-16 10:35:40 +00:00
|
|
|
<div class="">
|
2023-05-16 09:02:51 +00:00
|
|
|
<p>Uptime: {{ $uptime }}</p>
|
2023-06-07 13:08:35 +00:00
|
|
|
@isset($dockerVersion)
|
|
|
|
<p>Docker Engine {{ $dockerVersion }}</p>
|
|
|
|
@endisset
|
|
|
|
</div>
|
|
|
|
@endisset
|
2023-04-25 08:47:13 +00:00
|
|
|
</form>
|
|
|
|
</div>
|