Last active
May 9, 2019 21:08
-
-
Save charliecalvert/5cff61d7888cfd4097076835c5bc45c2 to your computer and use it in GitHub Desktop.
MaterialUi ElfHeader
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from "react"; | |
import PropTypes from 'prop-types'; | |
import { withStyles } from '@material-ui/core/styles'; | |
import AppBar from '@material-ui/core/AppBar'; | |
import Drawer from '@material-ui/core/Drawer'; | |
import IconButton from '@material-ui/core/IconButton'; | |
import Toolbar from '@material-ui/core/Toolbar'; | |
import Typography from '@material-ui/core/Typography'; | |
import MenuIcon from '@material-ui/icons/Menu'; | |
import Divider from '@material-ui/core/Divider'; | |
import List from '@material-ui/core/List'; | |
import { gitItems, demoItems } from './tileData'; | |
const styles = { | |
root: { | |
flexGrow: 1, | |
}, | |
menuButton: { | |
marginLeft: -18, | |
marginRight: 10, | |
}, | |
}; | |
/* | |
const handleToggles = () => { | |
return () => handleToggle(!open); // toggle the state to force render | |
}; | |
*/ | |
const ElfHeader = ({classes}) => { | |
const sideList = ( | |
<div className={classes.list}> | |
<List>{gitItems}</List> | |
<Divider /> | |
<List>{demoItems}</List> | |
</div> | |
); | |
const [open, setOpen] = useState(false); //boolean state | |
return ( | |
<div> | |
<div> | |
<AppBar position="static"> | |
<Toolbar> | |
<IconButton | |
className={classes.menuButton} | |
color="inherit" | |
aria-label="Menu" | |
onClick={() => setOpen(!open)} | |
> | |
<MenuIcon/> | |
</IconButton> | |
<Typography | |
variant="h6" | |
color="inherit" | |
className={classes.flex} | |
> | |
GitExplorer | |
</Typography> | |
</Toolbar> | |
</AppBar> | |
<Drawer open={open} onClose={() => {}}> | |
<div | |
role="button" | |
onClick={() => setOpen(!open)} | |
onKeyDown={() => setOpen(!open)} | |
> | |
{sideList} | |
</div> | |
</Drawer> | |
</div> | |
</div> | |
) | |
}; | |
ElfHeader.propTypes = { | |
classes: PropTypes.object.isRequired | |
}; | |
export default withStyles(styles)(ElfHeader); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment