mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 09:46:39 +02:00
178 lines
6.4 KiB
TypeScript
178 lines
6.4 KiB
TypeScript
"use client";
|
|
import { cn } from "@rallly/ui";
|
|
import { Button } from "@rallly/ui/button";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@rallly/ui/dropdown-menu";
|
|
import {
|
|
ChevronDown,
|
|
CreditCardIcon,
|
|
GemIcon,
|
|
LifeBuoyIcon,
|
|
ListIcon,
|
|
LogInIcon,
|
|
LogOutIcon,
|
|
MegaphoneIcon,
|
|
RefreshCcwIcon,
|
|
Settings2Icon,
|
|
UserIcon,
|
|
UserPlusIcon,
|
|
} from "lucide-react";
|
|
import Link from "next/link";
|
|
|
|
import { LoginLink } from "@/components/login-link";
|
|
import { RegisterLink } from "@/components/register-link";
|
|
import { Trans } from "@/components/trans";
|
|
import { CurrentUserAvatar } from "@/components/user";
|
|
import { IfCloudHosted, IfSelfHosted } from "@/contexts/environment";
|
|
import { Plan } from "@/contexts/plan";
|
|
import { isFeedbackEnabled } from "@/utils/constants";
|
|
|
|
import { IfAuthenticated, IfGuest, useUser } from "./user-provider";
|
|
|
|
export const UserDropdown = ({ className }: { className?: string }) => {
|
|
const { user } = useUser();
|
|
return (
|
|
<DropdownMenu modal={false}>
|
|
<DropdownMenuTrigger
|
|
data-testid="user-dropdown"
|
|
asChild
|
|
className={cn("group min-w-0", className)}
|
|
>
|
|
<Button variant="ghost" className="flex justify-between">
|
|
<span className="flex items-center gap-x-2.5">
|
|
<CurrentUserAvatar size="sm" className="-ml-1 shrink-0 " />
|
|
<span className="truncate">{user.name}</span>
|
|
</span>
|
|
<ChevronDown className="text-muted-foreground h-4 w-4" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end">
|
|
<DropdownMenuLabel className="flex items-center gap-2">
|
|
<div className="grow">
|
|
<div>{user.isGuest ? <Trans i18nKey="guest" /> : user.name}</div>
|
|
<div className="text-muted-foreground text-xs font-normal">
|
|
{!user.isGuest ? user.email : user.id.substring(0, 10)}
|
|
</div>
|
|
</div>
|
|
<div className="ml-4">
|
|
<Plan />
|
|
</div>
|
|
</DropdownMenuLabel>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem asChild={true}>
|
|
<Link href="/polls" className="flex items-center gap-x-2 sm:hidden">
|
|
<ListIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="polls" defaults="Polls" />
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<IfAuthenticated>
|
|
<DropdownMenuItem asChild={true}>
|
|
<Link
|
|
href="/settings/profile"
|
|
className="flex items-center gap-x-2"
|
|
>
|
|
<UserIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="profile" defaults="Profile" />
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
</IfAuthenticated>
|
|
<DropdownMenuItem asChild={true}>
|
|
<Link
|
|
href="/settings/preferences"
|
|
className="flex items-center gap-x-2"
|
|
>
|
|
<Settings2Icon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="preferences" defaults="Preferences" />
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<IfCloudHosted>
|
|
<DropdownMenuItem asChild={true}>
|
|
<Link
|
|
href="/settings/billing"
|
|
className="flex items-center gap-x-2"
|
|
>
|
|
<CreditCardIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="Billing" defaults="Billing" />
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
</IfCloudHosted>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem asChild={true}>
|
|
<Link
|
|
target="_blank"
|
|
href="https://support.rallly.co"
|
|
className="flex items-center gap-x-2"
|
|
>
|
|
<LifeBuoyIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="support" defaults="Support" />
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<IfSelfHosted>
|
|
<DropdownMenuItem asChild={true}>
|
|
<Link
|
|
target="_blank"
|
|
href="https://support.rallly.co/self-hosting/pricing"
|
|
className="flex items-center gap-x-2"
|
|
>
|
|
<GemIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="pricing" defaults="Pricing" />
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
</IfSelfHosted>
|
|
{isFeedbackEnabled ? (
|
|
<DropdownMenuItem asChild={true}>
|
|
<Link
|
|
target="_blank"
|
|
href="https://feedback.rallly.co"
|
|
className="flex items-center gap-x-2"
|
|
>
|
|
<MegaphoneIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="feedback" defaults="Feedback" />
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
) : null}
|
|
<DropdownMenuSeparator />
|
|
<IfGuest>
|
|
<DropdownMenuItem asChild={true}>
|
|
<LoginLink className="flex items-center gap-x-2">
|
|
<LogInIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="login" defaults="login" />
|
|
</LoginLink>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem asChild={true}>
|
|
<RegisterLink className="flex items-center gap-x-2">
|
|
<UserPlusIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="createAnAccount" defaults="Register" />
|
|
</RegisterLink>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem
|
|
asChild
|
|
className="text-destructive flex items-center gap-x-2"
|
|
>
|
|
{/* Don't use signOut() from next-auth. It doesn't work in vercel-production env. I don't know why. */}
|
|
<a href="/logout">
|
|
<RefreshCcwIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="forgetMe" />
|
|
</a>
|
|
</DropdownMenuItem>
|
|
</IfGuest>
|
|
<IfAuthenticated>
|
|
<DropdownMenuItem asChild className="flex items-center gap-x-2">
|
|
{/* Don't use signOut() from next-auth. It doesn't work in vercel-production env. I don't know why. */}
|
|
<a href="/logout">
|
|
<LogOutIcon className="text-muted-foreground h-4 w-4" />
|
|
<Trans i18nKey="logout" />
|
|
</a>
|
|
</DropdownMenuItem>
|
|
</IfAuthenticated>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
);
|
|
};
|