coolify/resources/views/livewire/project/service/configuration.blade.php

192 lines
12 KiB
PHP
Raw Normal View History

2024-03-01 10:36:32 +01:00
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'service-stack' }" x-init="$wire.check_status" wire:poll.5000ms="check_status">
2024-01-07 16:23:41 +01:00
<livewire:project.service.navbar :service="$service" :parameters="$parameters" :query="$query" />
<div class="flex h-full pt-6">
<div class="flex flex-col items-start gap-4 min-w-fit">
<a target="_blank" href="{{ $service->documentation() }}">Documentation <x-external-link /></a>
2024-03-24 16:00:25 +01:00
<a :class="activeTab === 'service-stack' && 'dark:text-white'"
2024-01-07 16:23:41 +01:00
@click.prevent="activeTab = 'service-stack';
window.location.hash = 'service-stack'"
href="#">Service Stack</a>
2024-03-24 16:00:25 +01:00
<a :class="activeTab === 'environment-variables' && 'dark:text-white'"
2024-01-16 12:20:40 +01:00
@click.prevent="activeTab = 'environment-variables'; window.location.hash = 'environment-variables'"
href="#">Environment
Variables</a>
2024-03-24 16:00:25 +01:00
<a :class="activeTab === 'storages' && 'dark:text-white'"
2024-01-16 12:20:40 +01:00
@click.prevent="activeTab = 'storages';
window.location.hash = 'storages'"
href="#">Storages</a>
2024-03-24 16:00:25 +01:00
<a :class="activeTab === 'execute-command' && 'dark:text-white'"
2024-01-07 16:23:41 +01:00
@click.prevent="activeTab = 'execute-command';
window.location.hash = 'execute-command'"
href="#">Execute Command</a>
2024-03-24 16:00:25 +01:00
<a :class="activeTab === 'logs' && 'dark:text-white'"
2024-01-07 16:23:41 +01:00
@click.prevent="activeTab = 'logs';
window.location.hash = 'logs'"
href="#">Logs</a>
2024-03-24 16:00:25 +01:00
<a :class="activeTab === 'webhooks' && 'dark:text-white'"
2024-01-07 16:23:41 +01:00
@click.prevent="activeTab = 'webhooks'; window.location.hash = 'webhooks'" href="#">Webhooks
</a>
2024-03-24 16:00:25 +01:00
<a :class="activeTab === 'resource-operations' && 'dark:text-white'"
2024-01-22 16:08:18 +01:00
@click.prevent="activeTab = 'resource-operations'; window.location.hash = 'resource-operations'"
href="#">Resource Operations
</a>
2024-03-24 16:00:25 +01:00
<a :class="activeTab === 'tags' && 'dark:text-white'"
2024-02-02 11:50:28 +01:00
@click.prevent="activeTab = 'tags'; window.location.hash = 'tags'" href="#">Tags
</a>
2024-03-24 16:00:25 +01:00
<a :class="activeTab === 'danger' && 'dark:text-white'"
2024-01-07 16:23:41 +01:00
@click.prevent="activeTab = 'danger';
window.location.hash = 'danger'"
href="#">Danger Zone
</a>
</div>
<div class="w-full pl-8">
<div x-cloak x-show="activeTab === 'service-stack'">
<livewire:project.service.stack-form :service="$service" />
<div class="grid grid-cols-1 gap-2 pt-4 xl:grid-cols-1">
@foreach ($applications as $application)
<div @class([
2024-04-11 15:42:37 +02:00
'border-l border-dashed border-red-500 ' => Str::of(
2024-01-07 16:23:41 +01:00
$application->status)->contains(['exited']),
'border-l border-dashed border-success' => Str::of(
$application->status)->contains(['running']),
'border-l border-dashed border-warning' => Str::of(
$application->status)->contains(['starting']),
2024-04-11 15:42:37 +02:00
'flex gap-2 box-without-bg-without-border dark:bg-coolgray-100 bg-white dark:hover:text-neutral-300 group',
2024-01-07 16:23:41 +01:00
])>
<div class="flex flex-row w-full">
<div class="flex flex-col flex-1">
<div class="pb-2">
@if ($application->human_name)
{{ Str::headline($application->human_name) }}
@else
{{ Str::headline($application->name) }}
@endif
<span class="text-xs">({{ $application->image }})</span>
</div>
@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)
2024-04-11 15:42:37 +02:00
<span class="flex gap-1 text-xs">{{ Str::limit($application->fqdn, 60) }}
<x-modal-input title="Edit Domains">
<x-slot:content>
<span class="cursor-pointer">
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 dark:text-warning text-coollabs"
viewBox="0 0 24 24">
<g fill="none" stroke="currentColor"
stroke-linecap="round" stroke-linejoin="round"
stroke-width="2">
<path
d="m12 15l8.385-8.415a2.1 2.1 0 0 0-2.97-2.97L9 12v3h3zm4-10l3 3" />
<path d="M9 7.07A7 7 0 0 0 10 21a7 7 0 0 0 6.929-6" />
</g>
</svg>
</span>
</x-slot:content>
<livewire:project.service.edit-domain
applicationId="{{ $application->id }}" />
</x-modal-input>
</span>
2024-01-07 16:23:41 +01:00
@endif
2024-04-11 15:42:37 +02:00
{{-- <div class="text-xs">{{ $application->status }}</div> --}}
2024-01-07 16:23:41 +01:00
</div>
<div class="flex items-center px-4">
<a class="mx-4 text-xs font-bold hover:underline"
href="{{ route('project.service.index', [...$parameters, 'stack_service_uuid' => $application->uuid]) }}">
2024-03-25 11:33:38 +01:00
Settings
2024-01-07 16:23:41 +01:00
</a>
2024-03-25 11:33:38 +01:00
<x-modal-confirmation action="restartApplication({{ $application->id }})"
isErrorButton buttonTitle="Restart">
This application will be unavailable during the restart. <br>Please think again.
</x-modal-confirmation>
2024-01-07 16:23:41 +01:00
</div>
</div>
</div>
@endforeach
@foreach ($databases as $database)
<div @class([
'border-l border-dashed border-red-500' => Str::of(
$database->status)->contains(['exited']),
'border-l border-dashed border-success' => Str::of(
$database->status)->contains(['running']),
'border-l border-dashed border-warning' => Str::of(
$database->status)->contains(['restarting']),
2024-04-11 15:42:37 +02:00
'flex gap-2 box-without-bg-without-border dark:bg-coolgray-100 bg-white dark:hover:text-neutral-300 group',
2024-01-07 16:23:41 +01:00
])>
<div class="flex flex-row w-full">
<div class="flex flex-col flex-1">
<div class="pb-2">
@if ($database->human_name)
{{ Str::headline($database->human_name) }}
@else
{{ Str::headline($database->name) }}
@endif
<span class="text-xs">({{ $database->image }})</span>
</div>
@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>
</div>
<div class="flex items-center px-4">
<a class="mx-4 text-xs font-bold hover:underline"
href="{{ route('project.service.index', [...$parameters, 'stack_service_uuid' => $database->uuid]) }}">
2024-03-25 11:33:38 +01:00
Settings
2024-01-07 16:23:41 +01:00
</a>
2024-04-11 15:42:37 +02:00
<x-modal-confirmation action="restartDatabase({{ $database->id }})" isErrorButton
buttonTitle="Restart">
2024-03-25 11:33:38 +01:00
This database will be unavailable during the restart. <br>Please think again.
</x-modal-confirmation>
2024-01-07 16:23:41 +01:00
</div>
</div>
</div>
@endforeach
</div>
</div>
<div x-cloak x-show="activeTab === 'storages'">
<div class="flex items-center gap-2">
<h2>Storages</h2>
</div>
<div class="pb-4">Persistent storage to preserve data between deployments.</div>
2024-03-25 10:41:44 +01:00
<span class="dark:text-warning">Please modify storage layout in your Docker Compose file.</span>
2024-01-07 16:23:41 +01:00
@foreach ($applications as $application)
<livewire:project.service.storage wire:key="application-{{ $application->id }}"
:resource="$application" />
@endforeach
@foreach ($databases as $database)
<livewire:project.service.storage wire:key="database-{{ $database->id }}" :resource="$database" />
@endforeach
</div>
<div x-cloak x-show="activeTab === 'webhooks'">
<livewire:project.shared.webhooks :resource="$service" />
</div>
<div x-cloak x-show="activeTab === 'logs'">
<livewire:project.shared.logs :resource="$service" />
</div>
<div x-cloak x-show="activeTab === 'execute-command'">
<livewire:project.shared.execute-container-command :resource="$service" />
</div>
<div x-cloak x-show="activeTab === 'environment-variables'">
2024-01-15 10:19:37 +01:00
<livewire:project.shared.environment-variable.all :resource="$service" />
2024-01-07 16:23:41 +01:00
</div>
2024-01-22 16:08:18 +01:00
<div x-cloak x-show="activeTab === 'resource-operations'">
<livewire:project.shared.resource-operations :resource="$service" />
</div>
2024-02-02 11:50:28 +01:00
<div x-cloak x-show="activeTab === 'tags'">
<livewire:project.shared.tags :resource="$service" />
</div>
2024-01-07 16:23:41 +01:00
<div x-cloak x-show="activeTab === 'danger'">
<livewire:project.shared.danger :resource="$service" />
</div>
</div>
</div>
</div>