103 lines
3.6 KiB
TypeScript
103 lines
3.6 KiB
TypeScript
import { Search, Bell, ChevronDown, LogOut } from 'lucide-react';
|
|
import { cn } from '@/lib/utils';
|
|
import { useAuth } from '@/contexts/AuthContext';
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from '@/components/ui/dropdown-menu';
|
|
|
|
interface TopBarProps {
|
|
title: string;
|
|
description?: string;
|
|
}
|
|
|
|
export function TopBar({ title, description }: TopBarProps) {
|
|
const { user, logout } = useAuth();
|
|
|
|
const getInitials = () => {
|
|
if (user?.first_name && user?.last_name) {
|
|
return `${user.first_name[0]}${user.last_name[0]}`.toUpperCase();
|
|
}
|
|
return user?.username?.substring(0, 2).toUpperCase() || 'AD';
|
|
};
|
|
|
|
const getDisplayName = () => {
|
|
if (user?.first_name && user?.last_name) {
|
|
return `${user.first_name} ${user.last_name}`;
|
|
}
|
|
return user?.username || 'Admin User';
|
|
};
|
|
|
|
return (
|
|
<header className="sticky top-0 z-30 flex h-20 items-center justify-between bg-background/80 backdrop-blur-sm px-8 border-b border-border/30">
|
|
{/* Page Title */}
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-foreground">{title}</h1>
|
|
{description && (
|
|
<p className="text-sm text-muted-foreground">{description}</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Right Section */}
|
|
<div className="flex items-center gap-4">
|
|
{/* Search */}
|
|
<div className="relative">
|
|
<Search className="absolute left-4 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
|
<input
|
|
type="text"
|
|
placeholder="Search partners, events..."
|
|
className={cn(
|
|
"h-10 w-64 pl-11 pr-4 rounded-xl text-sm",
|
|
"bg-secondary text-foreground placeholder:text-muted-foreground",
|
|
"shadow-neu-inset focus:outline-none focus:ring-2 focus:ring-accent/50",
|
|
"transition-all duration-200"
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
{/* Notifications */}
|
|
<button
|
|
className={cn(
|
|
"relative h-10 w-10 flex items-center justify-center rounded-xl",
|
|
"neu-button"
|
|
)}
|
|
>
|
|
<Bell className="h-5 w-5 text-muted-foreground" />
|
|
<span className="absolute -top-1 -right-1 h-5 w-5 flex items-center justify-center rounded-full bg-error text-[10px] font-bold text-error-foreground">
|
|
3
|
|
</span>
|
|
</button>
|
|
|
|
{/* Profile Dropdown */}
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<button className="flex items-center gap-3 pl-4 pr-3 py-2 rounded-xl neu-button">
|
|
<div className="h-8 w-8 rounded-lg bg-primary shadow-neu-inset-sm flex items-center justify-center">
|
|
<span className="text-sm font-bold text-primary-foreground">{getInitials()}</span>
|
|
</div>
|
|
<div className="text-left">
|
|
<p className="text-sm font-medium text-foreground">{getDisplayName()}</p>
|
|
<p className="text-xs text-muted-foreground">Admin</p>
|
|
</div>
|
|
<ChevronDown className="h-4 w-4 text-muted-foreground" />
|
|
</button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" className="w-56">
|
|
<DropdownMenuLabel>My Account</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem onClick={() => logout()} className="text-error cursor-pointer">
|
|
<LogOut className="mr-2 h-4 w-4" />
|
|
<span>Log out</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|
|
|