77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
"use client";
|
|
|
|
import { useRouter } from "next/navigation";
|
|
import Link from "next/link";
|
|
import { LogOut, Settings, Shield } from "lucide-react";
|
|
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import { signOut } from "@/lib/auth/auth-client";
|
|
import { ThemeToggle } from "./theme-toggle";
|
|
|
|
interface UserMenuProps {
|
|
name: string;
|
|
email: string;
|
|
image?: string | null;
|
|
isAdmin?: boolean;
|
|
}
|
|
|
|
export function UserMenu({ name, email, image, isAdmin }: UserMenuProps) {
|
|
const router = useRouter();
|
|
const initials = name
|
|
.split(" ")
|
|
.map((n) => n[0])
|
|
.join("")
|
|
.slice(0, 2)
|
|
.toUpperCase();
|
|
|
|
async function handleSignOut() {
|
|
await signOut();
|
|
router.push("/");
|
|
router.refresh();
|
|
}
|
|
|
|
return (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger className="outline-none">
|
|
<Avatar>
|
|
{image && <AvatarImage src={image} alt={name} />}
|
|
<AvatarFallback>{initials || "U"}</AvatarFallback>
|
|
</Avatar>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" className="w-56">
|
|
<DropdownMenuLabel>
|
|
<div className="flex flex-col">
|
|
<span className="truncate font-medium">{name}</span>
|
|
<span className="truncate text-xs font-normal text-muted-foreground">{email}</span>
|
|
</div>
|
|
</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem asChild>
|
|
<Link href="/settings">
|
|
<Settings className="h-4 w-4" /> Settings
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
{isAdmin && (
|
|
<DropdownMenuItem asChild>
|
|
<Link href="/admin">
|
|
<Shield className="h-4 w-4" /> Admin
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
)}
|
|
<ThemeToggle />
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem onSelect={handleSignOut} className="text-destructive focus:text-destructive">
|
|
<LogOut className="h-4 w-4" /> Sign out
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
);
|
|
}
|