50 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }">
 | |
|     <livewire:project.service.navbar :service="$service" :parameters="$parameters" :query="$query" />
 | |
|     <div class="flex flex-col h-full gap-8 pt-6 sm:flex-row">
 | |
|         <div class="flex flex-col items-start gap-2 min-w-fit">
 | |
|             <a class="menu-item"
 | |
|                 class="{{ request()->routeIs('project.service.configuration') ? 'menu-item-active' : '' }}"
 | |
|                 href="{{ route('project.service.configuration', [...$parameters, 'stack_service_uuid' => null]) }}">
 | |
|                 <button><- Back</button>
 | |
|             </a>
 | |
|             <a class="menu-item" :class="activeTab === 'general' && 'menu-item-active'"
 | |
|                 @click.prevent="activeTab = 'general'; window.location.hash = 'general'; if(window.location.search) window.location.search = ''"
 | |
|                 href="#">General</a>
 | |
|             @if (str($serviceDatabase?->databaseType())->contains('mysql') ||
 | |
|                     str($serviceDatabase?->databaseType())->contains('postgres') ||
 | |
|                     str($serviceDatabase?->databaseType())->contains('mariadb'))
 | |
|                 <a :class="activeTab === 'backups' && 'menu-item-active'" class="menu-item"
 | |
|                     @click.prevent="activeTab = 'backups'; window.location.hash = 'backups'" href="#">Backups</a>
 | |
|             @endif
 | |
|         </div>
 | |
|         <div class="w-full">
 | |
|             @isset($serviceApplication)
 | |
|                 <x-slot:title>
 | |
|                     {{ data_get_str($service, 'name')->limit(10) }} >
 | |
|                     {{ data_get_str($serviceApplication, 'name')->limit(10) }} | Coolify
 | |
|                 </x-slot>
 | |
|                 <div x-cloak x-show="activeTab === 'general'" class="h-full">
 | |
|                     <livewire:project.service.service-application-view :application="$serviceApplication" />
 | |
|                 </div>
 | |
|             @endisset
 | |
|             @isset($serviceDatabase)
 | |
|             <x-slot:title>
 | |
|                 {{ data_get_str($service, 'name')->limit(10) }} > {{ data_get_str($serviceDatabase, 'name')->limit(10) }} | Coolify
 | |
|             </x-slot>
 | |
|                 <div x-cloak x-show="activeTab === 'general'" class="h-full">
 | |
|                     <livewire:project.service.database :database="$serviceDatabase" />
 | |
|                 </div>
 | |
|                 <div x-cloak x-show="activeTab === 'backups'">
 | |
|                     <div class="flex gap-2 ">
 | |
|                         <h2 class="pb-4">Scheduled Backups</h2>
 | |
|                         <x-modal-input buttonTitle="+ Add" title="New Scheduled Backup">
 | |
|                             <livewire:project.database.create-scheduled-backup :database="$serviceDatabase" :s3s="$s3s" />
 | |
|                         </x-modal-input>
 | |
|                     </div>
 | |
|                     <livewire:project.database.scheduled-backups :database="$serviceDatabase" />
 | |
|                 </div>
 | |
|             @endisset
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | 
