fix avatar dropdown will not close when clicking on a dropdown item

This commit is contained in:
mr0x50
2025-02-02 21:47:20 +01:00
parent de1c1fc86c
commit d462c4e36b

View File

@@ -17,44 +17,37 @@ import Link from "next/link"
import { nip19 } from "nostr-tools"
export function AvatarDropdown() {
let pubkey = window.localStorage.getItem('pubkey');
let pubkeyEncoded = pubkey ? nip19.npubEncode(pubkey) : pubkey;
let src = "https://robohash.org/" + (pubkey as string);
const { data: userData } = useProfile({
pubkey: pubkey as string,
});
if (pubkey !== null) {
src = userData?.picture || "https://robohash.org/" + pubkey;
}
return (
<DropdownMenu>
<DropdownMenuTrigger asChild>
{/* <Button variant="outline" size="icon">
<SunIcon className="h-[1.2rem] w-[1.2rem] rotate-0 scale-100 transition-all dark:-rotate-90 dark:scale-0" />
<MoonIcon className="absolute h-[1.2rem] w-[1.2rem] rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100" />
<span className="sr-only">Toggle theme</span>
</Button> */}
<Avatar>
<AvatarImage src={src} />
</Avatar>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<DropdownMenuItem>
<DropdownMenuItem asChild>
<Link href={`/profile/${pubkeyEncoded}`}>
Profile
</Link>
</DropdownMenuItem>
<DropdownMenuItem>
<Link href={`/profile/settings`}>
<DropdownMenuItem asChild>
<Link href="/profile/settings">
Settings
</Link>
</DropdownMenuItem>
<DropdownMenuItem onClick={() => { window.localStorage.clear(); window.location.href = "/" }}>
<DropdownMenuItem onSelect={() => {
window.localStorage.clear();
window.location.href = "/";
}}>
Logout
</DropdownMenuItem>
</DropdownMenuContent>