main
Last change
on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Line | |
---|
1 | import { memo } from 'react';
|
---|
2 | // @mui
|
---|
3 | import Stack from '@mui/material/Stack';
|
---|
4 | // theme
|
---|
5 | import { hideScroll } from 'src/theme/css';
|
---|
6 | //
|
---|
7 | import { NavSectionProps, NavListProps, NavConfigProps } from '../types';
|
---|
8 | import { navHorizontalConfig } from '../config';
|
---|
9 | import NavList from './nav-list';
|
---|
10 |
|
---|
11 | // ----------------------------------------------------------------------
|
---|
12 |
|
---|
13 | function NavSectionHorizontal({ data, config, sx, ...other }: NavSectionProps) {
|
---|
14 | return (
|
---|
15 | <Stack
|
---|
16 | direction="row"
|
---|
17 | sx={{
|
---|
18 | mx: 'auto',
|
---|
19 | ...hideScroll.y,
|
---|
20 | ...sx,
|
---|
21 | }}
|
---|
22 | {...other}
|
---|
23 | >
|
---|
24 | {data.map((group, index) => (
|
---|
25 | <Group
|
---|
26 | key={group.subheader || index}
|
---|
27 | items={group.items}
|
---|
28 | config={navHorizontalConfig(config)}
|
---|
29 | />
|
---|
30 | ))}
|
---|
31 | </Stack>
|
---|
32 | );
|
---|
33 | }
|
---|
34 |
|
---|
35 | export default memo(NavSectionHorizontal);
|
---|
36 |
|
---|
37 | // ----------------------------------------------------------------------
|
---|
38 |
|
---|
39 | type GroupProps = {
|
---|
40 | items: NavListProps[];
|
---|
41 | config: NavConfigProps;
|
---|
42 | };
|
---|
43 |
|
---|
44 | function Group({ items, config }: GroupProps) {
|
---|
45 | return (
|
---|
46 | <>
|
---|
47 | {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 | );
|
---|
58 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.