2025-02-18 18:19:04 -06:00
|
|
|
import { Badge } from "@/components/ui/badge";
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
2025-02-16 21:40:17 -06:00
|
|
|
import {
|
|
|
|
|
DropdownMenuItem,
|
|
|
|
|
DropdownMenuSeparator,
|
|
|
|
|
} from "@/components/ui/dropdown-menu";
|
2025-02-18 18:19:04 -06:00
|
|
|
import Github from "@/components/ui/github";
|
|
|
|
|
import { Link } from "@/components/util/link";
|
|
|
|
|
import { version } from "@/config/version";
|
2025-02-16 21:40:17 -06:00
|
|
|
import { SignedIn, SignedOut, useClerk } from "@clerk/nextjs";
|
2025-02-18 18:19:04 -06:00
|
|
|
import { LogIn, LogOut, Settings, Ship, User, UserCog } from "lucide-react";
|
2025-02-16 21:40:17 -06:00
|
|
|
import { useRouter } from "next/navigation";
|
|
|
|
|
|
|
|
|
|
export function MenuDropdown() {
|
|
|
|
|
const clerk = useClerk();
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<DropdownMenuSeparator>Profile</DropdownMenuSeparator>
|
|
|
|
|
<SignedOut>
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
onClick={() => clerk.openSignIn()}
|
|
|
|
|
className="flex items-center gap-2"
|
|
|
|
|
>
|
|
|
|
|
<LogIn size={16} />
|
|
|
|
|
Login
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
onClick={() => clerk.openSignUp()}
|
|
|
|
|
className="flex items-center gap-2"
|
|
|
|
|
>
|
|
|
|
|
<User size={16} />
|
|
|
|
|
Sign up
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
<DropdownMenuItem
|
|
|
|
|
onClick={() =>
|
|
|
|
|
router.push(process.env.NEXT_PUBLIC_CLERK_SWITCH_DOMAIN as string)
|
|
|
|
|
}
|
|
|
|
|
className="hover:block group hover:py-1"
|
|
|
|
|
>
|
|
|
|
|
<span className="flex items-center gap-2">
|
|
|
|
|
<Ship size={16} />
|
|
|
|
|
Migrate your account
|
|
|
|
|
</span>
|
|
|
|
|
<small className="hidden group-hover:block break-words text-xs text-muted-foreground">
|
|
|
|
|
If you created your account before Jan. 29th 2025, you'll need to
|
|
|
|
|
migrate your account
|
|
|
|
|
</small>
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
</SignedOut>
|
|
|
|
|
<SignedIn>
|
|
|
|
|
<DropdownMenuItem onClick={() => clerk.openUserProfile()}>
|
|
|
|
|
<span className="flex items-center gap-2">
|
|
|
|
|
<UserCog size={16} />
|
|
|
|
|
User Settings
|
|
|
|
|
</span>
|
|
|
|
|
</DropdownMenuItem>
|
2025-02-18 18:19:04 -06:00
|
|
|
<DropdownMenuItem onClick={() => clerk.signOut()}>
|
|
|
|
|
<span className="flex items-center gap-2 text-red-500">
|
|
|
|
|
<LogOut size={16} />
|
|
|
|
|
Sign out
|
|
|
|
|
</span>
|
|
|
|
|
</DropdownMenuItem>
|
2025-02-16 21:40:17 -06:00
|
|
|
</SignedIn>
|
|
|
|
|
<DropdownMenuSeparator>App</DropdownMenuSeparator>
|
2025-02-18 18:19:04 -06:00
|
|
|
<Link href="/settings">
|
|
|
|
|
<DropdownMenuItem>
|
|
|
|
|
<span className="flex items-center gap-2">
|
|
|
|
|
<Settings size={16} />
|
|
|
|
|
Settings
|
|
|
|
|
</span>
|
|
|
|
|
</DropdownMenuItem>
|
|
|
|
|
</Link>
|
|
|
|
|
<DropdownMenuSeparator />
|
|
|
|
|
<li className="flex flex-col px-2 py-1 mx-auto my-1 text-xs w-full">
|
|
|
|
|
<div className="flex flex-row gap-2 w-full items-center">
|
|
|
|
|
<div className="flex-1">
|
|
|
|
|
<button
|
|
|
|
|
className="hover:brightness-110 transition-all"
|
|
|
|
|
type="button"
|
|
|
|
|
>
|
|
|
|
|
<Badge variant="blue-subtle">v{version}</Badge>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<Link href="Special:GitHub">
|
|
|
|
|
<Button
|
|
|
|
|
variant="tertiary"
|
|
|
|
|
className="flex items-center"
|
|
|
|
|
size="square-lg"
|
|
|
|
|
>
|
|
|
|
|
<Github />
|
|
|
|
|
</Button>
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
2025-02-16 21:40:17 -06:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|