import { useState, useEffect, useRef, useCallback } from 'react'; // @mui import Stack from '@mui/material/Stack'; import Popover from '@mui/material/Popover'; import { appBarClasses } from '@mui/material/AppBar'; // routes import { usePathname } from 'src/routes/hooks'; import { useActiveLink } from 'src/routes/hooks/use-active-link'; // import { NavListProps, NavConfigProps } from '../types'; import NavItem from './nav-item'; // ---------------------------------------------------------------------- type NavListRootProps = { data: NavListProps; depth: number; hasChild: boolean; config: NavConfigProps; }; export default function NavList({ data, depth, hasChild, config }: NavListRootProps) { const navRef = useRef(null); const pathname = usePathname(); const active = useActiveLink(data.path, hasChild); const externalLink = data.path.includes('http'); const [open, setOpen] = useState(false); useEffect(() => { if (open) { handleClose(); } // eslint-disable-next-line react-hooks/exhaustive-deps }, [pathname]); useEffect(() => { const appBarEl = Array.from( document.querySelectorAll(`.${appBarClasses.root}`) ) as Array; // Reset styles when hover const styles = () => { document.body.style.overflow = ''; document.body.style.padding = ''; // Apply for Window appBarEl.forEach((elem) => { elem.style.padding = ''; }); }; if (open) { styles(); } else { styles(); } }, [open]); const handleOpen = useCallback(() => { setOpen(true); }, []); const handleClose = useCallback(() => { setOpen(false); }, []); return ( <> {hasChild && ( )} ); } // ---------------------------------------------------------------------- type NavListSubProps = { data: NavListProps[]; depth: number; config: NavConfigProps; }; function NavSubList({ data, depth, config }: NavListSubProps) { return ( {data.map((list) => ( ))} ); }