added a help button at the bottom of the scrollbar

This commit is contained in:
Carter 2026-06-08 16:19:46 -06:00
parent 7f1b907fa0
commit 9d6af5dd16

View file

@ -1,6 +1,7 @@
import { ChevronRight, Code, Grain, Memory, People, Person, SyncAlt, TapAndPlay } from "@mui/icons-material"; import { ChevronRight, Code, Grain, HelpOutline, Memory, People, Person, SyncAlt, TapAndPlay } from "@mui/icons-material";
import ChevronLeft from "@mui/icons-material/ChevronLeft"; import ChevronLeft from "@mui/icons-material/ChevronLeft";
import { import {
Box,
darken, darken,
Divider, Divider,
Grid2 as Grid, Grid2 as Grid,
@ -529,7 +530,8 @@ export default function SideNavigator(props: Props) {
onClose={onClose} onClose={onClose}
sx={{ pointerEvents: isMobile&&!open ? "none" : "auto"}} sx={{ pointerEvents: isMobile&&!open ? "none" : "auto"}}
> >
<Toolbar> <Box sx={{ display: "flex", flexDirection: "column", height: "100%", overflow: "hidden" }}>
<Toolbar disableGutters sx={{ px: 1 }}>
<Grid container direction="row" justifyContent={"flex-end"}> <Grid container direction="row" justifyContent={"flex-end"}>
<Grid> <Grid>
<IconButton <IconButton
@ -544,8 +546,21 @@ export default function SideNavigator(props: Props) {
</Grid> </Grid>
</Toolbar> </Toolbar>
<Divider /> <Divider />
{/* {isAuthenticated || isOffline() ? authenticatedSideMenu() : unauthenticatedSideMenu()} */} <Box sx={{ flex: 1, overflowY: "auto", scrollbarWidth: "none", "&::-webkit-scrollbar": { display: "none" } }}>
{isAuthenticated && authenticatedSideMenu()} {isAuthenticated && authenticatedSideMenu()}
</Box>
<Divider />
<List>
<Tooltip title="Help" placement="right">
<ListItemButton classes={{ root: classes.listItem }}>
<ListItemIcon>
<HelpOutline style={{ color: getThemeType() === "light" ? "black" : undefined }} />
</ListItemIcon>
{open && <ListItemText primary="Help" />}
</ListItemButton>
</Tooltip>
</List>
</Box>
</SwipeableDrawer> </SwipeableDrawer>
); );
} }