-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathuser-menu-button.tsx
85 lines (81 loc) · 2.56 KB
/
user-menu-button.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import {
SignedIn,
SignedOut,
SignInButton,
SignUpButton,
UserButton,
} from "@clerk/nextjs"
import { siteConfig } from "@/config/site"
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuGroup,
DropdownMenuItem,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu"
import { MenuIcon } from "./icons/menu"
import { UserCircleIcon } from "./icons/user-circle"
import { Button } from "./ui/button"
export function UserMenuButton() {
const githubUrl = siteConfig.links.github
return (
<>
<SignedIn>
<UserButton />
</SignedIn>
<SignedOut>
<DropdownMenu modal={false}>
<DropdownMenuTrigger asChild>
<Button variant="link" className="p-1">
<div className="flex items-center justify-center text-neutral-800">
<MenuIcon className="mr-1.5 size-4 shrink-0" />
<UserCircleIcon className="size-6 shrink-0 md:size-7 xl:size-[30px]" />
</div>
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent
className="w-40 sm:w-48 lg:w-52"
collisionPadding={20}
>
<DropdownMenuGroup>
<DropdownMenuItem className="p-0">
<span className="w-full [&_button]:w-full [&_button]:px-2 [&_button]:py-[6px] [&_button]:text-left">
<SignUpButton />
</span>
</DropdownMenuItem>
<DropdownMenuItem className="p-0">
<span className="w-full [&_button]:w-full [&_button]:px-2 [&_button]:py-[6px] [&_button]:text-left">
<SignInButton />
</span>
</DropdownMenuItem>
</DropdownMenuGroup>
<DropdownMenuSeparator />
<DropdownMenuGroup>
<DropdownMenuItem className="p-0">
<a
href={githubUrl}
className="w-full px-2 py-[6px]"
target="_blank"
rel="noreferrer"
>
Gift Cards
</a>
</DropdownMenuItem>
<DropdownMenuItem className="p-0">
<a
href={githubUrl}
className="w-full px-2 py-[6px]"
target="_blank"
rel="noreferrer"
>
Help Center
</a>
</DropdownMenuItem>
</DropdownMenuGroup>
</DropdownMenuContent>
</DropdownMenu>
</SignedOut>
</>
)
}