blob: 7eea6b6dde417932f2aa0a235c615390933766aa (
plain) (
blame)
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
|
import { Archive, Star, Tag, Home, PackageOpen, Settings } from "lucide-react";
import { redirect } from "next/navigation";
import SidebarItem from "./SidebarItem";
import { getServerAuthSession } from "@/server/auth";
import Link from "next/link";
import SidebarProfileOptions from "./SidebarProfileOptions";
import { Separator } from "@/components/ui/separator";
import AllLists from "./AllLists";
export default async function Sidebar() {
const session = await getServerAuthSession();
if (!session) {
redirect("/");
}
return (
<aside className="flex h-screen w-60 flex-col gap-5 border-r p-4">
<Link href={"/dashboard/bookmarks"}>
<div className="flex items-center rounded-lg px-1 text-slate-900">
<PackageOpen />
<span className="ml-2 text-base font-semibold">Hoarder</span>
</div>
</Link>
<hr />
<div>
<ul className="space-y-2 text-sm font-medium">
<SidebarItem
logo={<Home />}
name="Home"
path="/dashboard/bookmarks"
/>
<SidebarItem
logo={<Star />}
name="Favourites"
path="/dashboard/bookmarks/favourites"
/>
<SidebarItem
logo={<Archive />}
name="Archive"
path="/dashboard/bookmarks/archive"
/>
<SidebarItem logo={<Tag />} name="Tags" path="/dashboard/tags" />
<SidebarItem
logo={<Settings />}
name="Settings"
path="/dashboard/settings"
/>
</ul>
</div>
<Separator />
<AllLists />
<div className="mt-auto flex justify-between justify-self-end">
<div className="my-auto"> {session.user.name} </div>
<SidebarProfileOptions />
</div>
</aside>
);
}
|