Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
81 lines
2.1 KiB
TypeScript
81 lines
2.1 KiB
TypeScript
import * as React from 'react';
|
|
import Box from '@mui/joy/Box';
|
|
import Drawer from '@mui/joy/Drawer';
|
|
import ButtonGroup from '@mui/joy/ButtonGroup';
|
|
import Button from '@mui/joy/Button';
|
|
import List from '@mui/joy/List';
|
|
import Divider from '@mui/joy/Divider';
|
|
import ListItem from '@mui/joy/ListItem';
|
|
import ListItemButton from '@mui/joy/ListItemButton';
|
|
|
|
type Anchor = 'top' | 'left' | 'bottom' | 'right';
|
|
|
|
export default function DrawerAnchor() {
|
|
const [state, setState] = React.useState({
|
|
top: false,
|
|
left: false,
|
|
bottom: false,
|
|
right: false,
|
|
});
|
|
|
|
const toggleDrawer =
|
|
(anchor: Anchor, open: boolean) =>
|
|
(event: React.KeyboardEvent | React.MouseEvent) => {
|
|
if (
|
|
event.type === 'keydown' &&
|
|
((event as React.KeyboardEvent).key === 'Tab' ||
|
|
(event as React.KeyboardEvent).key === 'Shift')
|
|
) {
|
|
return;
|
|
}
|
|
|
|
setState({ ...state, [anchor]: open });
|
|
};
|
|
|
|
const list = (anchor: Anchor) => (
|
|
<Box
|
|
role="presentation"
|
|
onClick={toggleDrawer(anchor, false)}
|
|
onKeyDown={toggleDrawer(anchor, false)}
|
|
>
|
|
<List>
|
|
{['Inbox', 'Starred', 'Send email', 'Drafts'].map((text) => (
|
|
<ListItem key={text}>
|
|
<ListItemButton>{text}</ListItemButton>
|
|
</ListItem>
|
|
))}
|
|
</List>
|
|
<Divider />
|
|
<List>
|
|
{['All mail', 'Trash', 'Spam'].map((text) => (
|
|
<ListItem key={text}>
|
|
<ListItemButton>{text}</ListItemButton>
|
|
</ListItem>
|
|
))}
|
|
</List>
|
|
</Box>
|
|
);
|
|
|
|
return (
|
|
<React.Fragment>
|
|
<ButtonGroup variant="outlined">
|
|
{(['top', 'right', 'bottom', 'left'] as const).map((anchor) => (
|
|
<Button key={anchor} onClick={toggleDrawer(anchor, true)}>
|
|
{anchor}
|
|
</Button>
|
|
))}
|
|
</ButtonGroup>
|
|
{(['top', 'right', 'bottom', 'left'] as const).map((anchor) => (
|
|
<Drawer
|
|
key={anchor}
|
|
anchor={anchor}
|
|
open={state[anchor]}
|
|
onClose={toggleDrawer(anchor, false)}
|
|
>
|
|
{list(anchor)}
|
|
</Drawer>
|
|
))}
|
|
</React.Fragment>
|
|
);
|
|
}
|