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
132
133
134
135
136
137
138
139
|
import { redirect } from "next/navigation";
import AllLists from "@/components/dashboard/sidebar/AllLists";
import MobileSidebar from "@/components/shared/sidebar/MobileSidebar";
import Sidebar from "@/components/shared/sidebar/Sidebar";
import SidebarLayout from "@/components/shared/sidebar/SidebarLayout";
import { Separator } from "@/components/ui/separator";
import { ReaderSettingsProvider } from "@/lib/readerSettings";
import { UserSettingsContextProvider } from "@/lib/userSettings";
import { api } from "@/server/api/client";
import { getServerAuthSession } from "@/server/auth";
import { TRPCError } from "@trpc/server";
import { TFunction } from "i18next";
import {
Archive,
ClipboardList,
Highlighter,
Home,
Search,
Sparkles,
Tag,
} from "lucide-react";
import { PluginManager, PluginType } from "@karakeep/shared/plugins";
import { tryCatch } from "@karakeep/shared/tryCatch";
export default async function Dashboard({
children,
modal,
}: Readonly<{
children: React.ReactNode;
modal: React.ReactNode;
}>) {
const session = await getServerAuthSession();
if (!session) {
redirect("/");
}
const [lists, userSettings, showWrapped] = await Promise.all([
tryCatch(api.lists.list()),
tryCatch(api.users.settings()),
tryCatch(api.users.hasWrapped()),
]);
if (userSettings.error) {
if (userSettings.error instanceof TRPCError) {
if (
userSettings.error.code === "NOT_FOUND" ||
userSettings.error.code === "UNAUTHORIZED"
) {
redirect("/logout");
}
}
throw userSettings.error;
}
if (lists.error) {
throw lists.error;
}
if (showWrapped.error) {
throw showWrapped.error;
}
const items = (t: TFunction) =>
[
{
name: t("common.home"),
icon: <Home size={18} />,
path: "/dashboard/bookmarks",
},
PluginManager.isRegistered(PluginType.Search)
? [
{
name: t("common.search"),
icon: <Search size={18} />,
path: "/dashboard/search",
},
]
: [],
{
name: t("common.tags"),
icon: <Tag size={18} />,
path: "/dashboard/tags",
},
{
name: t("common.highlights"),
icon: <Highlighter size={18} />,
path: "/dashboard/highlights",
},
{
name: t("common.archive"),
icon: <Archive size={18} />,
path: "/dashboard/archive",
},
// Only show wrapped if user has at least 20 bookmarks
showWrapped.data
? [
{
name: t("wrapped.button"),
icon: <Sparkles size={18} />,
path: "/dashboard/wrapped",
},
]
: [],
].flat();
const mobileSidebar = (t: TFunction) => [
...items(t).filter((item) => item.path !== "/dashboard/wrapped"),
{
name: t("lists.all_lists"),
icon: <ClipboardList size={18} />,
path: "/dashboard/lists",
},
];
return (
<UserSettingsContextProvider userSettings={userSettings.data}>
<ReaderSettingsProvider>
<SidebarLayout
sidebar={
<Sidebar
items={items}
extraSections={
<>
<Separator />
<AllLists initialData={lists.data} />
</>
}
/>
}
mobileSidebar={<MobileSidebar items={mobileSidebar} />}
modal={modal}
>
{children}
</SidebarLayout>
</ReaderSettingsProvider>
</UserSettingsContextProvider>
);
}
|