source: src/components/nav-section/vertical/nav-section-vertical.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.8 KB
Line 
1import { memo, useState, useCallback } from 'react';
2// @mui
3import List from '@mui/material/List';
4import Stack from '@mui/material/Stack';
5import Collapse from '@mui/material/Collapse';
6//
7import { NavSectionProps, NavListProps, NavConfigProps } from '../types';
8import { navVerticalConfig } from '../config';
9import { StyledSubheader } from './styles';
10
11import NavList from './nav-list';
12
13// ----------------------------------------------------------------------
14
15function 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
30export default memo(NavSectionVertical);
31
32// ----------------------------------------------------------------------
33
34type GroupProps = {
35 subheader: string;
36 items: NavListProps[];
37 config: NavConfigProps;
38};
39
40function 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}
Note: See TracBrowser for help on using the repository browser.