mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { FC, useState, useEffect } from 'react';
|
|
import { useLocation } from 'react-router-dom';
|
|
|
|
import { Box, Toolbar } from '@mui/material';
|
|
|
|
import { PROJECT_NAME } from '../../api/env';
|
|
import { RequiredChildrenProps } from '../../utils';
|
|
|
|
import LayoutDrawer from './LayoutDrawer';
|
|
import LayoutAppBar from './LayoutAppBar';
|
|
import { LayoutContext } from './context';
|
|
|
|
export const DRAWER_WIDTH = 240;
|
|
|
|
const Layout: FC<RequiredChildrenProps> = ({ children }) => {
|
|
const [mobileOpen, setMobileOpen] = useState(false);
|
|
const [title, setTitle] = useState(PROJECT_NAME);
|
|
const { pathname } = useLocation();
|
|
|
|
const handleDrawerToggle = () => {
|
|
setMobileOpen(!mobileOpen);
|
|
};
|
|
|
|
useEffect(() => setMobileOpen(false), [pathname]);
|
|
|
|
return (
|
|
<LayoutContext.Provider value={{ title, setTitle }}>
|
|
<LayoutAppBar title={title} onToggleDrawer={handleDrawerToggle} />
|
|
<LayoutDrawer mobileOpen={mobileOpen} onClose={handleDrawerToggle} />
|
|
<Box component="main" sx={{ marginLeft: { md: `${DRAWER_WIDTH}px` } }}>
|
|
<Toolbar />
|
|
{children}
|
|
</Box>
|
|
</LayoutContext.Provider>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|