1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- 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, useMemo } from 'react';
- import icons from '../icons/Icons';
- import { useTranslation } from 'react-i18next';
- import { useHistory, useLocation } 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: theme.palette.milvusGrey.dark,
- },
- },
- })
- );
- const Layout = (props: any) => {
- const history = useHistory();
- const { isAuth } = useContext(authContext);
- const { t: navTrans } = useTranslation('nav');
- const classes = useStyles();
- const location = useLocation();
- const defaultActive = useMemo(
- () =>
- location.pathname.includes('collection')
- ? navTrans('collection')
- : navTrans('overview'),
- [location, navTrans]
- );
- const menuItems: NavMenuItem[] = [
- {
- icon: icons.navOverview,
- label: navTrans('overview'),
- onClick: () => history.push('/'),
- },
- {
- icon: icons.navCollection,
- label: navTrans('collection'),
- onClick: () => history.push('/collections'),
- },
- ];
- return (
- <div className={classes.root}>
- <GlobalEffect>
- <div className={classes.content}>
- {isAuth && (
- <NavMenu
- width="200px"
- data={menuItems}
- defaultActive={defaultActive}
- // used for nested child menu
- defaultOpen={{ [navTrans('overview')]: true }}
- />
- )}
- <div className={classes.body}>
- {isAuth && <Header />}
- {props.children}
- </div>
- </div>
- </GlobalEffect>
- </div>
- );
- };
- export default Layout;
|