123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- import GlobalEffect from './GlobalEffect';
- import Header from './Header';
- import { makeStyles, Theme, createStyles } from '@material-ui/core';
- import NavMenu from '../menu/NavMenu';
- import { NavMenuItem } from '../menu/Types';
- import { useContext } from 'react';
- import icons from '../icons/Icons';
- import { useTranslation } from 'react-i18next';
- import { useHistory } from 'react-router-dom';
- import { authContext } from '../../context/Auth';
- const useStyles = makeStyles((theme: Theme) =>
- createStyles({
- root: {
- minHeight: '100vh',
- backgroundColor: '#f5f5f5',
- },
- content: {
- display: 'flex',
- },
- body: {
- flex: 1,
- display: 'flex',
- flexDirection: 'column',
- height: '100vh',
- overflowY: 'scroll',
- },
- activeConsole: {
- '& path': {
- fill: theme.palette.primary.main,
- },
- },
- normalConsole: {
- '& path': {
- fill: '#82838e',
- },
- },
- })
- );
- const Layout = (props: any) => {
- const history = useHistory();
- const { isAuth } = useContext(authContext);
- const { t } = useTranslation('nav');
- const classes = useStyles();
- const menuItems: NavMenuItem[] = [
- {
- icon: icons.navOverview,
- label: t('overview'),
- onClick: () => history.push('/'),
- },
- {
- icon: icons.navCollection,
- label: t('collection'),
- onClick: () => history.push('/collections'),
- },
- ];
- return (
- <div className={classes.root}>
- <GlobalEffect>
- <div className={classes.content}>
- {isAuth && (
- <NavMenu
- width="200px"
- data={menuItems}
- defaultActive={t('overview')}
- // used for nested child menu
- defaultOpen={{ [t('overview')]: true }}
- />
- )}
- <div className={classes.body}>
- {isAuth && <Header />}
- {props.children}
- </div>
- </div>
- </GlobalEffect>
- </div>
- );
- };
- export default Layout;
|