mirror of
https://github.com/henrygd/beszel.git
synced 2026-04-13 08:21:50 +02:00
69 lines
1.7 KiB
Go
69 lines
1.7 KiB
Go
import React from 'react'
|
|
import { cn } from '@/lib/utils'
|
|
import { buttonVariants } from '../../ui/button'
|
|
import { $router, Link, navigate } from '../../router'
|
|
import { useStore } from '@nanostores/react'
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from '@/components/ui/select'
|
|
import { Separator } from '@/components/ui/separator'
|
|
|
|
interface SidebarNavProps extends React.HTMLAttributes<HTMLElement> {
|
|
items: {
|
|
href: string
|
|
title: string
|
|
icon?: React.FC<React.SVGProps<SVGSVGElement>>
|
|
}[]
|
|
}
|
|
|
|
export function SidebarNav({ className, items, ...props }: SidebarNavProps) {
|
|
const page = useStore($router)
|
|
|
|
return (
|
|
<>
|
|
{/* Mobile View */}
|
|
<div className="md:hidden">
|
|
<Select onValueChange={(value: string) => navigate(value)} value={page?.path}>
|
|
<SelectTrigger className="w-full my-3.5">
|
|
<SelectValue placeholder="Select a page" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{items.map((item) => (
|
|
<SelectItem key={item.href} value={item.href}>
|
|
<span className="flex items-center gap-2">
|
|
{item.icon && <item.icon className="h-4 w-4" />}
|
|
{item.title}
|
|
</span>
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
<Separator />
|
|
</div>
|
|
|
|
{/* Desktop View */}
|
|
<nav className={cn('hidden md:grid gap-1', className)} {...props}>
|
|
{items.map((item) => (
|
|
<Link
|
|
key={item.href}
|
|
href={item.href}
|
|
className={cn(
|
|
buttonVariants({ variant: 'ghost' }),
|
|
'flex items-center gap-3',
|
|
page?.path === item.href ? 'bg-muted hover:bg-muted' : 'hover:bg-muted/50',
|
|
'justify-start'
|
|
)}
|
|
>
|
|
{item.icon && <item.icon className="h-4 w-4" />}
|
|
{item.title}
|
|
</Link>
|
|
))}
|
|
</nav>
|
|
</>
|
|
)
|
|
}
|