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

70 lines
4.1 KiB
PHP
Raw Normal View History

2024-01-07 16:23:41 +01:00
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }">
2023-11-07 12:11:47 +01:00
<livewire:project.service.navbar :service="$service" :parameters="$parameters" :query="$query" />
2023-12-07 13:07:16 +01:00
<div class="flex h-full pt-6">
2024-01-07 16:23:41 +01:00
<div class="flex flex-col gap-4 min-w-fit">
2024-01-11 18:54:55 +01:00
<a class="{{ request()->routeIs('project.service.configuration') ? 'text-white' : '' }}"
2024-01-07 16:23:41 +01:00
href="{{ route('project.service.configuration', [...$parameters, 'service_name' => null]) }}">
<button><- Back</button>
</a>
2024-01-07 16:23:41 +01:00
<a :class="activeTab === 'general' && 'text-white'"
@click.prevent="activeTab = 'general'; window.location.hash = 'general'; if(window.location.search) window.location.search = ''"
href="#">General</a>
<a :class="activeTab === 'storages' && 'text-white'"
2024-01-07 16:23:41 +01:00
@click.prevent="activeTab = 'storages'; window.location.hash = 'storages'; if(window.location.search) window.location.search = ''"
href="#">Storages
</a>
<a :class="activeTab === 'scheduled-tasks' && 'text-white'"
@click.prevent="activeTab = 'scheduled-tasks'; window.location.hash = 'scheduled-tasks'"
href="#">Scheduled Tasks
</a>
2024-01-07 16:23:41 +01:00
@if (
$serviceDatabase?->databaseType() === 'standalone-mysql' ||
$serviceDatabase?->databaseType() === 'standalone-postgresql' ||
$serviceDatabase?->databaseType() === 'standalone-mariadb')
<a :class="activeTab === 'backups' && 'text-white'"
@click.prevent="activeTab = 'backups'; window.location.hash = 'backups'" href="#">Backups</a>
@endif
2023-09-22 11:23:49 +02:00
</div>
<div class="w-full pl-8">
2024-01-07 16:23:41 +01:00
@isset($serviceApplication)
<div x-cloak x-show="activeTab === 'general'" class="h-full">
<livewire:project.service.application :application="$serviceApplication" />
2023-09-22 11:23:49 +02:00
</div>
2024-01-07 16:23:41 +01: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>
<span class="text-warning">Please modify storage layout in your Docker Compose file.</span>
<livewire:project.service.storage wire:key="application-{{ $serviceApplication->id }}"
:resource="$serviceApplication" />
</div>
2024-01-07 16:23:41 +01:00
@endisset
@isset($serviceDatabase)
<div x-cloak x-show="activeTab === 'general'" class="h-full">
<livewire:project.service.database :database="$serviceDatabase" />
2023-09-22 11:23:49 +02:00
</div>
2024-01-07 16:23:41 +01: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>
<span class="text-warning">Please modify storage layout in your Docker Compose file.</span>
<livewire:project.service.storage wire:key="application-{{ $serviceDatabase->id }}" :resource="$serviceDatabase" />
</div>
2024-01-07 16:23:41 +01:00
<div x-cloak x-show="activeTab === 'backups'">
<div class="flex gap-2 ">
<h2 class="pb-4">Scheduled Backups</h2>
<x-forms.button onclick="createScheduledBackup.showModal()">+ Add</x-forms.button>
</div>
<livewire:project.database.create-scheduled-backup :database="$serviceDatabase" :s3s="$s3s" />
<livewire:project.database.scheduled-backups :database="$serviceDatabase" />
2023-09-22 11:23:49 +02:00
</div>
2024-01-15 10:19:37 +01:00
@endisset
<div x-cloak x-show="activeTab === 'scheduled-tasks'">
<livewire:project.shared.scheduled-task.all :resource="$service" />
</div>
2024-01-15 10:19:37 +01:00
</div>
2023-09-22 11:23:49 +02:00
</div>
</div>