blob: 34680cdd11a14277abd4984754480a05f74c5ac2 (
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
59
60
61
62
|
"use client";
import Link from "next/link";
import { api } from "@/lib/trpc";
import { Plus } from "lucide-react";
import type { ZBookmarkList } from "@hoarder/trpc/types/lists";
import NewListModal, { useNewListModal } from "./NewListModal";
import SidebarItem from "./SidebarItem";
export default function AllLists({
initialData,
}: {
initialData: { lists: ZBookmarkList[] };
}) {
let { data: lists } = api.lists.list.useQuery(undefined, {
initialData,
});
// TODO: This seems to be a bug in react query
lists ||= initialData;
const { setOpen } = useNewListModal();
return (
<ul className="max-h-full gap-y-2 overflow-auto text-sm font-medium">
<NewListModal />
<li className="flex justify-between pb-2 font-bold">
<p>Lists</p>
<Link href="#" onClick={() => setOpen(true)}>
<Plus />
</Link>
</li>
<SidebarItem
logo={<span className="text-lg">📋</span>}
name="All Lists"
path={`/dashboard/lists`}
className="py-0.5"
/>
<SidebarItem
logo={<span className="text-lg">⭐️</span>}
name="Favourties"
path={`/dashboard/favourites`}
className="py-0.5"
/>
<SidebarItem
logo={<span className="text-lg">🗄️</span>}
name="Archive"
path={`/dashboard/archive`}
className="py-0.5"
/>
{lists.lists.map((l) => (
<SidebarItem
key={l.id}
logo={<span className="text-lg"> {l.icon}</span>}
name={l.name}
path={`/dashboard/lists/${l.id}`}
className="py-0.5"
/>
))}
</ul>
);
}
|