mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
80 lines
1.7 KiB
TypeScript
80 lines
1.7 KiB
TypeScript
import {
|
|
Column,
|
|
Heading,
|
|
IconLabel,
|
|
NavMenu,
|
|
NavMenuGroup,
|
|
NavMenuItem,
|
|
type NavMenuProps,
|
|
Row,
|
|
} from '@umami/react-zen';
|
|
import Link from 'next/link';
|
|
|
|
interface SideMenuData {
|
|
id: string;
|
|
label: string;
|
|
icon?: any;
|
|
path: string;
|
|
}
|
|
|
|
interface SideMenuItems {
|
|
label?: string;
|
|
items: SideMenuData[];
|
|
}
|
|
|
|
export interface SideMenuProps extends NavMenuProps {
|
|
items: SideMenuItems[];
|
|
title?: string;
|
|
selectedKey?: string;
|
|
allowMinimize?: boolean;
|
|
}
|
|
|
|
export function SideMenu({
|
|
items = [],
|
|
title,
|
|
selectedKey,
|
|
allowMinimize,
|
|
...props
|
|
}: SideMenuProps) {
|
|
const renderItems = (items: SideMenuData[]) => {
|
|
return items?.map(({ id, label, icon, path }) => {
|
|
const isSelected = selectedKey === id;
|
|
|
|
return (
|
|
<Link key={id} href={path}>
|
|
<NavMenuItem isSelected={isSelected}>
|
|
<IconLabel icon={icon}>{label}</IconLabel>
|
|
</NavMenuItem>
|
|
</Link>
|
|
);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Column gap overflowY="auto" justifyContent="space-between" position="sticky" top="20px">
|
|
{title && (
|
|
<Row padding>
|
|
<Heading size="1">{title}</Heading>
|
|
</Row>
|
|
)}
|
|
<NavMenu gap="6" {...props}>
|
|
{items?.map(({ label, items }, index) => {
|
|
if (label) {
|
|
return (
|
|
<NavMenuGroup
|
|
title={label}
|
|
key={`${label}${index}`}
|
|
gap="1"
|
|
allowMinimize={allowMinimize}
|
|
marginBottom="3"
|
|
>
|
|
{renderItems(items)}
|
|
</NavMenuGroup>
|
|
);
|
|
}
|
|
return null;
|
|
})}
|
|
</NavMenu>
|
|
</Column>
|
|
);
|
|
}
|