178 lines
5.9 KiB
TypeScript
178 lines
5.9 KiB
TypeScript
|
|
'use client'
|
||
|
|
|
||
|
|
import { useState } from 'react'
|
||
|
|
import Link from 'next/link'
|
||
|
|
import type { Route } from 'next'
|
||
|
|
import { usePathname } from 'next/navigation'
|
||
|
|
import { signOut } from 'next-auth/react'
|
||
|
|
import { cn } from '@/lib/utils'
|
||
|
|
import { Button } from '@/components/ui/button'
|
||
|
|
import { Avatar, AvatarFallback } from '@/components/ui/avatar'
|
||
|
|
import {
|
||
|
|
DropdownMenu,
|
||
|
|
DropdownMenuContent,
|
||
|
|
DropdownMenuItem,
|
||
|
|
DropdownMenuSeparator,
|
||
|
|
DropdownMenuTrigger,
|
||
|
|
} from '@/components/ui/dropdown-menu'
|
||
|
|
import { BookOpen, Home, LogOut, Menu, User, Users, X } from 'lucide-react'
|
||
|
|
import { getInitials } from '@/lib/utils'
|
||
|
|
import { Logo } from '@/components/shared/logo'
|
||
|
|
|
||
|
|
interface MentorNavProps {
|
||
|
|
user: {
|
||
|
|
name?: string | null
|
||
|
|
email?: string | null
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
const navigation: { name: string; href: Route; icon: typeof Home }[] = [
|
||
|
|
{
|
||
|
|
name: 'Dashboard',
|
||
|
|
href: '/mentor' as Route,
|
||
|
|
icon: Home,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: 'My Mentees',
|
||
|
|
href: '/mentor/projects' as Route,
|
||
|
|
icon: Users,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: 'Resources',
|
||
|
|
href: '/mentor/resources' as Route,
|
||
|
|
icon: BookOpen,
|
||
|
|
},
|
||
|
|
]
|
||
|
|
|
||
|
|
export function MentorNav({ user }: MentorNavProps) {
|
||
|
|
const pathname = usePathname()
|
||
|
|
const [isMobileMenuOpen, setIsMobileMenuOpen] = useState(false)
|
||
|
|
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
{/* Desktop header */}
|
||
|
|
<header className="sticky top-0 z-40 border-b bg-card">
|
||
|
|
<div className="container-app">
|
||
|
|
<div className="flex h-16 items-center justify-between">
|
||
|
|
{/* Logo */}
|
||
|
|
<Logo showText textSuffix="Mentor" />
|
||
|
|
|
||
|
|
{/* Desktop nav */}
|
||
|
|
<nav className="hidden md:flex items-center gap-1">
|
||
|
|
{navigation.map((item) => {
|
||
|
|
const isActive =
|
||
|
|
pathname === item.href ||
|
||
|
|
(item.href !== '/mentor' && pathname.startsWith(item.href))
|
||
|
|
return (
|
||
|
|
<Link
|
||
|
|
key={item.name}
|
||
|
|
href={item.href}
|
||
|
|
className={cn(
|
||
|
|
'flex items-center gap-2 rounded-md px-3 py-2 text-sm font-medium transition-colors',
|
||
|
|
isActive
|
||
|
|
? 'bg-primary/10 text-primary'
|
||
|
|
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
|
||
|
|
)}
|
||
|
|
>
|
||
|
|
<item.icon className="h-4 w-4" />
|
||
|
|
{item.name}
|
||
|
|
</Link>
|
||
|
|
)
|
||
|
|
})}
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
{/* User menu & mobile toggle */}
|
||
|
|
<div className="flex items-center gap-2">
|
||
|
|
<DropdownMenu>
|
||
|
|
<DropdownMenuTrigger asChild>
|
||
|
|
<Button
|
||
|
|
variant="ghost"
|
||
|
|
className="gap-2 hidden sm:flex"
|
||
|
|
size="sm"
|
||
|
|
>
|
||
|
|
<Avatar className="h-7 w-7">
|
||
|
|
<AvatarFallback className="text-xs">
|
||
|
|
{getInitials(user.name || user.email || 'U')}
|
||
|
|
</AvatarFallback>
|
||
|
|
</Avatar>
|
||
|
|
<span className="max-w-[120px] truncate">
|
||
|
|
{user.name || user.email}
|
||
|
|
</span>
|
||
|
|
</Button>
|
||
|
|
</DropdownMenuTrigger>
|
||
|
|
<DropdownMenuContent align="end" className="w-48">
|
||
|
|
<DropdownMenuItem disabled>
|
||
|
|
<User className="mr-2 h-4 w-4" />
|
||
|
|
{user.email}
|
||
|
|
</DropdownMenuItem>
|
||
|
|
<DropdownMenuSeparator />
|
||
|
|
<DropdownMenuItem
|
||
|
|
onClick={() => signOut({ callbackUrl: '/login' })}
|
||
|
|
className="text-destructive focus:text-destructive"
|
||
|
|
>
|
||
|
|
<LogOut className="mr-2 h-4 w-4" />
|
||
|
|
Sign out
|
||
|
|
</DropdownMenuItem>
|
||
|
|
</DropdownMenuContent>
|
||
|
|
</DropdownMenu>
|
||
|
|
|
||
|
|
<Button
|
||
|
|
variant="ghost"
|
||
|
|
size="icon"
|
||
|
|
className="md:hidden"
|
||
|
|
aria-label={isMobileMenuOpen ? 'Close menu' : 'Open menu'}
|
||
|
|
onClick={() => setIsMobileMenuOpen(!isMobileMenuOpen)}
|
||
|
|
>
|
||
|
|
{isMobileMenuOpen ? (
|
||
|
|
<X className="h-5 w-5" />
|
||
|
|
) : (
|
||
|
|
<Menu className="h-5 w-5" />
|
||
|
|
)}
|
||
|
|
</Button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
{/* Mobile menu */}
|
||
|
|
{isMobileMenuOpen && (
|
||
|
|
<div className="border-t md:hidden">
|
||
|
|
<nav className="container-app py-4 space-y-1">
|
||
|
|
{navigation.map((item) => {
|
||
|
|
const isActive =
|
||
|
|
pathname === item.href ||
|
||
|
|
(item.href !== '/mentor' && pathname.startsWith(item.href))
|
||
|
|
return (
|
||
|
|
<Link
|
||
|
|
key={item.name}
|
||
|
|
href={item.href}
|
||
|
|
onClick={() => setIsMobileMenuOpen(false)}
|
||
|
|
className={cn(
|
||
|
|
'flex items-center gap-3 rounded-md px-3 py-2 text-sm font-medium transition-colors',
|
||
|
|
isActive
|
||
|
|
? 'bg-primary/10 text-primary'
|
||
|
|
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
|
||
|
|
)}
|
||
|
|
>
|
||
|
|
<item.icon className="h-4 w-4" />
|
||
|
|
{item.name}
|
||
|
|
</Link>
|
||
|
|
)
|
||
|
|
})}
|
||
|
|
<div className="border-t pt-4 mt-4">
|
||
|
|
<Button
|
||
|
|
variant="ghost"
|
||
|
|
className="w-full justify-start text-destructive hover:text-destructive"
|
||
|
|
onClick={() => signOut({ callbackUrl: '/login' })}
|
||
|
|
>
|
||
|
|
<LogOut className="mr-2 h-4 w-4" />
|
||
|
|
Sign out
|
||
|
|
</Button>
|
||
|
|
</div>
|
||
|
|
</nav>
|
||
|
|
</div>
|
||
|
|
)}
|
||
|
|
</header>
|
||
|
|
</>
|
||
|
|
)
|
||
|
|
}
|