Implement instance-wide SPA navigation toggle that enables smooth page transitions with prefetching on hover. Excludes terminal links which require full page lifecycle for WebSocket connections. Adds defensive checks to global-search component for SPA navigation compatibility. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
16 lines
855 B
PHP
16 lines
855 B
PHP
<div class="flex flex-col items-start gap-2 min-w-fit">
|
|
<a class="{{ request()->routeIs('server.proxy') ? 'menu-item menu-item-active' : 'menu-item' }}" {{ wireNavigate() }}
|
|
href="{{ route('server.proxy', $parameters) }}">
|
|
<button>Configuration</button>
|
|
</a>
|
|
@if ($server->proxySet())
|
|
<a class="{{ request()->routeIs('server.proxy.dynamic-confs') ? 'menu-item menu-item-active' : 'menu-item' }}" {{ wireNavigate() }}
|
|
href="{{ route('server.proxy.dynamic-confs', $parameters) }}">
|
|
<button>Dynamic Configurations</button>
|
|
</a>
|
|
<a class="{{ request()->routeIs('server.proxy.logs') ? 'menu-item menu-item-active' : 'menu-item' }}" {{ wireNavigate() }}
|
|
href="{{ route('server.proxy.logs', $parameters) }}">
|
|
<button>Logs</button>
|
|
</a>
|
|
@endif
|
|
</div>
|