1 | import { useState, useEffect, useRef } 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 = () => {
|
---|
63 | setOpen(true);
|
---|
64 | };
|
---|
65 |
|
---|
66 | const handleClose = () => {
|
---|
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={
|
---|
89 | depth === 1
|
---|
90 | ? { vertical: 'bottom', horizontal: 'left' }
|
---|
91 | : { vertical: 'center', horizontal: 'right' }
|
---|
92 | }
|
---|
93 | transformOrigin={
|
---|
94 | depth === 1
|
---|
95 | ? { vertical: 'top', horizontal: 'left' }
|
---|
96 | : { vertical: 'center', horizontal: 'left' }
|
---|
97 | }
|
---|
98 | slotProps={{
|
---|
99 | paper: {
|
---|
100 | onMouseEnter: handleOpen,
|
---|
101 | onMouseLeave: handleClose,
|
---|
102 | sx: {
|
---|
103 | width: 160,
|
---|
104 | ...(open && {
|
---|
105 | pointerEvents: 'auto',
|
---|
106 | }),
|
---|
107 | },
|
---|
108 | },
|
---|
109 | }}
|
---|
110 | sx={{
|
---|
111 | pointerEvents: 'none',
|
---|
112 | }}
|
---|
113 | >
|
---|
114 | <NavSubList data={data.children} depth={depth} config={config} />
|
---|
115 | </Popover>
|
---|
116 | )}
|
---|
117 | </>
|
---|
118 | );
|
---|
119 | }
|
---|
120 |
|
---|
121 | // ----------------------------------------------------------------------
|
---|
122 |
|
---|
123 | type NavListSubProps = {
|
---|
124 | data: NavListProps[];
|
---|
125 | depth: number;
|
---|
126 | config: NavConfigProps;
|
---|
127 | };
|
---|
128 |
|
---|
129 | function NavSubList({ data, depth, config }: NavListSubProps) {
|
---|
130 | return (
|
---|
131 | <Stack spacing={0.5}>
|
---|
132 | {data.map((list) => (
|
---|
133 | <NavList
|
---|
134 | key={list.title + list.path}
|
---|
135 | data={list}
|
---|
136 | depth={depth + 1}
|
---|
137 | hasChild={!!list.children}
|
---|
138 | config={config}
|
---|
139 | />
|
---|
140 | ))}
|
---|
141 | </Stack>
|
---|
142 | );
|
---|
143 | }
|
---|