diff options
Diffstat (limited to 'modern/src/components/reports')
-rw-r--r-- | modern/src/components/reports/ReportNavbar.js | 26 | ||||
-rw-r--r-- | modern/src/components/reports/ReportSidebar.js | 29 |
2 files changed, 55 insertions, 0 deletions
diff --git a/modern/src/components/reports/ReportNavbar.js b/modern/src/components/reports/ReportNavbar.js new file mode 100644 index 00000000..ac01fad9 --- /dev/null +++ b/modern/src/components/reports/ReportNavbar.js @@ -0,0 +1,26 @@ +import React from 'react'; +import { AppBar, Toolbar, Typography, IconButton } from '@material-ui/core'; +import MenuIcon from '@material-ui/icons/Menu'; +import t from '../../common/localization'; + +const ReportNavbar = ({ setOpenDrawer, reportTitle }) => { + + return ( + <AppBar position="fixed" color="inherit"> + <Toolbar> + <IconButton + color="inherit" + aria-label="open drawer" + edge="start" + onClick={() => setOpenDrawer(true)}> + <MenuIcon /> + </IconButton> + <Typography variant="h6" noWrap> + {t('reportTitle')} {` / ${reportTitle}`} + </Typography> + </Toolbar> + </AppBar> + ) +} + +export default ReportNavbar; diff --git a/modern/src/components/reports/ReportSidebar.js b/modern/src/components/reports/ReportSidebar.js new file mode 100644 index 00000000..90e20c05 --- /dev/null +++ b/modern/src/components/reports/ReportSidebar.js @@ -0,0 +1,29 @@ +import React from 'react'; +import { List, ListItem, ListItemText, ListItemIcon } from '@material-ui/core'; +import { Link, useLocation } from 'react-router-dom'; + +const ReportSidebar = ({ routes }) => { + + const location = useLocation(); + + return ( + <List disablePadding style={{paddingTop: '16px'}}> + {routes.map((route, index) => ( + <ListItem + disableRipple + component={Link} + key={`${route}${index}`} + button + to={route.href} + selected={route.href === location.pathname}> + <ListItemIcon> + {route.icon} + </ListItemIcon> + <ListItemText primary={route.name} /> + </ListItem> + ))} + </List> + ) +} + +export default ReportSidebar; |