[5d6f37a] | 1 | import { memo, useState, useCallback } from 'react';
|
---|
| 2 | // @mui
|
---|
| 3 | import List from '@mui/material/List';
|
---|
| 4 | import Stack from '@mui/material/Stack';
|
---|
| 5 | import Collapse from '@mui/material/Collapse';
|
---|
| 6 | //
|
---|
| 7 | import { NavSectionProps, NavListProps, NavConfigProps } from '../types';
|
---|
| 8 | import { navVerticalConfig } from '../config';
|
---|
| 9 | import { StyledSubheader } from './styles';
|
---|
| 10 |
|
---|
| 11 | import NavList from './nav-list';
|
---|
| 12 |
|
---|
| 13 | // ----------------------------------------------------------------------
|
---|
| 14 |
|
---|
| 15 | function NavSectionVertical({ data, config, sx, ...other }: NavSectionProps) {
|
---|
| 16 | return (
|
---|
| 17 | <Stack sx={sx} {...other}>
|
---|
| 18 | {data.map((group, index) => (
|
---|
| 19 | <Group
|
---|
| 20 | key={group.subheader || index}
|
---|
| 21 | subheader={group.subheader}
|
---|
| 22 | items={group.items}
|
---|
| 23 | config={navVerticalConfig(config)}
|
---|
| 24 | />
|
---|
| 25 | ))}
|
---|
| 26 | </Stack>
|
---|
| 27 | );
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | export default memo(NavSectionVertical);
|
---|
| 31 |
|
---|
| 32 | // ----------------------------------------------------------------------
|
---|
| 33 |
|
---|
| 34 | type GroupProps = {
|
---|
| 35 | subheader: string;
|
---|
| 36 | items: NavListProps[];
|
---|
| 37 | config: NavConfigProps;
|
---|
| 38 | };
|
---|
| 39 |
|
---|
| 40 | function Group({ subheader, items, config }: GroupProps) {
|
---|
| 41 | const [open, setOpen] = useState(true);
|
---|
| 42 |
|
---|
| 43 | const handleToggle = useCallback(() => {
|
---|
| 44 | setOpen((prev) => !prev);
|
---|
| 45 | }, []);
|
---|
| 46 |
|
---|
| 47 | const renderContent = items.map((list) => (
|
---|
| 48 | <NavList
|
---|
| 49 | key={list.title + list.path}
|
---|
| 50 | data={list}
|
---|
| 51 | depth={1}
|
---|
| 52 | hasChild={!!list.children}
|
---|
| 53 | config={config}
|
---|
| 54 | />
|
---|
| 55 | ));
|
---|
| 56 |
|
---|
| 57 | return (
|
---|
| 58 | <List disablePadding sx={{ px: 2 }}>
|
---|
| 59 | {subheader ? (
|
---|
| 60 | <>
|
---|
| 61 | <StyledSubheader disableGutters disableSticky onClick={handleToggle} config={config}>
|
---|
| 62 | {subheader}
|
---|
| 63 | </StyledSubheader>
|
---|
| 64 |
|
---|
| 65 | <Collapse in={open}>{renderContent}</Collapse>
|
---|
| 66 | </>
|
---|
| 67 | ) : (
|
---|
| 68 | renderContent
|
---|
| 69 | )}
|
---|
| 70 | </List>
|
---|
| 71 | );
|
---|
| 72 | }
|
---|