2026-07-08 07:42:52 +00:00
|
|
|
@php
|
|
|
|
|
$serverPageItems = [
|
|
|
|
|
[
|
|
|
|
|
'label' => 'Configuration',
|
|
|
|
|
'route' => 'server.show',
|
|
|
|
|
'active' => request()->routeIs('server.show', 'server.advanced', 'server.private-key', 'server.cloud-provider-token', 'server.ca-certificate', 'server.cloudflare-tunnel', 'server.docker-cleanup', 'server.destinations', 'server.log-drains', 'server.metrics', 'server.swarm', 'server.delete'),
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'label' => 'Proxy',
|
|
|
|
|
'route' => 'server.proxy',
|
|
|
|
|
'active' => request()->routeIs('server.proxy', 'server.proxy.*'),
|
|
|
|
|
'visible' => ! $server->isSwarmWorker() && ! $server->settings->is_build_server,
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'label' => 'Sentinel',
|
|
|
|
|
'route' => 'server.sentinel',
|
|
|
|
|
'active' => request()->routeIs('server.sentinel', 'server.sentinel.*'),
|
|
|
|
|
'visible' => $server->isFunctional() && ! $server->isSwarm() && ! $server->settings->is_build_server && auth()->user()?->can('viewSentinel', $server),
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'label' => 'Resources',
|
|
|
|
|
'route' => 'server.resources',
|
|
|
|
|
'active' => request()->routeIs('server.resources'),
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'label' => 'Terminal',
|
|
|
|
|
'route' => 'server.command',
|
|
|
|
|
'active' => request()->routeIs('server.command'),
|
|
|
|
|
'navigate' => false,
|
|
|
|
|
'visible' => auth()->user()?->can('canAccessTerminal'),
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'label' => 'Security',
|
|
|
|
|
'route' => 'server.security.patches',
|
|
|
|
|
'active' => request()->routeIs('server.security.patches'),
|
|
|
|
|
'visible' => auth()->user()?->can('update', $server),
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
$proxyMenuItems = [
|
|
|
|
|
[
|
|
|
|
|
'label' => 'Configuration',
|
|
|
|
|
'route' => 'server.proxy',
|
|
|
|
|
'active' => request()->routeIs('server.proxy'),
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'label' => 'Dynamic Configurations',
|
|
|
|
|
'route' => 'server.proxy.dynamic-confs',
|
|
|
|
|
'active' => request()->routeIs('server.proxy.dynamic-confs'),
|
|
|
|
|
'visible' => $server->proxySet(),
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
'label' => 'Logs',
|
|
|
|
|
'route' => 'server.proxy.logs',
|
|
|
|
|
'active' => request()->routeIs('server.proxy.logs'),
|
|
|
|
|
'visible' => $server->proxySet(),
|
|
|
|
|
'navigate' => false,
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$serverPageItems = array_values(array_filter(
|
|
|
|
|
$serverPageItems,
|
|
|
|
|
fn (array $item): bool => $item['visible'] ?? true,
|
|
|
|
|
));
|
|
|
|
|
$proxyMenuItems = array_values(array_filter(
|
|
|
|
|
$proxyMenuItems,
|
|
|
|
|
fn (array $item): bool => $item['visible'] ?? true,
|
|
|
|
|
));
|
|
|
|
|
$activeProxyMenuItem = collect($proxyMenuItems)->firstWhere('active', true) ?? $proxyMenuItems[0];
|
|
|
|
|
$activeProxyMenuValue = (($activeProxyMenuItem['navigate'] ?? true) ? 'navigate' : 'location').'|proxy|'.route($activeProxyMenuItem['route'], $parameters);
|
|
|
|
|
@endphp
|
|
|
|
|
|
|
|
|
|
<div class="w-full md:w-auto">
|
2026-07-08 07:49:16 +00:00
|
|
|
<div class="mb-4 w-full border-b-2 border-solid border-neutral-200 pb-4 md:hidden dark:border-coolgray-200">
|
2026-07-08 07:42:52 +00:00
|
|
|
<label id="server-mobile-section-label" for="server-mobile-section" class="mb-1 block text-xs font-semibold uppercase tracking-wide text-neutral-500 dark:text-neutral-400">Section</label>
|
|
|
|
|
<select id="server-mobile-section" class="select w-full" aria-label="Proxy menu"
|
|
|
|
|
data-current-value="{{ $activeProxyMenuValue }}"
|
|
|
|
|
x-data="{
|
|
|
|
|
init() {
|
|
|
|
|
this.syncFromLocation();
|
|
|
|
|
window.Livewire?.hook?.('morphed', ({ el }) => {
|
|
|
|
|
if (el.contains(this.$el)) {
|
|
|
|
|
queueMicrotask(() => this.syncFromLocation());
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
selected: $el.dataset.currentValue,
|
|
|
|
|
syncFromLocation() {
|
|
|
|
|
const currentUrl = new URL(window.location.href);
|
|
|
|
|
const matchingOptions = Array.from(this.$el.options).filter((option) => {
|
|
|
|
|
const optionUrl = new URL(option.value.split('|').slice(2).join('|'), window.location.origin);
|
|
|
|
|
|
|
|
|
|
return optionUrl.pathname === currentUrl.pathname;
|
|
|
|
|
});
|
|
|
|
|
const selectedOption = matchingOptions.find((option) => option.value.startsWith('navigate|proxy|') || option.value.startsWith('location|proxy|')) || matchingOptions[0];
|
|
|
|
|
|
|
|
|
|
if (selectedOption) {
|
|
|
|
|
this.selected = selectedOption.value;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}"
|
|
|
|
|
x-on:livewire:navigated.window="syncFromLocation()"
|
|
|
|
|
x-model="selected"
|
|
|
|
|
x-on:change="
|
|
|
|
|
const value = $event.target.value;
|
|
|
|
|
const url = value.split('|').slice(2).join('|');
|
|
|
|
|
|
|
|
|
|
if (value.startsWith('navigate|')) {
|
|
|
|
|
window.Livewire?.navigate ? window.Livewire.navigate(url) : window.location.href = url;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window.location.href = url;
|
|
|
|
|
">
|
|
|
|
|
<optgroup label="Server">
|
|
|
|
|
@foreach ($serverPageItems as $menuItem)
|
|
|
|
|
<option value="{{ ($menuItem['navigate'] ?? true) ? 'navigate' : 'location' }}|server|{{ route($menuItem['route'], $parameters) }}">
|
|
|
|
|
{{ $menuItem['label'] }}
|
|
|
|
|
</option>
|
|
|
|
|
@endforeach
|
|
|
|
|
</optgroup>
|
|
|
|
|
<optgroup label="Proxy">
|
|
|
|
|
@foreach ($proxyMenuItems as $menuItem)
|
|
|
|
|
<option value="{{ ($menuItem['navigate'] ?? true) ? 'navigate' : 'location' }}|proxy|{{ route($menuItem['route'], $parameters) }}">
|
|
|
|
|
{{ $menuItem['label'] }}
|
|
|
|
|
</option>
|
|
|
|
|
@endforeach
|
|
|
|
|
</optgroup>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="sub-menu-wrapper hidden md:flex">
|
|
|
|
|
@foreach ($proxyMenuItems as $menuItem)
|
|
|
|
|
<a class="{{ $menuItem['active'] ? 'sub-menu-item menu-item-active' : 'sub-menu-item' }}" @if ($menuItem['navigate'] ?? true) {{ wireNavigate() }} @endif
|
|
|
|
|
href="{{ route($menuItem['route'], $parameters) }}">
|
|
|
|
|
<span class="menu-item-label">{{ $menuItem['label'] }}</span>
|
|
|
|
|
</a>
|
|
|
|
|
@endforeach
|
|
|
|
|
</div>
|
2025-11-17 13:53:28 +00:00
|
|
|
</div>
|