| import MenuIcon from '@mui/icons-material/Menu'; | |
| import GitHubIcon from '@mui/icons-material/GitHub'; | |
| import AppBar from '@mui/material/AppBar'; | |
| import Box from '@mui/material/Box'; | |
| import CssBaseline from '@mui/material/CssBaseline'; | |
| import Divider from '@mui/material/Divider'; | |
| import Drawer from '@mui/material/Drawer'; | |
| import IconButton from '@mui/material/IconButton'; | |
| import Toolbar from '@mui/material/Toolbar'; | |
| import Typography from '@mui/material/Typography'; | |
| import { VERSION } from '@react-page/editor'; | |
| import type { FC, PropsWithChildren } from 'react'; | |
| import * as React from 'react'; | |
| import Navigation from './Navigation'; | |
| const drawerWidth = 240; | |
| const PageLayout: FC<PropsWithChildren> = ({ children }) => { | |
| const [mobileOpen, setMobileOpen] = React.useState(false); | |
| const handleDrawerToggle = () => { | |
| setMobileOpen(!mobileOpen); | |
| }; | |
| const drawer = ( | |
| <div> | |
| <Toolbar /> | |
| <Divider /> | |
| <Navigation /> | |
| </div> | |
| ); | |
| return ( | |
| <Box sx={{ display: 'flex' }}> | |
| <CssBaseline /> | |
| <AppBar | |
| position="fixed" | |
| sx={{ | |
| width: { sm: `calc(100% - ${drawerWidth}px)` }, | |
| ml: { sm: `${drawerWidth}px` }, | |
| }} | |
| > | |
| <Toolbar> | |
| <IconButton | |
| color="inherit" | |
| aria-label="open drawer" | |
| edge="start" | |
| onClick={handleDrawerToggle} | |
| sx={{ mr: 2, display: { sm: 'none' } }} | |
| > | |
| <MenuIcon /> | |
| </IconButton> | |
| <Typography variant="h6" noWrap component="div"> | |
| React Page {VERSION} | |
| </Typography> | |
| <IconButton | |
| href="https://github.com/react-page/react-page" | |
| target="_blank" | |
| color="inherit" | |
| aria-label="open drawer" | |
| sx={{ marginLeft: 'auto' }} | |
| > | |
| <GitHubIcon /> | |
| </IconButton> | |
| </Toolbar> | |
| </AppBar> | |
| <Box | |
| component="nav" | |
| sx={{ width: { sm: drawerWidth }, flexShrink: { sm: 0 } }} | |
| aria-label="mailbox folders" | |
| > | |
| {/* The implementation can be swapped with js to avoid SEO duplication of links. */} | |
| <Drawer | |
| variant="temporary" | |
| open={mobileOpen} | |
| onClose={handleDrawerToggle} | |
| ModalProps={{ | |
| keepMounted: true, // Better open performance on mobile. | |
| }} | |
| sx={{ | |
| display: { xs: 'block', sm: 'none' }, | |
| '& .MuiDrawer-paper': { | |
| boxSizing: 'border-box', | |
| width: drawerWidth, | |
| }, | |
| }} | |
| > | |
| {drawer} | |
| </Drawer> | |
| <Drawer | |
| variant="permanent" | |
| sx={{ | |
| display: { xs: 'none', sm: 'block' }, | |
| '& .MuiDrawer-paper': { | |
| zIndex: 10, | |
| boxSizing: 'border-box', | |
| width: drawerWidth, | |
| }, | |
| }} | |
| open | |
| > | |
| {drawer} | |
| </Drawer> | |
| </Box> | |
| <Box | |
| component="main" | |
| sx={{ | |
| flexGrow: 1, | |
| p: 3, | |
| width: { sm: `calc(100% - ${drawerWidth}px)` }, | |
| background: (theme) => theme.palette.grey[100], | |
| }} | |
| > | |
| <Toolbar /> | |
| <Box | |
| sx={{ | |
| flexGrow: 1, | |
| p: 4, | |
| backgroundColor: 'white', | |
| maxWidth: 1280, | |
| margin: 'auto', | |
| }} | |
| > | |
| {children} | |
| </Box> | |
| </Box> | |
| </Box> | |
| ); | |
| }; | |
| export default PageLayout; | |