mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 06:23:23 +00:00
Add responsive overflow handling and dedicated action menus for application, service, database, and server headings, while improving upgrade and email settings flows and returning 404s for missing deployment environments.
50 lines
2.1 KiB
PHP
50 lines
2.1 KiB
PHP
@php
|
|
$status = str($service->status ?? '');
|
|
$canDeploy = auth()->user()->can('deploy', $service);
|
|
$canStop = auth()->user()->can('stop', $service);
|
|
$hasAdvancedItems = ! $status->contains('running');
|
|
@endphp
|
|
|
|
@if ($hasAdvancedItems)
|
|
<div class="relative" x-data="{ open: false }"
|
|
x-effect="$dispatch('resource-actions-toggled', { open })"
|
|
@click.outside="open = false" @keydown.escape.window="open = false">
|
|
<button type="button" class="button" @click="open = !open" :aria-expanded="open"
|
|
aria-haspopup="menu">
|
|
<x-reicon name="grid" class="size-3.5 opacity-70" />
|
|
Advanced
|
|
<span class="inline-flex transition-transform" :class="open && 'rotate-180'">
|
|
<x-reicon name="chevron-down" class="size-3 opacity-55" />
|
|
</span>
|
|
</button>
|
|
|
|
<div x-cloak x-show="open" x-transition.origin.top.right
|
|
class="listbox-panel top-full! right-0! left-auto! mt-1! w-64! min-w-0!" role="menu">
|
|
@if ($status->contains('degraded'))
|
|
<button type="button" class="listbox-option justify-start! gap-2.5!"
|
|
@disabled(! $canDeploy)
|
|
@click="$wire.dispatch('forceDeployEvent'); open = false"
|
|
role="menuitem">
|
|
<x-reicon name="refresh" class="size-3.5 opacity-70" />
|
|
Force Restart
|
|
</button>
|
|
@else
|
|
<button type="button" class="listbox-option justify-start! gap-2.5!"
|
|
@disabled(! $canDeploy)
|
|
@click="$wire.dispatch('forceDeployEvent'); open = false"
|
|
role="menuitem">
|
|
<x-reicon name="refresh" class="size-3.5 opacity-70" />
|
|
Force Deploy
|
|
</button>
|
|
<button type="button" class="listbox-option justify-start! gap-2.5!"
|
|
@disabled(! $canStop)
|
|
@click="$wire.dispatch('cleanupEvent'); open = false"
|
|
role="menuitem">
|
|
<x-reicon name="trash" class="size-3.5 opacity-70" />
|
|
Force Cleanup Containers
|
|
</button>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@endif
|