Spaces:
Sleeping
Sleeping
File size: 5,350 Bytes
3786a3f 2fb781f 3786a3f 2fb781f 3786a3f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | 'use client';
import Link from 'next/link';
import { usePathname, useRouter } from 'next/navigation';
import {
FileText,
Network,
Scale,
Globe,
LayoutDashboard,
LogOut,
Menu,
X,
Terminal,
GitBranch,
} from 'lucide-react';
import { useState } from 'react';
import { useAuthStore } from '@/store/auth';
import { ThemeToggle } from './ThemeToggle';
import { cn } from '@/lib/utils';
const navItems = [
{ href: '/', label: 'Query', icon: LayoutDashboard, exact: true },
{ href: '/documents', label: 'Documents', icon: FileText },
{ href: '/explore', label: 'Explore', icon: Network },
{ href: '/multihop', label: 'Multi-Hop', icon: GitBranch },
{ href: '/compare', label: 'Compare', icon: Scale },
{ href: '/communities', label: 'Community', icon: Globe },
{ href: '/cypher', label: 'Cypher Editor', icon: Terminal },
];
function NavLinks({ onNavigate }: { onNavigate?: () => void }) {
const pathname = usePathname();
return (
<nav className="flex flex-col gap-1">
{navItems.map((item) => {
const active = item.exact
? pathname === item.href
: pathname.startsWith(item.href);
const Icon = item.icon;
return (
<Link
key={item.href}
href={item.href}
onClick={onNavigate}
className={cn(
'flex items-center gap-3 rounded-md px-3 py-2 text-sm font-medium transition-colors',
active
? 'bg-accent-violet/15 text-accent-violet'
: 'text-text-secondary hover:bg-bg-elevated hover:text-text-primary'
)}
>
<Icon className="h-4 w-4 shrink-0" />
<span>{item.label}</span>
</Link>
);
})}
</nav>
);
}
export function Sidebar() {
const [mobileOpen, setMobileOpen] = useState(false);
const user = useAuthStore((s) => s.user);
const logout = useAuthStore((s) => s.logout);
const router = useRouter();
const handleLogout = () => {
logout();
router.replace('/login');
};
return (
<>
{/* Desktop sidebar */}
<aside className="hidden w-60 shrink-0 flex-col border-r border-border bg-bg-sidebar md:flex">
<div className="flex h-14 items-center gap-2 border-b border-border px-4">
<div className="flex h-7 w-7 items-center justify-center rounded-md bg-accent-violet text-white">
<Network className="h-4 w-4" />
</div>
<span className="font-semibold tracking-tight">GraphRAG</span>
</div>
<div className="flex-1 overflow-y-auto p-3 scrollbar-thin">
<NavLinks />
</div>
<div className="border-t border-border p-3">
<div className="flex items-center gap-2 rounded-md px-2 py-2">
<div className="flex h-8 w-8 items-center justify-center rounded-full bg-accent-cyan/20 text-sm font-semibold text-accent-cyan">
{user?.username?.[0]?.toUpperCase() || 'U'}
</div>
<div className="min-w-0 flex-1">
<p className="truncate text-sm font-medium">{user?.username || 'User'}</p>
<p className="truncate text-xs text-text-muted">{user?.email || ''}</p>
</div>
</div>
<div className="mt-2 flex items-center justify-between">
<ThemeToggle />
<button
onClick={logout}
className="inline-flex items-center gap-2 rounded-md px-3 py-1.5 text-sm text-text-secondary hover:bg-bg-elevated hover:text-error"
>
<LogOut className="h-4 w-4" /> Logout
</button>
</div>
</div>
</aside>
{/* Mobile top bar with hamburger */}
<div className="flex items-center justify-between border-b border-border bg-bg-sidebar px-4 py-3 md:hidden">
<div className="flex items-center gap-2">
<button onClick={() => setMobileOpen(true)} aria-label="Open menu">
<Menu className="h-5 w-5" />
</button>
<span className="font-semibold">GraphRAG</span>
</div>
<ThemeToggle />
</div>
{/* Mobile drawer */}
{mobileOpen && (
<div className="fixed inset-0 z-50 md:hidden">
<div className="absolute inset-0 bg-black/50" onClick={() => setMobileOpen(false)} />
<aside className="absolute left-0 top-0 flex h-full w-64 flex-col bg-bg-sidebar animate-slide-in">
<div className="flex h-14 items-center justify-between border-b border-border px-4">
<span className="font-semibold">GraphRAG</span>
<button onClick={() => setMobileOpen(false)} aria-label="Close menu">
<X className="h-5 w-5" />
</button>
</div>
<div className="flex-1 overflow-y-auto p-3">
<NavLinks onNavigate={() => setMobileOpen(false)} />
</div>
<div className="border-t border-border p-3">
<button
onClick={logout}
className="flex w-full items-center gap-2 rounded-md px-3 py-2 text-sm text-text-secondary hover:bg-bg-elevated hover:text-error"
>
<LogOut className="h-4 w-4" /> Logout
</button>
</div>
</aside>
</div>
)}
</>
);
}
|