2024-04-18 15:07:15 -04:00
|
|
|
"use client"
|
|
|
|
|
|
|
|
import {
|
|
|
|
DropdownMenu,
|
|
|
|
DropdownMenuContent,
|
|
|
|
DropdownMenuItem,
|
|
|
|
DropdownMenuLabel,
|
|
|
|
DropdownMenuSeparator,
|
|
|
|
DropdownMenuTrigger,
|
|
|
|
} from "@/components/ui/dropdown-menu"
|
2024-04-18 15:25:20 -04:00
|
|
|
import { User } from "@/lib/types"
|
2024-04-28 01:17:39 -04:00
|
|
|
import { useClerk } from "@clerk/nextjs"
|
2024-04-18 15:07:15 -04:00
|
|
|
import { LogOut, Pencil } from "lucide-react"
|
2024-04-28 01:17:39 -04:00
|
|
|
import { useRouter } from "next/navigation"
|
2024-04-18 15:07:15 -04:00
|
|
|
|
2024-04-18 15:32:27 -04:00
|
|
|
export default function UserButton({ userData }: { userData: User }) {
|
2024-04-23 01:53:37 -04:00
|
|
|
if (!userData) return null
|
2024-04-28 01:17:39 -04:00
|
|
|
|
|
|
|
const { signOut } = useClerk()
|
|
|
|
const router = useRouter()
|
|
|
|
|
2024-04-18 15:07:15 -04:00
|
|
|
return (
|
|
|
|
<DropdownMenu>
|
|
|
|
<DropdownMenuTrigger>
|
2024-04-18 15:25:20 -04:00
|
|
|
<div className="w-9 h-9 font-mono rounded-full overflow-hidden bg-gradient-to-t from-neutral-800 to-neutral-600 flex items-center justify-center text-sm font-medium">
|
|
|
|
{userData.name
|
|
|
|
.split(" ")
|
|
|
|
.slice(0, 2)
|
|
|
|
.map((name) => name[0].toUpperCase())}
|
|
|
|
</div>
|
2024-04-18 15:07:15 -04:00
|
|
|
</DropdownMenuTrigger>
|
2024-05-04 23:31:35 -07:00
|
|
|
<DropdownMenuContent className="w-40" align="end">
|
|
|
|
<div className="py-1.5 px-2 w-full">
|
|
|
|
<div className="font-medium">{userData.name}</div>
|
|
|
|
<div className="text-sm w-full overflow-hidden text-ellipsis whitespace-nowrap text-muted-foreground">
|
|
|
|
{userData.email}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<DropdownMenuSeparator />
|
2024-04-18 15:07:15 -04:00
|
|
|
<DropdownMenuItem className="cursor-pointer">
|
|
|
|
<Pencil className="mr-2 h-4 w-4" />
|
|
|
|
<span>Edit Profile</span>
|
|
|
|
</DropdownMenuItem>
|
2024-04-28 01:17:39 -04:00
|
|
|
<DropdownMenuItem
|
|
|
|
onClick={() => signOut(() => router.push("/"))}
|
|
|
|
className="!text-destructive cursor-pointer"
|
|
|
|
>
|
2024-04-18 15:07:15 -04:00
|
|
|
<LogOut className="mr-2 h-4 w-4" />
|
|
|
|
<span>Log Out</span>
|
|
|
|
</DropdownMenuItem>
|
|
|
|
</DropdownMenuContent>
|
|
|
|
</DropdownMenu>
|
|
|
|
)
|
|
|
|
}
|