diff options
author | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:58:45 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:59:07 -0700 |
commit | d3c7705bedebd65c94f9eea691aaf2fe03b0cafe (patch) | |
tree | 5f98b3d9bbbd4fe8067b5a334e84aff008b8db22 /modern/src/common/components/SideNav.jsx | |
parent | 0161ae449d4a7bd0781c0665d663353663ab0faf (diff) | |
download | trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.gz trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.bz2 trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.zip |
Move to Vite
Diffstat (limited to 'modern/src/common/components/SideNav.jsx')
-rw-r--r-- | modern/src/common/components/SideNav.jsx | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/modern/src/common/components/SideNav.jsx b/modern/src/common/components/SideNav.jsx new file mode 100644 index 00000000..97968bd1 --- /dev/null +++ b/modern/src/common/components/SideNav.jsx @@ -0,0 +1,33 @@ +import React, { Fragment } from 'react'; +import { + List, ListItemText, ListItemIcon, Divider, ListSubheader, ListItemButton, +} from '@mui/material'; +import { Link, useLocation } from 'react-router-dom'; + +const SideNav = ({ routes }) => { + const location = useLocation(); + + return ( + <List disablePadding style={{ paddingTop: '16px' }}> + {routes.map((route) => (route.subheader ? ( + <Fragment key={route.subheader}> + <Divider /> + <ListSubheader>{route.subheader}</ListSubheader> + </Fragment> + ) : ( + <ListItemButton + disableRipple + component={Link} + key={route.href} + to={route.href} + selected={location.pathname.match(route.match || route.href) !== null} + > + <ListItemIcon>{route.icon}</ListItemIcon> + <ListItemText primary={route.name} /> + </ListItemButton> + )))} + </List> + ); +}; + +export default SideNav; |