metacubexd/src/components/Header.tsx

173 lines
3.9 KiB
TypeScript
Raw Normal View History

2023-08-27 22:25:41 +08:00
import { A, useLocation, useNavigate } from '@solidjs/router'
2023-08-24 04:20:53 +08:00
import {
2023-08-30 00:22:40 +08:00
IconArrowsExchange,
2023-08-24 04:20:53 +08:00
IconFileStack,
IconGlobe,
IconHome,
2023-08-30 00:22:40 +08:00
IconMenu,
2023-08-24 04:20:53 +08:00
IconNetwork,
2023-08-28 22:28:30 +08:00
IconPalette,
2023-08-24 04:20:53 +08:00
IconRuler,
IconSettings,
} from '@tabler/icons-solidjs'
2023-08-29 00:03:32 +08:00
import { For, ParentComponent, Show } from 'solid-js'
2023-08-27 22:25:41 +08:00
import { themes } from '~/constants'
import { setCurTheme, setSelectedEndpoint } from '~/signals'
2023-08-24 04:20:53 +08:00
2023-08-29 00:03:32 +08:00
const Nav: ParentComponent<{ href: string; tooltip: string }> = ({
href,
tooltip,
children,
}) => (
<li>
<A
2023-08-30 00:22:40 +08:00
class="tooltip tooltip-bottom rounded-full"
2023-08-29 00:03:32 +08:00
href={href}
data-tip={tooltip}
>
{children}
</A>
</li>
)
2023-08-30 00:22:40 +08:00
const ThemeSwitcher = () => (
<div class="drawer drawer-end w-auto sm:ml-auto">
<input id="themes" type="checkbox" class="drawer-toggle" />
2023-08-24 04:20:53 +08:00
2023-08-30 00:22:40 +08:00
<div class="drawer-content flex items-center">
<label
for="themes"
class="btn btn-circle btn-primary drawer-button btn-sm"
>
<IconPalette />
</label>
</div>
2023-08-24 04:20:53 +08:00
2023-08-30 00:22:40 +08:00
<div class="drawer-side">
<label for="themes" class="drawer-overlay" />
2023-08-24 04:20:53 +08:00
2023-08-30 00:22:40 +08:00
<ul class="menu rounded-box z-50 gap-2 bg-base-300 p-2 shadow">
<For each={themes}>
{(theme) => (
<li
data-theme={theme}
class="btn btn-xs"
onClick={() => setCurTheme(theme)}
>
{theme}
</li>
)}
</For>
</ul>
</div>
</div>
)
2023-08-24 04:20:53 +08:00
2023-08-30 00:22:40 +08:00
const navs = () => [
{
2023-08-30 11:01:19 +08:00
href: '/overview',
2023-08-30 00:22:40 +08:00
name: 'Overview',
icon: <IconHome />,
},
{
href: '/proxies',
name: 'Proxies',
icon: <IconGlobe />,
},
{
href: '/rules',
name: 'Rules',
icon: <IconRuler />,
},
{
href: '/conns',
name: 'Connections',
icon: <IconNetwork />,
},
{
href: '/logs',
name: 'Logs',
icon: <IconFileStack />,
},
{
href: '/config',
name: 'Config',
icon: <IconSettings />,
},
]
2023-08-24 04:20:53 +08:00
2023-08-30 00:22:40 +08:00
export const Header = () => {
const location = useLocation()
const navigate = useNavigate()
2023-08-24 04:20:53 +08:00
2023-08-30 00:22:40 +08:00
const onSwitchEndpointClick = () => {
setSelectedEndpoint('')
navigate('/setup')
}
2023-08-24 04:20:53 +08:00
2023-08-30 00:22:40 +08:00
return (
<ul class="navbar rounded-box sticky inset-x-0 top-2 z-10 mx-2 mt-2 flex w-auto items-center justify-center bg-base-200 p-2 sm:gap-2">
<div class="navbar-start">
<div class="drawer w-auto lg:hidden">
<input id="navs" type="checkbox" class="drawer-toggle" />
2023-08-24 04:20:53 +08:00
2023-08-30 00:22:40 +08:00
<div class="drawer-content flex items-center">
<label for="navs" class="btn btn-circle drawer-button btn-sm">
<IconMenu />
</label>
</div>
2023-08-27 22:25:41 +08:00
2023-08-30 00:22:40 +08:00
<div class="drawer-side">
<label for="navs" class="drawer-overlay" />
2023-08-27 22:25:41 +08:00
2023-08-30 00:22:40 +08:00
<ul class="menu rounded-box z-50 gap-2 bg-base-300 p-2 shadow">
<For each={navs()}>
{({ href, name }) => (
<li>
<A href={href}>{name}</A>
</li>
)}
</For>
</ul>
</div>
2023-08-27 22:25:41 +08:00
</div>
2023-08-30 00:22:40 +08:00
<a
class="btn btn-ghost text-xl normal-case"
href="https://github.com/metacubex/metacubexd"
target="_blank"
>
metacubexd
</a>
</div>
<Show when={location.pathname !== '/setup'}>
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal px-1">
<For each={navs()}>
{({ href, name, icon }) => (
<Nav href={href} tooltip={name}>
{icon}
</Nav>
2023-08-27 22:25:41 +08:00
)}
</For>
</ul>
</div>
2023-08-30 00:22:40 +08:00
</Show>
<div class="navbar-end">
<div class="flex items-center gap-2">
<ThemeSwitcher />
<button
class="btn btn-circle btn-secondary btn-sm"
onClick={onSwitchEndpointClick}
>
<IconArrowsExchange />
</button>
</div>
2023-08-27 22:25:41 +08:00
</div>
2023-08-28 22:28:30 +08:00
</ul>
2023-08-24 04:20:53 +08:00
)
}