@material-ui/icons#Dashboard JavaScript Examples
The following examples show how to use
@material-ui/icons#Dashboard.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Sidebar.js From quizdom with MIT License | 5 votes |
function Sidebar() {
const [signOut, setSignOut] = useState(false)
const SidedbarData = [
{
title: 'Dashboard',
path: '/dashboard',
icon: <Dashboard />,
CName: 'nav-text',
},
{
title: 'Join Quiz',
path: '/join-quiz',
icon: <MeetingRoom />,
CName: 'nav-text',
},
{
title: 'Create Quiz',
path: '/create-quiz',
icon: <CreateNewFolder />,
CName: 'nav-text',
},
]
const [sidebar, setSidebar] = useState(false)
const showSidebar = () => setSidebar(!sidebar)
if (signOut) return <Redirect to='/' />
return (
<div>
<Icon className='menu-bars' onClick={showSidebar}>
<MenuRounded />
</Icon>
{/* <FaIcons.FaBars onClick={} /> */}
<nav className={sidebar ? 'nav-menu active' : 'nav-menu'}>
<ul className='nav-menu-items' onClick={showSidebar}>
<li className='navbar-toggle'>
<Icon>
<MenuOpenRounded fontSize='large' />
</Icon>
</li>
{SidedbarData.map((item, index) => {
return (
<li key={index} className='nav-text'>
<Link to={item.path}>
<Icon>{item.icon}</Icon>
<span className='nav-item-title'>{item.title}</span>
</Link>
</li>
)
})}
{/* Sign Out Button */}
<li className='nav-text sign-out'>
<button
onClick={() => {
console.log('clicked')
// setUser({})
firebase.auth().signOut()
setSignOut(true)
}}
>
<Icon>
<ExitToApp />
</Icon>
<span className='nav-item-title'>{'SignOut'}</span>
</button>
</li>
</ul>
</nav>
</div>
)
}
Example #2
Source File: Sidebar.jsx From Edlib with GNU General Public License v3.0 | 4 votes |
Sidebar = () => {
const classes = useStyles();
const history = useHistory();
const location = useLocation();
const [currentlyExpandedName, setCurrentlyExpandedName] =
React.useState(null);
React.useEffect(() => {
setCurrentlyExpandedName(null);
}, [location]);
const links = [
{ name: 'Dashboard', to: '/dashboard', icon: <Dashboard /> },
{ name: 'Content Author', to: '/content-author', icon: <Settings /> },
{
name: 'Settings',
to: '/settings',
icon: <Settings />,
subLinks: [
{
name: 'External applications',
to: '/external-applications',
},
],
},
{
name: 'Monitoring',
to: '/monitoring',
icon: <LocalOffer />,
subLinks: [{ name: 'Status of services', to: '/system-status' }],
},
{
name: 'Jobs',
to: '/jobs',
icon: <LocalOffer />,
subLinks: [
{ name: 'Resources', to: '/resources' },
{ name: 'Auth migration', to: '/auth-migration' },
],
},
{
name: 'Analytics',
to: '/analytics',
icon: <Assessment />,
subLinks: [{ name: 'Dashboard', to: '/dashboard' }],
},
];
return (
<List dense>
{links.map(({ name, icon, to, subLinks }) => {
const isInPath = !!matchPath(location.pathname, {
path: to,
strict: false,
});
const isExpanded = isInPath || currentlyExpandedName === name;
if (subLinks) {
return (
<React.Fragment key={name}>
<ListItem
button
selected={isInPath}
onClick={() => {
setCurrentlyExpandedName(
currentlyExpandedName === name
? null
: name
);
}}
>
{icon && <ListItemIcon>{icon}</ListItemIcon>}
<ListItemText
primary={name}
primaryTypographyProps={{
className: classes.parentItem,
}}
inset={!icon}
/>
{isExpanded ? <ExpandLess /> : <ExpandMore />}
</ListItem>
<Collapse
in={isExpanded}
timeout="auto"
unmountOnExit
>
<List component="div" disablePadding dense>
{subLinks.map((subLink) => {
const subTo = to + subLink.to;
const isInSubPath = !!matchPath(
location.pathname,
{
path: subTo,
strict: false,
}
);
return (
<ListItem
key={subLink.name}
button
onClick={() =>
history.push(subTo)
}
selected={isInSubPath}
>
<ListItemText
primary={subLink.name}
inset
/>
</ListItem>
);
})}
</List>
</Collapse>
</React.Fragment>
);
}
return (
<ListItem
key={name}
button
selected={isInPath}
onClick={() => history.push(to)}
>
{icon && <ListItemIcon>{icon}</ListItemIcon>}
<ListItemText
primary={name}
primaryTypographyProps={{
className: classes.parentItem,
}}
inset={!icon}
/>
</ListItem>
);
})}
</List>
);
}