aboutsummaryrefslogtreecommitdiff
path: root/modern/src/components/SideNav.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2021-07-12 17:05:17 -0700
committerGitHub <noreply@github.com>2021-07-12 17:05:17 -0700
commit13a16a9ce640060b87ee00955c99855e9e4e2fe2 (patch)
treef742b820257f3e15c90fc545f20fa4f7f06a7821 /modern/src/components/SideNav.js
parentae822a2a39a38e3f3715c4573835b0ecd8646fa4 (diff)
parentea4ec2d769866db3490514b429cd95d314d19141 (diff)
downloadetbsa-traccar-web-13a16a9ce640060b87ee00955c99855e9e4e2fe2.tar.gz
etbsa-traccar-web-13a16a9ce640060b87ee00955c99855e9e4e2fe2.tar.bz2
etbsa-traccar-web-13a16a9ce640060b87ee00955c99855e9e4e2fe2.zip
Merge pull request #874 from dkyeremeh/group-config
Configurations And settings
Diffstat (limited to 'modern/src/components/SideNav.js')
-rw-r--r--modern/src/components/SideNav.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/modern/src/components/SideNav.js b/modern/src/components/SideNav.js
new file mode 100644
index 0000000..bcf8ecd
--- /dev/null
+++ b/modern/src/components/SideNav.js
@@ -0,0 +1,34 @@
+import React from 'react';
+import {
+ List, ListItem, ListItemText, ListItemIcon, Divider, ListSubheader,
+} from '@material-ui/core';
+import { Link, useLocation } from 'react-router-dom';
+
+const SideNav = ({ routes }) => {
+ const location = useLocation();
+
+ return (
+ <List disablePadding style={{ paddingTop: '16px' }}>
+ {routes.map((route) => (route.subheader ? (
+ <>
+ <Divider />
+ <ListSubheader>{route.subheader}</ListSubheader>
+ </>
+ ) : (
+ <ListItem
+ disableRipple
+ component={Link}
+ key={route.href || route.subheader}
+ button
+ to={route.href}
+ selected={location.pathname.match(route.match || route.href)}
+ >
+ <ListItemIcon>{route.icon}</ListItemIcon>
+ <ListItemText primary={route.name} />
+ </ListItem>
+ )))}
+ </List>
+ );
+};
+
+export default SideNav;