132 lines
4.2 KiB
TypeScript
132 lines
4.2 KiB
TypeScript
"use client";
|
|
|
|
import {
|
|
IconCreditCard,
|
|
IconDotsVertical,
|
|
IconLogout,
|
|
} from "@tabler/icons-react";
|
|
import Link from "next/link";
|
|
import { authClient } from "@/lib/auth-session/auth-client";
|
|
import { useRouter } from "next/navigation";
|
|
import { toast } from "sonner";
|
|
|
|
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuGroup,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import {
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
useSidebar,
|
|
} from "@/components/ui/sidebar";
|
|
|
|
export function NavUser({
|
|
user,
|
|
isAdmin,
|
|
}: {
|
|
user: {
|
|
name: string;
|
|
email: string;
|
|
image?: string | null;
|
|
role?: string | null;
|
|
};
|
|
isAdmin?: boolean;
|
|
}) {
|
|
const { isMobile } = useSidebar();
|
|
const router = useRouter();
|
|
|
|
const handleSignOut = async () => {
|
|
await authClient.signOut();
|
|
toast.success("Signed out successfully");
|
|
router.push("/sign-in");
|
|
};
|
|
|
|
return (
|
|
<SidebarMenu>
|
|
<SidebarMenuItem>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<SidebarMenuButton
|
|
size="lg"
|
|
className="data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground"
|
|
>
|
|
<Avatar className="h-8 w-8 rounded-lg ">
|
|
<AvatarImage src={user.image ?? undefined} alt={user.name} />
|
|
<AvatarFallback className="rounded-lg">
|
|
{user.name?.[0] ?? "U"}
|
|
</AvatarFallback>
|
|
</Avatar>
|
|
<div className="grid flex-1 text-left text-sm leading-tight">
|
|
<span className="truncate font-medium">{user.name}</span>
|
|
<span className="text-muted-foreground truncate text-xs">
|
|
{user.email}
|
|
</span>
|
|
</div>
|
|
<IconDotsVertical className="ml-auto size-4" />
|
|
</SidebarMenuButton>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent
|
|
className="w-(--radix-dropdown-menu-trigger-width) min-w-56 rounded-lg"
|
|
side={isMobile ? "bottom" : "right"}
|
|
align="end"
|
|
sideOffset={4}
|
|
>
|
|
<DropdownMenuLabel className="p-0 font-normal">
|
|
<div className="flex items-center gap-2 px-1 py-1.5 text-left text-sm">
|
|
<Avatar className="h-8 w-8 rounded-lg">
|
|
<AvatarImage src={user.image ?? undefined} alt={user.name} />
|
|
<AvatarFallback className="rounded-lg">
|
|
{user.name?.[0] ?? "U"}
|
|
</AvatarFallback>
|
|
</Avatar>
|
|
<div className="grid flex-1 text-left text-sm leading-tight">
|
|
<span className="truncate font-medium">{user.name}</span>
|
|
<span className="text-muted-foreground truncate text-xs">
|
|
{user.email}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
{isAdmin && (
|
|
<>
|
|
<DropdownMenuItem asChild>
|
|
<Link href="/admin" className="cursor-pointer">
|
|
<IconCreditCard className="mr-2" />
|
|
<span>Dashboard</span>
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
</>
|
|
)}
|
|
{user?.role !== "admin" && (
|
|
<>
|
|
<DropdownMenuItem asChild>
|
|
<Link href="/profile" className="cursor-pointer">
|
|
<IconCreditCard className="mr-2" />
|
|
<span>Profile</span>
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
</>
|
|
)}
|
|
<DropdownMenuGroup />
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem onClick={handleSignOut}>
|
|
<IconLogout />
|
|
Log out
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
);
|
|
}
|