umami/src/components/common/SideMenu.tsx
2025-11-22 22:42:42 -08:00

80 lines
1.6 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">
{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>
);
}