52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import { Fragment } from "react"
|
|
import { LogOut } from "react-feather"
|
|
|
|
import { logout } from "@/constants/routes/handleAuth"
|
|
import { serverClient } from "@/lib/trpc/server"
|
|
|
|
import Link from "@/components/TempDesignSystem/Link"
|
|
import Title from "@/components/TempDesignSystem/Title"
|
|
|
|
import styles from "./sidebar.module.css"
|
|
|
|
import { LangParams } from "@/types/params"
|
|
|
|
export default async function Sidebar({ lang }: LangParams) {
|
|
const navigation = await serverClient().contentstack.myPages.navigation.get()
|
|
|
|
return (
|
|
<aside className={styles.sidebar}>
|
|
<nav className={styles.nav}>
|
|
<Title level="h5">{navigation.title}</Title>
|
|
{navigation.items.map((item) => (
|
|
<Fragment key={item.uid}>
|
|
<Link
|
|
href={item.originalUrl || item.url}
|
|
partialMatch
|
|
variant="sidebar"
|
|
>
|
|
{item.linkText}
|
|
</Link>
|
|
{item.subItems
|
|
? item.subItems.map((subItem) => (
|
|
<Link
|
|
key={subItem.uid}
|
|
href={subItem.originalUrl || subItem.url}
|
|
partialMatch
|
|
variant="sidebar"
|
|
>
|
|
{subItem.linkText}
|
|
</Link>
|
|
))
|
|
: null}
|
|
</Fragment>
|
|
))}
|
|
|
|
<Link prefetch={false} href={logout[lang]} variant="sidebar">
|
|
Log out <LogOut height={16} width={16} />
|
|
</Link>
|
|
</nav>
|
|
</aside>
|
|
)
|
|
}
|