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.0 KB
|
Line | |
---|
1 | import { memo } from 'react';
|
---|
2 | import Stack from '@mui/material/Stack';
|
---|
3 | //
|
---|
4 | import { NavSectionProps, NavListProps, NavConfigProps } from '../types';
|
---|
5 | import { navMiniConfig } from '../config';
|
---|
6 | import NavList from './nav-list';
|
---|
7 |
|
---|
8 | // ----------------------------------------------------------------------
|
---|
9 |
|
---|
10 | function NavSectionMini({ data, config, sx, ...other }: NavSectionProps) {
|
---|
11 | return (
|
---|
12 | <Stack sx={sx} {...other}>
|
---|
13 | {data.map((group, index) => (
|
---|
14 | <Group key={group.subheader || index} items={group.items} config={navMiniConfig(config)} />
|
---|
15 | ))}
|
---|
16 | </Stack>
|
---|
17 | );
|
---|
18 | }
|
---|
19 |
|
---|
20 | export default memo(NavSectionMini);
|
---|
21 |
|
---|
22 | // ----------------------------------------------------------------------
|
---|
23 |
|
---|
24 | type GroupProps = {
|
---|
25 | items: NavListProps[];
|
---|
26 | config: NavConfigProps;
|
---|
27 | };
|
---|
28 |
|
---|
29 | function Group({ items, config }: GroupProps) {
|
---|
30 | return (
|
---|
31 | <>
|
---|
32 | {items.map((list) => (
|
---|
33 | <NavList
|
---|
34 | key={list.title + list.path}
|
---|
35 | data={list}
|
---|
36 | depth={1}
|
---|
37 | hasChild={!!list.children}
|
---|
38 | config={config}
|
---|
39 | />
|
---|
40 | ))}
|
---|
41 | </>
|
---|
42 | );
|
---|
43 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.