You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.8 KiB
97 lines
2.8 KiB
import { Divider, Drawer, List, ListItem, Box } from '@material-ui/core'; |
|
import { makeStyles, createStyles } from '@material-ui/core/styles'; |
|
import DashboardIcon from '@material-ui/icons/Dashboard'; |
|
import { Dispatch, SetStateAction } from 'react'; |
|
import { BodyText, HeaderText } from './Text'; |
|
import { ICONS, ICON_SIZE } from '../lib/consts/ICONS'; |
|
import { DIVIDER, GREY } from '../lib/consts/DEFAULT_THEME'; |
|
|
|
interface DrawerProps { |
|
open: boolean; |
|
setOpen: Dispatch<SetStateAction<boolean>>; |
|
} |
|
|
|
const useStyles = makeStyles(() => |
|
createStyles({ |
|
list: { |
|
width: '200px', |
|
}, |
|
divider: { |
|
background: DIVIDER, |
|
}, |
|
text: { |
|
paddingTop: '.5em', |
|
paddingLeft: '1.5em', |
|
}, |
|
dashboardButton: { |
|
paddingLeft: '.1em', |
|
}, |
|
dashboardIcon: { |
|
fontSize: '2.3em', |
|
color: GREY, |
|
}, |
|
}), |
|
); |
|
|
|
const AnvilDrawer = ({ open, setOpen }: DrawerProps): JSX.Element => { |
|
const classes = useStyles(); |
|
|
|
return ( |
|
<Drawer |
|
BackdropProps={{ invisible: true }} |
|
anchor="left" |
|
open={open} |
|
onClose={() => setOpen(!open)} |
|
> |
|
<div role="presentation"> |
|
<List className={classes.list}> |
|
<ListItem button> |
|
<HeaderText text="Admin" /> |
|
</ListItem> |
|
<Divider className={classes.divider} /> |
|
<ListItem button component="a" href="/index.html"> |
|
<Box display="flex" flexDirection="row" width="100%"> |
|
<Box className={classes.dashboardButton}> |
|
<DashboardIcon className={classes.dashboardIcon} /> |
|
</Box> |
|
<Box flexGrow={1} className={classes.text}> |
|
<BodyText text="Dashboard" /> |
|
</Box> |
|
</Box> |
|
</ListItem> |
|
{ICONS.map( |
|
(icon): JSX.Element => ( |
|
<ListItem |
|
button |
|
key={icon.image} |
|
component="a" |
|
href={ |
|
icon.uri.search(/^https?:/) !== -1 |
|
? icon.uri |
|
: `${process.env.NEXT_PUBLIC_API_URL}${icon.uri}` |
|
} |
|
> |
|
<Box display="flex" flexDirection="row" width="100%"> |
|
<Box> |
|
<img |
|
alt="" |
|
key="icon" |
|
src={icon.image} |
|
// eslint-disable-next-line react/jsx-props-no-spreading |
|
{...ICON_SIZE} |
|
/> |
|
</Box> |
|
<Box flexGrow={1} className={classes.text}> |
|
<BodyText text={icon.text} /> |
|
</Box> |
|
</Box> |
|
</ListItem> |
|
), |
|
)} |
|
</List> |
|
</div> |
|
</Drawer> |
|
); |
|
}; |
|
|
|
export default AnvilDrawer;
|
|
|