File size: 3,488 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
import { t } from "@lingui/macro";
import { FadersHorizontal, ReadCvLogo } from "@phosphor-icons/react";
import { Button, KeyboardShortcut, Separator } from "@reactive-resume/ui";
import { cn } from "@reactive-resume/utils";
import { motion } from "framer-motion";
import { Link, useLocation, useNavigate } from "react-router";
import useKeyboardShortcut from "use-keyboard-shortcut";
import { Copyright } from "@/client/components/copyright";
import { Icon } from "@/client/components/icon";
import { UserAvatar } from "@/client/components/user-avatar";
import { UserOptions } from "@/client/components/user-options";
import { useUser } from "@/client/services/user";
type Props = {
className?: string;
};
const ActiveIndicator = ({ className }: Props) => (
<motion.div
initial={{ opacity: 0, x: -20 }}
animate={{ opacity: 1, x: 0 }}
className={cn(
"size-1.5 animate-pulse rounded-full bg-info shadow-[0_0_12px] shadow-info",
className,
)}
/>
);
type SidebarItem = {
path: string;
name: string;
shortcut?: string;
icon: React.ReactNode;
};
type SidebarItemProps = SidebarItem & {
onClick?: () => void;
};
const SidebarItem = ({ path, name, shortcut, icon, onClick }: SidebarItemProps) => {
const isActive = useLocation().pathname === path;
return (
<Button
asChild
size="lg"
variant="ghost"
className={cn(
"h-auto justify-start px-4 py-3",
isActive && "pointer-events-none bg-secondary/50 text-secondary-foreground",
)}
onClick={onClick}
>
<Link to={path}>
<div className="mr-3">{icon}</div>
<span>{name}</span>
{!isActive && <KeyboardShortcut className="ml-auto">{shortcut}</KeyboardShortcut>}
{isActive && <ActiveIndicator className="ml-auto" />}
</Link>
</Button>
);
};
type SidebarProps = {
setOpen?: (open: boolean) => void;
};
export const Sidebar = ({ setOpen }: SidebarProps) => {
const { user } = useUser();
const navigate = useNavigate();
useKeyboardShortcut(["shift", "r"], () => {
void navigate("/dashboard/resumes");
setOpen?.(false);
});
useKeyboardShortcut(["shift", "s"], () => {
void navigate("/dashboard/settings");
setOpen?.(false);
});
const sidebarItems: SidebarItem[] = [
{
path: "/dashboard/resumes",
name: t`Resumes`,
shortcut: "⇧R",
icon: <ReadCvLogo />,
},
{
path: "/dashboard/settings",
name: t`Settings`,
shortcut: "⇧S",
icon: <FadersHorizontal />,
},
];
return (
<div className="flex h-full flex-col gap-y-4">
<div className="ml-12 flex justify-center lg:ml-0">
<Button asChild size="icon" variant="ghost" className="size-10 p-0">
<Link to="/">
<Icon size={24} className="mx-auto hidden lg:block" />
</Link>
</Button>
</div>
<Separator className="opacity-50" />
<div className="grid gap-y-2">
{sidebarItems.map((item) => (
<SidebarItem {...item} key={item.path} onClick={() => setOpen?.(false)} />
))}
</div>
<div className="flex-1" />
<Separator className="opacity-50" />
<UserOptions>
<Button size="lg" variant="ghost" className="w-full justify-start px-3">
<UserAvatar size={24} className="mr-3" />
<span>{user?.name}</span>
</Button>
</UserOptions>
<Copyright className="ml-2" />
</div>
);
};
|