1 | import { useState, useEffect, useRef, useCallback } from 'react';
|
---|
2 | // @mui
|
---|
3 | import Stack from '@mui/material/Stack';
|
---|
4 | import Popover from '@mui/material/Popover';
|
---|
5 | import { appBarClasses } from '@mui/material/AppBar';
|
---|
6 | // routes
|
---|
7 | import { usePathname } from 'src/routes/hooks';
|
---|
8 | import { useActiveLink } from 'src/routes/hooks/use-active-link';
|
---|
9 | //
|
---|
10 | import { NavListProps, NavConfigProps } from '../types';
|
---|
11 | import NavItem from './nav-item';
|
---|
12 |
|
---|
13 | // ----------------------------------------------------------------------
|
---|
14 |
|
---|
15 | type NavListRootProps = {
|
---|
16 | data: NavListProps;
|
---|
17 | depth: number;
|
---|
18 | hasChild: boolean;
|
---|
19 | config: NavConfigProps;
|
---|
20 | };
|
---|
21 |
|
---|
22 | export default function NavList({ data, depth, hasChild, config }: NavListRootProps) {
|
---|
23 | const navRef = useRef(null);
|
---|
24 |
|
---|
25 | const pathname = usePathname();
|
---|
26 |
|
---|
27 | const active = useActiveLink(data.path, hasChild);
|
---|
28 |
|
---|
29 | const externalLink = data.path.includes('http');
|
---|
30 |
|
---|
31 | const [open, setOpen] = useState(false);
|
---|
32 |
|
---|
33 | useEffect(() => {
|
---|
34 | if (open) {
|
---|
35 | handleClose();
|
---|
36 | }
|
---|
37 | // eslint-disable-next-line react-hooks/exhaustive-deps
|
---|
38 | }, [pathname]);
|
---|
39 |
|
---|
40 | useEffect(() => {
|
---|
41 | const appBarEl = Array.from(
|
---|
42 | document.querySelectorAll(`.${appBarClasses.root}`)
|
---|
43 | ) as Array<HTMLElement>;
|
---|
44 |
|
---|
45 | // Reset styles when hover
|
---|
46 | const styles = () => {
|
---|
47 | document.body.style.overflow = '';
|
---|
48 | document.body.style.padding = '';
|
---|
49 | // Apply for Window
|
---|
50 | appBarEl.forEach((elem) => {
|
---|
51 | elem.style.padding = '';
|
---|
52 | });
|
---|
53 | };
|
---|
54 |
|
---|
55 | if (open) {
|
---|
56 | styles();
|
---|
57 | } else {
|
---|
58 | styles();
|
---|
59 | }
|
---|
60 | }, [open]);
|
---|
61 |
|
---|
62 | const handleOpen = useCallback(() => {
|
---|
63 | setOpen(true);
|
---|
64 | }, []);
|
---|
65 |
|
---|
66 | const handleClose = useCallback(() => {
|
---|
67 | setOpen(false);
|
---|
68 | }, []);
|
---|
69 |
|
---|
70 | return (
|
---|
71 | <>
|
---|
72 | <NavItem
|
---|
73 | ref={navRef}
|
---|
74 | item={data}
|
---|
75 | depth={depth}
|
---|
76 | open={open}
|
---|
77 | active={active}
|
---|
78 | externalLink={externalLink}
|
---|
79 | onMouseEnter={handleOpen}
|
---|
80 | onMouseLeave={handleClose}
|
---|
81 | config={config}
|
---|
82 | />
|
---|
83 |
|
---|
84 | {hasChild && (
|
---|
85 | <Popover
|
---|
86 | open={open}
|
---|
87 | anchorEl={navRef.current}
|
---|
88 | anchorOrigin={{ vertical: 'center', horizontal: 'right' }}
|
---|
89 | transformOrigin={{ vertical: 'center', horizontal: 'left' }}
|
---|
90 | slotProps={{
|
---|
91 | paper: {
|
---|
92 | onMouseEnter: handleOpen,
|
---|
93 | onMouseLeave: handleClose,
|
---|
94 | sx: {
|
---|
95 | mt: 0.5,
|
---|
96 | width: 160,
|
---|
97 | ...(open && {
|
---|
98 | pointerEvents: 'auto',
|
---|
99 | }),
|
---|
100 | },
|
---|
101 | },
|
---|
102 | }}
|
---|
103 | sx={{
|
---|
104 | pointerEvents: 'none',
|
---|
105 | }}
|
---|
106 | >
|
---|
107 | <NavSubList data={data.children} depth={depth} config={config} />
|
---|
108 | </Popover>
|
---|
109 | )}
|
---|
110 | </>
|
---|
111 | );
|
---|
112 | }
|
---|
113 |
|
---|
114 | // ----------------------------------------------------------------------
|
---|
115 |
|
---|
116 | type NavListSubProps = {
|
---|
117 | data: NavListProps[];
|
---|
118 | depth: number;
|
---|
119 | config: NavConfigProps;
|
---|
120 | };
|
---|
121 |
|
---|
122 | function NavSubList({ data, depth, config }: NavListSubProps) {
|
---|
123 | return (
|
---|
124 | <Stack spacing={0.5}>
|
---|
125 | {data.map((list) => (
|
---|
126 | <NavList
|
---|
127 | key={list.title + list.path}
|
---|
128 | data={list}
|
---|
129 | depth={depth + 1}
|
---|
130 | hasChild={!!list.children}
|
---|
131 | config={config}
|
---|
132 | />
|
---|
133 | ))}
|
---|
134 | </Stack>
|
---|
135 | );
|
---|
136 | }
|
---|