mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
264 lines
8.3 KiB
TypeScript
264 lines
8.3 KiB
TypeScript
"use client";
|
|
|
|
import { AsideLink } from "@/components/ui/aside-link";
|
|
import { cn } from "@/lib/utils";
|
|
import { AnimatePresence, motion, MotionConfig } from "framer-motion";
|
|
import { useSearchContext } from "fumadocs-ui/provider";
|
|
import { ChevronDownIcon, Search } from "lucide-react";
|
|
import { usePathname, useRouter } from "next/navigation";
|
|
import { Suspense, useEffect, useState } from "react";
|
|
import { contents, examples } from "./sidebar-content";
|
|
import { Badge } from "./ui/badge";
|
|
import { Select, SelectContent, SelectItem, SelectTrigger } from "./ui/select";
|
|
|
|
export default function ArticleLayout() {
|
|
const [currentOpen, setCurrentOpen] = useState<number>(0);
|
|
|
|
const { setOpenSearch } = useSearchContext();
|
|
const pathname = usePathname();
|
|
|
|
function getDefaultValue() {
|
|
const defaultValue = contents.findIndex((item) =>
|
|
item.list.some((listItem) => listItem.href === pathname),
|
|
);
|
|
return defaultValue === -1 ? 0 : defaultValue;
|
|
}
|
|
|
|
const [group, setGroup] = useState("docs");
|
|
|
|
useEffect(() => {
|
|
const grp = pathname.includes("examples") ? "examples" : "docs";
|
|
setGroup(grp);
|
|
setCurrentOpen(getDefaultValue());
|
|
}, [pathname]);
|
|
|
|
const cts = group === "docs" ? contents : examples;
|
|
|
|
return (
|
|
<div className={cn("fixed start-0 top-0")}>
|
|
<aside
|
|
className={cn(
|
|
"md:transition-all",
|
|
"border-r border-lines top-[55px] md:flex hidden md:w-[268px] lg:w-[286px] overflow-y-auto absolute h-[calc(100dvh-55px)] pb-2 flex-col justify-between w-[var(--fd-sidebar-width)]",
|
|
)}
|
|
>
|
|
<div>
|
|
<SidebarTab group={group} setGroup={setGroup} />
|
|
<button
|
|
className="flex w-full items-center gap-2 px-5 py-2.5 border-b text-muted-foreground dark:bg-zinc-950 dark:border-t-zinc-900/30 dark:border-t"
|
|
onClick={() => {
|
|
setOpenSearch(true);
|
|
}}
|
|
>
|
|
<Search className="size-4 mx-0.5" />
|
|
<p className="text-sm">Search documentation...</p>
|
|
</button>
|
|
|
|
<MotionConfig
|
|
transition={{ duration: 0.4, type: "spring", bounce: 0 }}
|
|
>
|
|
<div className="flex flex-col">
|
|
{cts.map((item, index) => (
|
|
<div key={item.title}>
|
|
<button
|
|
className="border-b w-full hover:underline border-lines text-sm px-5 py-2.5 text-left flex items-center gap-2"
|
|
onClick={() => {
|
|
if (currentOpen === index) {
|
|
setCurrentOpen(-1);
|
|
} else {
|
|
setCurrentOpen(index);
|
|
}
|
|
}}
|
|
>
|
|
<item.Icon className="size-5" />
|
|
<span className="grow">{item.title}</span>
|
|
{item.isNew && <NewBadge />}
|
|
<motion.div
|
|
animate={{ rotate: currentOpen === index ? 180 : 0 }}
|
|
>
|
|
<ChevronDownIcon
|
|
className={cn(
|
|
"h-4 w-4 shrink-0 text-muted-foreground transition-transform duration-200",
|
|
)}
|
|
/>
|
|
</motion.div>
|
|
</button>
|
|
<AnimatePresence initial={false}>
|
|
{currentOpen === index && (
|
|
<motion.div
|
|
initial={{ opacity: 0, height: 0 }}
|
|
animate={{ opacity: 1, height: "auto" }}
|
|
exit={{ opacity: 0, height: 0 }}
|
|
className="relative overflow-hidden"
|
|
>
|
|
<motion.div className="text-sm">
|
|
{item.list.map((listItem, j) => (
|
|
<div key={listItem.title}>
|
|
<Suspense fallback={<>Loading...</>}>
|
|
{listItem.group ? (
|
|
<div className="flex flex-row items-center gap-2 mx-5 my-1 ">
|
|
<p className="text-sm text-transparent bg-gradient-to-tr dark:from-gray-100 dark:to-stone-200 bg-clip-text from-gray-900 to-stone-900">
|
|
{listItem.title}
|
|
</p>
|
|
<div className="flex-grow h-px bg-gradient-to-r from-stone-800/90 to-stone-800/60" />
|
|
</div>
|
|
) : (
|
|
<AsideLink
|
|
href={listItem.href}
|
|
startWith="/docs"
|
|
title={listItem.title}
|
|
className="break-words text-nowrap w-[--fd-sidebar-width] [&>div>div]:hover:!bg-fd-muted"
|
|
activeClassName="[&>div>div]:!bg-fd-muted"
|
|
>
|
|
<div className="min-w-4">
|
|
<listItem.icon className="text-stone-950 dark:text-white" />
|
|
</div>
|
|
{listItem.title}
|
|
{listItem.isNew && <NewBadge />}
|
|
</AsideLink>
|
|
)}
|
|
</Suspense>
|
|
</div>
|
|
))}
|
|
</motion.div>
|
|
</motion.div>
|
|
)}
|
|
</AnimatePresence>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</MotionConfig>
|
|
</div>
|
|
</aside>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function NewBadge({ isSelected }: { isSelected?: boolean }) {
|
|
return (
|
|
<div className="flex items-center justify-end w-full">
|
|
<Badge
|
|
className={cn(
|
|
" pointer-events-none !no-underline border-dashed !decoration-transparent",
|
|
isSelected && "!border-solid",
|
|
)}
|
|
variant={isSelected ? "default" : "outline"}
|
|
>
|
|
New
|
|
</Badge>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const tabs = [
|
|
{
|
|
value: "docs",
|
|
icon: (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1.4em"
|
|
height="1.4em"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
fill="currentColor"
|
|
d="M4.727 2.733c.306-.308.734-.508 1.544-.618C7.105 2.002 8.209 2 9.793 2h4.414c1.584 0 2.688.002 3.522.115c.81.11 1.238.31 1.544.618c.305.308.504.74.613 1.557c.112.84.114 1.955.114 3.552V18H7.426c-1.084 0-1.462.006-1.753.068c-.513.11-.96.347-1.285.667c-.11.108-.164.161-.291.505A1.3 1.3 0 0 0 4 19.7V7.842c0-1.597.002-2.711.114-3.552c.109-.816.308-1.249.613-1.557"
|
|
opacity=".5"
|
|
></path>
|
|
<path
|
|
fill="currentColor"
|
|
d="M20 18H7.426c-1.084 0-1.462.006-1.753.068c-.513.11-.96.347-1.285.667c-.11.108-.164.161-.291.505s-.107.489-.066.78l.022.15c.11.653.31.998.616 1.244c.307.246.737.407 1.55.494c.837.09 1.946.092 3.536.092h4.43c1.59 0 2.7-.001 3.536-.092c.813-.087 1.243-.248 1.55-.494c.2-.16.354-.362.467-.664H8a.75.75 0 0 1 0-1.5h11.975c.018-.363.023-.776.025-1.25M7.25 7A.75.75 0 0 1 8 6.25h8a.75.75 0 0 1 0 1.5H8A.75.75 0 0 1 7.25 7M8 9.75a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z"
|
|
></path>
|
|
</svg>
|
|
),
|
|
title: "Docs",
|
|
description: "get started, concepts, and plugins",
|
|
},
|
|
{
|
|
value: "examples",
|
|
icon: (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="1.4em"
|
|
height="1.4em"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
fill="currentColor"
|
|
d="M12 2c4.714 0 7.071 0 8.535 1.464c1.08 1.08 1.364 2.647 1.439 5.286L22 9.5H2.026v-.75c.075-2.64.358-4.205 1.438-5.286C4.93 2 7.286 2 12 2"
|
|
opacity=".5"
|
|
></path>
|
|
<path
|
|
fill="currentColor"
|
|
d="M13 6a1 1 0 1 1-2 0a1 1 0 0 1 2 0m-3 0a1 1 0 1 1-2 0a1 1 0 0 1 2 0M7 6a1 1 0 1 1-2 0a1 1 0 0 1 2 0"
|
|
></path>
|
|
<path
|
|
fill="currentColor"
|
|
d="M2 12c0 4.714 0 7.071 1.464 8.535c1.01 1.01 2.446 1.324 4.786 1.421L9 22V9.5H2.026l-.023.75Q2 11.066 2 12"
|
|
opacity=".7"
|
|
></path>
|
|
<path
|
|
fill="currentColor"
|
|
d="M22 12c0 4.714 0 7.071-1.465 8.535C19.072 22 16.714 22 12 22c-.819 0-2.316 0-3-.008V9.5h13l-.003.75Q22 11.066 22 12"
|
|
></path>
|
|
</svg>
|
|
),
|
|
title: "Examples",
|
|
description: "examples and guides",
|
|
},
|
|
];
|
|
|
|
function SidebarTab({
|
|
group,
|
|
setGroup,
|
|
}: {
|
|
group: string;
|
|
setGroup: (group: string) => void;
|
|
}) {
|
|
const router = useRouter();
|
|
const selected = tabs.find((tab) => tab.value === group);
|
|
|
|
return (
|
|
<Select
|
|
value={group}
|
|
onValueChange={(val) => {
|
|
setGroup(val);
|
|
if (val === "docs") {
|
|
router.push("/docs");
|
|
} else {
|
|
router.push("/docs/examples");
|
|
}
|
|
}}
|
|
>
|
|
<SelectTrigger className="h-16 border border-b border-none rounded-none px-5">
|
|
{selected ? (
|
|
<div className="flex flex-col gap-1 items-start">
|
|
<div className="flex items-center gap-1 -ml-0.5">
|
|
{selected.icon}
|
|
{selected.title}
|
|
</div>
|
|
<p className="text-xs text-muted-foreground">
|
|
{selected.description}
|
|
</p>
|
|
</div>
|
|
) : null}
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{tabs.map((tab) => (
|
|
<SelectItem
|
|
key={tab.value}
|
|
value={tab.value}
|
|
className="h-12 flex flex-col items-start gap-1"
|
|
>
|
|
<div className="flex items-center gap-1">
|
|
{tab.icon}
|
|
{tab.title}
|
|
</div>
|
|
<p className="text-xs text-muted-foreground">{tab.description}</p>
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
);
|
|
}
|