feat: add admin layout with sidebar, auth guard, and navbar link

- Admin layout with server-side auth guard (redirects non-admins)
- Reusable sidebar component with active state detection
- Navbar profile dropdown shows admin link for admin users
- Admin routes are noindexed (robots: false)
- /admin redirects to /admin/users
This commit is contained in:
2026-04-27 21:02:28 +08:00
parent e4e78cc578
commit 012ad64a0d
5 changed files with 131 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
"use client"
import Link from "next/link"
import { usePathname } from "next/navigation"
import { UsersIcon, CpuIcon, Gamepad2Icon } from "lucide-react"
const adminNavItems = [
{ href: "/admin/users", label: "Users", icon: UsersIcon },
{ href: "/admin/hardware", label: "Hardware", icon: CpuIcon },
{ href: "/admin/games", label: "Games", icon: Gamepad2Icon },
]
export function AdminSidebar() {
const pathname = usePathname()
return (
<nav className="md:w-48 shrink-0">
<div className="flex md:flex-col gap-1 overflow-x-auto md:overflow-visible pb-2 md:pb-0 md:border-r md:border-border">
{adminNavItems.map((item) => {
const isActive =
pathname === item.href || pathname.startsWith(item.href + "/")
return (
<Link
key={item.href}
href={item.href}
className={`flex items-center gap-2 px-4 py-2.5 text-sm font-medium transition-colors whitespace-nowrap rounded-lg md:rounded-none md:border-l-2 md:border-r-0 md:border-transparent ${
isActive
? "bg-primary/10 text-primary md:border-l-primary"
: "text-text/50 hover:text-text/70 hover:bg-text/5"
}`}
>
<item.icon className="h-4 w-4 shrink-0" />
{item.label}
</Link>
)
})}
</div>
</nav>
)
}
+24
View File
@@ -11,6 +11,7 @@ import {
Gamepad2Icon,
LogOut,
MenuIcon,
ShieldIcon,
User,
XIcon,
} from "lucide-react"
@@ -302,6 +303,19 @@ export default function Navbar() {
{route.title}
</Link>
))}
{session.user.role === "admin" && (
<>
<div className='my-1 border-t border-white/10' />
<Link
href="/admin"
onClick={() => setUserMenuOpen(false)}
className="w-full flex items-center gap-2 px-3 py-2 text-sm text-primary/80 hover:text-primary hover:bg-primary/5 transition-colors cursor-pointer"
>
<ShieldIcon className="h-4 w-4" />
Admin
</Link>
</>
)}
<div className='my-1 border-t border-white/10' />
<button
onClick={async () => {
@@ -419,6 +433,16 @@ export default function Navbar() {
{route.title}
</Link>
))}
{session.user.role === "admin" && (
<Link
href="/admin"
onClick={() => setMobileMenuOpen(false)}
className="flex items-center gap-2 px-3 py-2 rounded-lg text-sm text-primary/80 hover:text-primary hover:bg-primary/5 transition-colors cursor-pointer"
>
<ShieldIcon className="h-4 w-4" />
Admin
</Link>
)}
<button
onClick={async () => {
setMobileMenuOpen(false)