mhsf-dev/apps/www/src/components/feat/navbar/menu-dropdown.tsx

130 lines
4.5 KiB
TypeScript
Raw Normal View History

2025-02-22 11:13:48 -06:00
/*
* MHSF, Minehut Server List
* All external content is rather licensed under the ECA Agreement
* located here: https://mhsf.app/docs/legal/external-content-agreement
*
* All code under MHSF is licensed under the MIT License
* by open source contributors
*
* Copyright (c) 2025 dvelo
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
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
</>
);
}