2023-11-03 09:57:58 +00:00
|
|
|
<div x-data="{ raw: true, activeTab: window.location.hash ? window.location.hash.substring(1) : 'service-stack' }" x-init="$wire.checkStatus" wire:poll.10000ms="checkStatus">
|
2023-11-07 09:18:28 +00:00
|
|
|
<livewire:project.service.navbar key="{{ now() }}" :service="$service" :parameters="$parameters" :query="$query" />
|
2023-11-06 14:22:11 +00:00
|
|
|
<livewire:project.service.compose-modal :raw="$service->docker_compose_raw" :actual="$service->docker_compose" />
|
2023-09-22 09:23:49 +00:00
|
|
|
<div class="flex h-full pt-6">
|
2023-09-27 19:14:13 +00:00
|
|
|
<div class="flex flex-col items-start gap-4 min-w-fit">
|
2023-09-26 13:07:33 +00:00
|
|
|
<a target="_blank" href="{{ $service->documentation() }}">Documentation <x-external-link /></a>
|
2023-10-25 08:43:07 +00:00
|
|
|
<a :class="activeTab === 'service-stack' && 'text-white'"
|
|
|
|
@click.prevent="activeTab = 'service-stack';
|
|
|
|
window.location.hash = 'service-stack'"
|
|
|
|
href="#">Service Stack</a>
|
|
|
|
<a :class="activeTab === 'storages' && 'text-white'"
|
|
|
|
@click.prevent="activeTab = 'storages';
|
|
|
|
window.location.hash = 'storages'"
|
|
|
|
href="#">Storages</a>
|
|
|
|
<a :class="activeTab === 'webhooks' && 'text-white'"
|
|
|
|
@click.prevent="activeTab = 'webhooks'; window.location.hash = 'webhooks'" href="#">Webhooks
|
|
|
|
</a>
|
2023-09-22 09:23:49 +00:00
|
|
|
<a :class="activeTab === 'environment-variables' && 'text-white'"
|
|
|
|
@click.prevent="activeTab = 'environment-variables'; window.location.hash = 'environment-variables'"
|
|
|
|
href="#">Environment
|
|
|
|
Variables</a>
|
2023-10-25 08:43:07 +00:00
|
|
|
<a :class="activeTab === 'danger' && 'text-white'"
|
|
|
|
@click.prevent="activeTab = 'danger';
|
|
|
|
window.location.hash = 'danger'"
|
|
|
|
href="#">Danger Zone
|
2023-09-22 09:23:49 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="w-full pl-8">
|
|
|
|
<div x-cloak x-show="activeTab === 'service-stack'">
|
2023-10-12 07:12:46 +00:00
|
|
|
<livewire:project.service.stack-form :service="$service" />
|
2023-09-27 10:45:53 +00:00
|
|
|
<div class="grid grid-cols-1 gap-2 pt-4 xl:grid-cols-3">
|
2023-10-03 06:48:07 +00:00
|
|
|
@foreach ($applications as $application)
|
2023-10-02 11:38:16 +00:00
|
|
|
<div @class([
|
2023-09-25 13:48:43 +00:00
|
|
|
'border-l border-dashed border-red-500' => Str::of(
|
|
|
|
$application->status)->contains(['exited']),
|
|
|
|
'border-l border-dashed border-success' => Str::of(
|
|
|
|
$application->status)->contains(['running']),
|
|
|
|
'border-l border-dashed border-warning' => Str::of(
|
2023-09-26 13:07:33 +00:00
|
|
|
$application->status)->contains(['starting']),
|
2023-10-02 11:38:16 +00:00
|
|
|
'flex gap-2 box group',
|
|
|
|
])>
|
|
|
|
<a class="flex flex-col flex-1 group-hover:text-white hover:no-underline"
|
|
|
|
href="{{ route('project.service.show', [...$parameters, 'service_name' => $application->name]) }}">
|
|
|
|
|
|
|
|
@if ($application->human_name)
|
|
|
|
{{ Str::headline($application->human_name) }}
|
|
|
|
@else
|
|
|
|
{{ Str::headline($application->name) }}
|
|
|
|
@endif
|
|
|
|
@if ($application->configuration_required)
|
|
|
|
<span class="text-xs text-error">(configuration required)</span>
|
|
|
|
@endif
|
|
|
|
@if ($application->description)
|
|
|
|
<span class="text-xs">{{ Str::limit($application->description, 60) }}</span>
|
|
|
|
@endif
|
|
|
|
@if ($application->fqdn)
|
|
|
|
<span class="text-xs">{{ Str::limit($application->fqdn, 60) }}</span>
|
|
|
|
@endif
|
|
|
|
<div class="text-xs">{{ $application->status }}</div>
|
|
|
|
</a>
|
2023-10-11 08:08:37 +00:00
|
|
|
<a class="flex gap-2 p-1 mx-4 font-bold rounded group-hover:text-white hover:no-underline"
|
2023-10-12 07:12:46 +00:00
|
|
|
href="{{ route('project.service.logs', [...$parameters, 'service_name' => $application->name]) }}"><span
|
|
|
|
class="hover:text-warning">Logs</span></a>
|
2023-10-02 11:38:16 +00:00
|
|
|
</div>
|
2023-09-22 09:23:49 +00:00
|
|
|
@endforeach
|
2023-09-25 13:48:43 +00:00
|
|
|
@foreach ($databases as $database)
|
2023-10-02 11:38:16 +00:00
|
|
|
<div @class([
|
2023-09-25 13:48:43 +00:00
|
|
|
'border-l border-dashed border-red-500' => Str::of(
|
2023-09-26 12:45:52 +00:00
|
|
|
$database->status)->contains(['exited']),
|
2023-09-25 13:48:43 +00:00
|
|
|
'border-l border-dashed border-success' => Str::of(
|
2023-09-26 12:45:52 +00:00
|
|
|
$database->status)->contains(['running']),
|
2023-09-25 13:48:43 +00:00
|
|
|
'border-l border-dashed border-warning' => Str::of(
|
2023-09-26 12:45:52 +00:00
|
|
|
$database->status)->contains(['restarting']),
|
2023-10-02 11:38:16 +00:00
|
|
|
'flex gap-2 box group',
|
|
|
|
])>
|
|
|
|
<a class="flex flex-col flex-1 group-hover:text-white hover:no-underline"
|
|
|
|
href="{{ route('project.service.show', [...$parameters, 'service_name' => $database->name]) }}">
|
|
|
|
@if ($database->human_name)
|
|
|
|
{{ Str::headline($database->human_name) }}
|
|
|
|
@else
|
|
|
|
{{ Str::headline($database->name) }}
|
|
|
|
@endif
|
|
|
|
@if ($database->configuration_required)
|
|
|
|
<span class="text-xs text-error">(configuration required)</span>
|
|
|
|
@endif
|
|
|
|
@if ($database->description)
|
|
|
|
<span class="text-xs">{{ Str::limit($database->description, 60) }}</span>
|
|
|
|
@endif
|
|
|
|
<div class="text-xs">{{ $database->status }}</div>
|
|
|
|
</a>
|
2023-10-11 08:08:37 +00:00
|
|
|
<a class="flex gap-2 p-1 mx-4 font-bold rounded hover:no-underline group-hover:text-white"
|
2023-10-12 07:12:46 +00:00
|
|
|
href="{{ route('project.service.logs', [...$parameters, 'service_name' => $database->name]) }}"><span
|
|
|
|
class="hover:text-warning">Logs</span></a>
|
2023-10-02 11:38:16 +00:00
|
|
|
</div>
|
2023-09-22 09:23:49 +00:00
|
|
|
@endforeach
|
|
|
|
</div>
|
2023-09-22 10:08:51 +00:00
|
|
|
|
2023-10-03 06:48:07 +00:00
|
|
|
</div>
|
|
|
|
<div x-cloak x-show="activeTab === 'storages'">
|
2023-10-04 07:58:39 +00:00
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
<h2>Storages</h2>
|
|
|
|
</div>
|
|
|
|
<div class="pb-4">Persistent storage to preserve data between deployments.</div>
|
2023-10-04 08:34:44 +00:00
|
|
|
<span class="text-warning">Please modify storage layout in your Docker Compose file.</span>
|
2023-10-03 06:48:07 +00:00
|
|
|
@foreach ($applications as $application)
|
2023-10-04 07:58:39 +00:00
|
|
|
<livewire:project.service.storage wire:key="application-{{ $application->id }}"
|
|
|
|
:resource="$application" />
|
2023-10-03 06:48:07 +00:00
|
|
|
@endforeach
|
|
|
|
@foreach ($databases as $database)
|
2023-10-04 07:58:39 +00:00
|
|
|
<livewire:project.service.storage wire:key="database-{{ $database->id }}" :resource="$database" />
|
2023-10-03 06:48:07 +00:00
|
|
|
@endforeach
|
2023-10-25 08:43:07 +00:00
|
|
|
</div>
|
|
|
|
<div x-cloak x-show="activeTab === 'webhooks'">
|
|
|
|
<livewire:project.shared.webhooks :resource="$service" />
|
2023-09-22 09:23:49 +00:00
|
|
|
</div>
|
|
|
|
<div x-cloak x-show="activeTab === 'environment-variables'">
|
|
|
|
<div x-cloak x-show="activeTab === 'environment-variables'">
|
|
|
|
<livewire:project.shared.environment-variable.all :resource="$service" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div x-cloak x-show="activeTab === 'danger'">
|
|
|
|
<livewire:project.shared.danger :resource="$service" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-10-12 07:12:46 +00:00
|
|
|
</div>
|