blob: bf5a626b01eb00b019b480c3ef61f0eb25a7f162 (
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
|
import { useTranslation } from "@/lib/i18n/server";
import { TFunction } from "i18next";
import serverConfig from "@karakeep/shared/config";
import SidebarItem from "./SidebarItem";
import SidebarVersion from "./SidebarVersion";
import { TSidebarItem } from "./TSidebarItem";
export default async function Sidebar({
items,
extraSections,
}: {
items: (t: TFunction) => TSidebarItem[];
extraSections?: React.ReactNode;
}) {
// oxlint-disable-next-line rules-of-hooks
const { t } = await useTranslation();
return (
<aside className="flex h-[calc(100vh-64px)] w-60 flex-col gap-5 border-r p-4">
<div>
<ul className="space-y-2 text-sm">
{items(t).map((item) => (
<SidebarItem
key={item.name}
logo={item.icon}
name={item.name}
path={item.path}
/>
))}
</ul>
</div>
{extraSections}
<SidebarVersion serverVersion={serverConfig.serverVersion} />
</aside>
);
}
|