source: src/layouts/dashboard/nav-vertical.tsx@ 87c9f1e

main
Last change on this file since 87c9f1e was 87c9f1e, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago

update the seed script. update the prisma schema, use mapping

  • Property mode set to 100644
File size: 2.3 KB
Line 
1'use client';
2
3import { useEffect } from 'react';
4// @mui
5import Box from '@mui/material/Box';
6import Stack from '@mui/material/Stack';
7import Drawer from '@mui/material/Drawer';
8// hooks
9import { useResponsive } from 'src/hooks/use-responsive';
10import { useAuthContext } from 'src/auth/hooks';
11// components
12import Logo from 'src/components/logo';
13import Scrollbar from 'src/components/scrollbar';
14import { usePathname } from 'src/routes/hooks';
15import { NavSectionVertical } from 'src/components/nav-section';
16//
17import { NAV } from '../config-layout';
18import { useNavData } from './config-navigation';
19import { NavToggleButton } from '../_common';
20
21// ----------------------------------------------------------------------
22
23type Props = {
24 openNav: boolean;
25 onCloseNav: VoidFunction;
26};
27
28export default function NavVertical({ openNav, onCloseNav }: Props) {
29 const { user } = useAuthContext();
30
31 const pathname = usePathname();
32
33 const lgUp = useResponsive('up', 'lg');
34
35 const navData = useNavData();
36
37 useEffect(() => {
38 if (openNav) {
39 onCloseNav();
40 }
41 // eslint-disable-next-line react-hooks/exhaustive-deps
42 }, [pathname]);
43
44 const renderContent = (
45 <Scrollbar
46 sx={{
47 height: 1,
48 '& .simplebar-content': {
49 height: 1,
50 display: 'flex',
51 flexDirection: 'column',
52 },
53 }}
54 >
55 <Logo sx={{ mt: 3, ml: 4, mb: 1 }} />
56
57 <NavSectionVertical
58 data={navData}
59 config={{
60 currentRole: user?.role || 'ADMIN',
61 }}
62 />
63
64 <Box sx={{ flexGrow: 1 }} />
65
66 {/* <NavUpgrade /> */}
67 </Scrollbar>
68 );
69
70 return (
71 <Box
72 component="nav"
73 sx={{
74 flexShrink: { lg: 0 },
75 width: { lg: NAV.W_VERTICAL },
76 }}
77 >
78 <NavToggleButton />
79
80 {lgUp ? (
81 <Stack
82 sx={{
83 height: 1,
84 position: 'fixed',
85 width: NAV.W_VERTICAL,
86 borderRight: (theme) => `dashed 1px ${theme.palette.divider}`,
87 }}
88 >
89 {renderContent}
90 </Stack>
91 ) : (
92 <Drawer
93 open={openNav}
94 onClose={onCloseNav}
95 PaperProps={{
96 sx: {
97 width: NAV.W_VERTICAL,
98 },
99 }}
100 >
101 {renderContent}
102 </Drawer>
103 )}
104 </Box>
105 );
106}
Note: See TracBrowser for help on using the repository browser.