2024-01-07 15:23:41 +00:00
|
|
|
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }">
|
2023-11-07 11:11:47 +00:00
|
|
|
<livewire:project.service.navbar :service="$service" :parameters="$parameters" :query="$query" />
|
2023-12-07 12:07:16 +00:00
|
|
|
<div class="flex h-full pt-6">
|
2024-01-07 15:23:41 +00:00
|
|
|
<div class="flex flex-col gap-4 min-w-fit">
|
2024-03-24 15:00:25 +00:00
|
|
|
<a class="{{ request()->routeIs('project.service.configuration') ? 'dark:text-white' : '' }}"
|
2024-02-11 16:24:20 +00:00
|
|
|
href="{{ route('project.service.configuration', [...$parameters, 'stack_service_uuid' => null]) }}">
|
2024-01-07 15:23:41 +00:00
|
|
|
<button><- Back</button>
|
2023-10-25 08:43:07 +00:00
|
|
|
</a>
|
2024-03-24 15:00:25 +00:00
|
|
|
<a :class="activeTab === 'general' && 'dark:text-white'"
|
2024-01-07 15:23:41 +00:00
|
|
|
@click.prevent="activeTab = 'general'; window.location.hash = 'general'; if(window.location.search) window.location.search = ''"
|
|
|
|
href="#">General</a>
|
2024-03-24 15:00:25 +00:00
|
|
|
<a :class="activeTab === 'storages' && 'dark:text-white'"
|
2024-01-07 15:23:41 +00:00
|
|
|
@click.prevent="activeTab = 'storages'; window.location.hash = 'storages'; if(window.location.search) window.location.search = ''"
|
|
|
|
href="#">Storages
|
2023-10-25 08:43:07 +00:00
|
|
|
</a>
|
2024-03-24 15:00:25 +00:00
|
|
|
<a :class="activeTab === 'scheduled-tasks' && 'dark:text-white'"
|
2024-01-05 05:06:36 +00:00
|
|
|
@click.prevent="activeTab = 'scheduled-tasks'; window.location.hash = 'scheduled-tasks'"
|
|
|
|
href="#">Scheduled Tasks
|
|
|
|
</a>
|
2024-03-26 12:50:44 +00:00
|
|
|
@if (str($serviceDatabase?->databaseType())->contains('mysql') ||
|
|
|
|
str($serviceDatabase?->databaseType())->contains('postgres') ||
|
|
|
|
str($serviceDatabase?->databaseType())->contains('mariadb'))
|
2024-03-24 15:00:25 +00:00
|
|
|
<a :class="activeTab === 'backups' && 'dark:text-white'"
|
2024-01-07 15:23:41 +00:00
|
|
|
@click.prevent="activeTab = 'backups'; window.location.hash = 'backups'" href="#">Backups</a>
|
|
|
|
@endif
|
2023-09-22 09:23:49 +00:00
|
|
|
</div>
|
|
|
|
<div class="w-full pl-8">
|
2024-01-07 15:23:41 +00:00
|
|
|
@isset($serviceApplication)
|
|
|
|
<div x-cloak x-show="activeTab === 'general'" class="h-full">
|
2024-02-05 13:40:54 +00:00
|
|
|
<livewire:project.service.service-application-view :application="$serviceApplication" />
|
2023-09-22 09:23:49 +00:00
|
|
|
</div>
|
2024-01-07 15:23:41 +00:00
|
|
|
<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 09:41:44 +00:00
|
|
|
<span class="dark:text-warning">Please modify storage layout in your Docker Compose file.</span>
|
2024-01-07 15:23:41 +00:00
|
|
|
<livewire:project.service.storage wire:key="application-{{ $serviceApplication->id }}"
|
|
|
|
:resource="$serviceApplication" />
|
2023-10-04 07:58:39 +00:00
|
|
|
</div>
|
2024-01-07 15:23:41 +00:00
|
|
|
@endisset
|
|
|
|
@isset($serviceDatabase)
|
|
|
|
<div x-cloak x-show="activeTab === 'general'" class="h-full">
|
|
|
|
<livewire:project.service.database :database="$serviceDatabase" />
|
2023-09-22 09:23:49 +00:00
|
|
|
</div>
|
2024-01-07 15:23:41 +00:00
|
|
|
<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 09:41:44 +00:00
|
|
|
<span class="dark:text-warning">Please modify storage layout in your Docker Compose file.</span>
|
2024-01-07 15:23:41 +00:00
|
|
|
<livewire:project.service.storage wire:key="application-{{ $serviceDatabase->id }}" :resource="$serviceDatabase" />
|
2023-10-04 07:58:39 +00:00
|
|
|
</div>
|
2024-01-07 15:23:41 +00:00
|
|
|
<div x-cloak x-show="activeTab === 'backups'">
|
|
|
|
<div class="flex gap-2 ">
|
|
|
|
<h2 class="pb-4">Scheduled Backups</h2>
|
2024-03-25 10:33:38 +00:00
|
|
|
<x-modal-input buttonTitle="+ Add" title="New Scheduled Backup">
|
|
|
|
<livewire:project.database.create-scheduled-backup :database="$serviceDatabase" :s3s="$s3s" />
|
|
|
|
</x-modal-input>
|
2024-01-07 15:23:41 +00:00
|
|
|
</div>
|
|
|
|
<livewire:project.database.scheduled-backups :database="$serviceDatabase" />
|
2023-09-22 09:23:49 +00:00
|
|
|
</div>
|
2024-01-15 09:19:37 +00:00
|
|
|
@endisset
|
2024-01-05 05:06:36 +00:00
|
|
|
<div x-cloak x-show="activeTab === 'scheduled-tasks'">
|
|
|
|
<livewire:project.shared.scheduled-task.all :resource="$service" />
|
|
|
|
</div>
|
2024-01-15 09:19:37 +00:00
|
|
|
</div>
|
2023-09-22 09:23:49 +00:00
|
|
|
</div>
|
2023-10-12 07:12:46 +00:00
|
|
|
</div>
|