Stripped from vercel/chatbot (Apache 2.0): - Dropped @vercel/* packages and AI Gateway - Removed artifacts feature (code/text/sheet/image side panel) - Switched AI provider to @ai-sdk/openai-compatible -> EGBE LiteLLM - Replaced Vercel Blob upload with data URLs - Dropped Redis resumable streams and rate limiter (in-memory now) - Added Dockerfile (Next.js standalone) + entrypoint that runs migrations - Wired DATABASE_URL, EGBE_AI_API_URL/KEY, NEXT_PUBLIC_BASE_URL for app-deploy.sh
121 lines
4.5 KiB
TypeScript
121 lines
4.5 KiB
TypeScript
"use client";
|
|
|
|
import { ChevronUp } from "lucide-react";
|
|
import { useRouter } from "next/navigation";
|
|
import type { User } from "next-auth";
|
|
import { signOut, useSession } from "next-auth/react";
|
|
import { useTheme } from "next-themes";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import {
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
} from "@/components/ui/sidebar";
|
|
import { guestRegex } from "@/lib/constants";
|
|
import { LoaderIcon } from "./icons";
|
|
import { toast } from "./toast";
|
|
|
|
function emailToHue(email: string): number {
|
|
let hash = 0;
|
|
for (const char of email) {
|
|
hash = char.charCodeAt(0) + ((hash << 5) - hash);
|
|
}
|
|
return Math.abs(hash) % 360;
|
|
}
|
|
|
|
export function SidebarUserNav({ user }: { user: User }) {
|
|
const router = useRouter();
|
|
const { data, status } = useSession();
|
|
const { setTheme, resolvedTheme } = useTheme();
|
|
|
|
const isGuest = guestRegex.test(data?.user?.email ?? "");
|
|
|
|
return (
|
|
<SidebarMenu>
|
|
<SidebarMenuItem>
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
{status === "loading" ? (
|
|
<SidebarMenuButton className="h-10 justify-between rounded-lg bg-transparent text-sidebar-foreground/50 transition-colors duration-150 data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground">
|
|
<div className="flex flex-row items-center gap-2">
|
|
<div className="size-6 animate-pulse rounded-full bg-sidebar-foreground/10" />
|
|
<span className="animate-pulse rounded-md bg-sidebar-foreground/10 text-transparent text-[13px]">
|
|
Loading...
|
|
</span>
|
|
</div>
|
|
<div className="animate-spin text-sidebar-foreground/50">
|
|
<LoaderIcon />
|
|
</div>
|
|
</SidebarMenuButton>
|
|
) : (
|
|
<SidebarMenuButton
|
|
className="h-8 px-2 rounded-lg bg-transparent text-sidebar-foreground/70 transition-colors duration-150 hover:text-sidebar-foreground data-[state=open]:bg-sidebar-accent data-[state=open]:text-sidebar-accent-foreground"
|
|
data-testid="user-nav-button"
|
|
>
|
|
<div
|
|
className="size-5 shrink-0 rounded-full ring-1 ring-sidebar-border/50"
|
|
style={{
|
|
background: `linear-gradient(135deg, oklch(0.35 0.08 ${emailToHue(user.email ?? "")}), oklch(0.25 0.05 ${emailToHue(user.email ?? "") + 40}))`,
|
|
}}
|
|
/>
|
|
<span className="truncate text-[13px]" data-testid="user-email">
|
|
{isGuest ? "Guest" : user?.email}
|
|
</span>
|
|
<ChevronUp className="ml-auto size-3.5 text-sidebar-foreground/50" />
|
|
</SidebarMenuButton>
|
|
)}
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent
|
|
className="w-(--radix-popper-anchor-width) rounded-lg border border-border/60 bg-card/95 backdrop-blur-xl shadow-[var(--shadow-float)]"
|
|
data-testid="user-nav-menu"
|
|
side="top"
|
|
>
|
|
<DropdownMenuItem
|
|
className="cursor-pointer text-[13px]"
|
|
data-testid="user-nav-item-theme"
|
|
onSelect={() =>
|
|
setTheme(resolvedTheme === "dark" ? "light" : "dark")
|
|
}
|
|
>
|
|
{`Toggle ${resolvedTheme === "light" ? "dark" : "light"} mode`}
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem asChild data-testid="user-nav-item-auth">
|
|
<button
|
|
className="w-full cursor-pointer text-[13px]"
|
|
onClick={() => {
|
|
if (status === "loading") {
|
|
toast({
|
|
type: "error",
|
|
description:
|
|
"Checking authentication status, please try again!",
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
if (isGuest) {
|
|
router.push("/login");
|
|
} else {
|
|
signOut({
|
|
redirectTo: "/",
|
|
});
|
|
}
|
|
}}
|
|
type="button"
|
|
>
|
|
{isGuest ? "Login to your account" : "Sign out"}
|
|
</button>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</SidebarMenuItem>
|
|
</SidebarMenu>
|
|
);
|
|
}
|