mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 13:47:15 +01:00
24 lines
731 B
TypeScript
24 lines
731 B
TypeScript
import { ReactNode } from 'react';
|
|
import { usePathname } from 'next/navigation';
|
|
import SideNav from 'components/layout/SideNav';
|
|
import styles from './MenuLayout.module.css';
|
|
|
|
export function MenuLayout({ items = [], children }: { items: any[]; children: ReactNode }) {
|
|
const pathname = usePathname();
|
|
const cloudMode = !!process.env.cloudMode;
|
|
|
|
const getKey = () => items.find(({ url }) => pathname === url)?.key;
|
|
|
|
return (
|
|
<div className={styles.layout}>
|
|
{!cloudMode && (
|
|
<div className={styles.menu}>
|
|
<SideNav items={items} shallow={true} selectedKey={getKey()} />
|
|
</div>
|
|
)}
|
|
<div className={styles.content}>{children}</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default MenuLayout;
|