mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
154 lines
9.3 KiB
PHP
154 lines
9.3 KiB
PHP
<nav x-data="{ open: false }" class="bg-white dark:bg-gray-950 border-b border-gray-100 dark:border-gray-800">
|
|
{{-- Primary Navigation Menu --}}
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex justify-between h-16">
|
|
<div class="flex">
|
|
{{-- Logo --}}
|
|
<div class="shrink-0 flex items-center">
|
|
<a href="{{ route('home') }}">
|
|
<x-application-mark class="block h-9 w-auto"/>
|
|
</a>
|
|
</div>
|
|
|
|
{{-- Navigation Links --}}
|
|
<div class="hidden space-x-8 sm:-my-px sm:ms-10 sm:flex">
|
|
{{-- <x-nav-link href="{{ route('mods') }}" :active="request()->routeIs('mods')">{{ __('Mods') }}</x-nav-link> --}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hidden sm:flex sm:items-center sm:ms-6 gap-4">
|
|
<button type="button" @click="searchOpen = !searchOpen; $nextTick(() => { document.querySelector('#global-search').focus(); });" class="text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z"/>
|
|
</svg>
|
|
</button>
|
|
|
|
{{-- Theme Toggle Button --}}
|
|
<button id="theme-toggle" type="button" class="text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg text-sm p-2.5">
|
|
<svg id="theme-toggle-dark-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M17.293 13.293A8 8 0 016.707 2.707a8.001 8.001 0 1010.586 10.586z"></path>
|
|
</svg>
|
|
<svg id="theme-toggle-light-icon" class="hidden w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M10 2a1 1 0 011 1v1a1 1 0 11-2 0V3a1 1 0 011-1zm4 8a4 4 0 11-8 0 4 4 0 018 0zm-.464 4.95l.707.707a1 1 0 001.414-1.414l-.707-.707a1 1 0 00-1.414 1.414zm2.12-10.607a1 1 0 010 1.414l-.706.707a1 1 0 11-1.414-1.414l.707-.707a1 1 0 011.414 0zM17 11a1 1 0 100-2h-1a1 1 0 100 2h1zm-7 4a1 1 0 011 1v1a1 1 0 11-2 0v-1a1 1 0 011-1zM5.05 6.464A1 1 0 106.465 5.05l-.708-.707a1 1 0 00-1.414 1.414l.707.707zm1.414 8.486l-.707.707a1 1 0 01-1.414-1.414l.707-.707a1 1 0 011.414 1.414zM4 11a1 1 0 100-2H3a1 1 0 000 2h1z" fill-rule="evenodd" clip-rule="evenodd"></path>
|
|
</svg>
|
|
</button>
|
|
|
|
@guest
|
|
<div class="ml-4">
|
|
<a href="{{ route('login') }}" class="text-sm font-semibold leading-6 text-gray-900 dark:text-gray-100">Log in
|
|
<span aria-hidden="true">→</span></a>
|
|
</div>
|
|
@endguest
|
|
|
|
{{-- Settings Dropdown --}}
|
|
<div class="relative">
|
|
<x-dropdown align="right" width="48">
|
|
<x-slot name="trigger">
|
|
@auth
|
|
<span class="inline-flex rounded-md">
|
|
<button type="button" class="inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 dark:text-gray-300 bg-white dark:bg-gray-800 hover:text-gray-700 dark:hover:text-gray-500 focus:outline-none focus:bg-gray-50 dark:focus:bg-gray-700 active:bg-gray-50 dark:active:bg-gray-700 transition ease-in-out duration-150">
|
|
{{ auth()->user()->name }}
|
|
<svg class="ms-2 -me-0.5 h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"/>
|
|
</svg>
|
|
</button>
|
|
</span>
|
|
@endauth
|
|
</x-slot>
|
|
|
|
<x-slot name="content">
|
|
{{-- Account Management --}}
|
|
<div class="block px-4 py-2 text-xs text-gray-400 dark:text-gray-300">
|
|
{{ __('Manage Account') }}
|
|
</div>
|
|
|
|
<x-dropdown-link href="{{ route('profile.show') }}">
|
|
{{ __('Profile') }}
|
|
</x-dropdown-link>
|
|
|
|
@if (Laravel\Jetstream\Jetstream::hasApiFeatures())
|
|
<x-dropdown-link href="{{ route('api-tokens.index') }}">
|
|
{{ __('API Tokens') }}
|
|
</x-dropdown-link>
|
|
@endif
|
|
|
|
<div class="border-t border-gray-200 dark:border-gray-700"></div>
|
|
|
|
<form method="POST" action="{{ route('logout') }}" x-data>
|
|
@csrf
|
|
<x-dropdown-link href="{{ route('logout') }}" @click.prevent="$root.submit();">
|
|
{{ __('Log Out') }}
|
|
</x-dropdown-link>
|
|
</form>
|
|
</x-slot>
|
|
</x-dropdown>
|
|
</div>
|
|
</div>
|
|
|
|
{{-- Hamburger --}}
|
|
<div class="-me-2 flex items-center sm:hidden">
|
|
<button @click="open = ! open" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 dark:hover:bg-gray-800 focus:outline-none focus:bg-gray-100 dark:focus:bg-gray-800 focus:text-gray-500 dark:focus:text-gray-300 transition duration-150 ease-in-out">
|
|
<svg class="h-6 w-6" stroke="currentColor" fill="none" viewBox="0 0 24 24">
|
|
<path :class="{'hidden': open, 'inline-flex': ! open }" class="inline-flex" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/>
|
|
<path :class="{'hidden': ! open, 'inline-flex': open }" class="hidden" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{-- Responsive Navigation Menu --}}
|
|
<div :class="{'block': open, 'hidden': ! open}" class="hidden sm:hidden">
|
|
<div class="pt-2 pb-3 space-y-1">
|
|
<x-responsive-nav-link href="{{ route('home') }}" :active="request()->routeIs('home')">
|
|
{{ __('Home') }}
|
|
</x-responsive-nav-link>
|
|
@auth()
|
|
<x-responsive-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')">
|
|
{{ __('Dashboard') }}
|
|
</x-responsive-nav-link>
|
|
@endauth
|
|
</div>
|
|
{{-- Responsive Settings Options --}}
|
|
<div class="pt-4 pb-1 border-t border-gray-200 dark:border-gray-700">
|
|
<div class="flex items-center px-4">
|
|
@auth
|
|
@if (Laravel\Jetstream\Jetstream::managesProfilePhotos())
|
|
<div class="shrink-0 me-3">
|
|
<img class="h-10 w-10 rounded-full object-cover" src="{{ auth()->user()->profile_photo_url }}" alt="{{ auth()->user()->name }}"/>
|
|
</div>
|
|
@endif
|
|
<div>
|
|
<div class="font-medium text-base text-gray-800 dark:text-gray-300">{{ auth()->user()->name }}</div>
|
|
<div class="font-medium text-sm text-gray-500 dark:text-gray-300">{{ auth()->user()->email }}</div>
|
|
</div>
|
|
@endauth
|
|
</div>
|
|
|
|
<div class="mt-3 space-y-1">
|
|
@auth
|
|
{{-- Account Management --}}
|
|
<x-responsive-nav-link href="{{ route('profile.show') }}" :active="request()->routeIs('profile.show')">
|
|
{{ __('Profile') }}
|
|
</x-responsive-nav-link>
|
|
|
|
@if (Laravel\Jetstream\Jetstream::hasApiFeatures())
|
|
<x-responsive-nav-link href="{{ route('api-tokens.index') }}" :active="request()->routeIs('api-tokens.index')">
|
|
{{ __('API Tokens') }}
|
|
</x-responsive-nav-link>
|
|
@endif
|
|
|
|
{{-- Authentication --}}
|
|
<form method="POST" action="{{ route('logout') }}" x-data>
|
|
@csrf
|
|
|
|
<x-responsive-nav-link href="{{ route('logout') }}" @click.prevent="$root.submit();">
|
|
{{ __('Log Out') }}
|
|
</x-responsive-nav-link>
|
|
</form>
|
|
@endauth
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|