mirror of
https://gh.wpcy.net/https://github.com/elementor/one-click-accessibility.git
synced 2026-04-26 20:18:15 +08:00
39 lines
857 B
JavaScript
39 lines
857 B
JavaScript
import Box from '@elementor/ui/Box';
|
|
import Drawer from '@elementor/ui/Drawer';
|
|
import { MyAccountMenu, SidebarAppBar, SidebarMenu } from '@ea11y/components';
|
|
import { useSettings } from '@ea11y/hooks';
|
|
import { QuotaBar } from '@ea11y/layouts';
|
|
|
|
const Sidebar = () => {
|
|
const { openSidebar } = useSettings();
|
|
|
|
return (
|
|
<Drawer
|
|
variant="permanent"
|
|
open={openSidebar}
|
|
sx={{ width: 'auto' }}
|
|
PaperProps={{
|
|
sx: {
|
|
position: 'relative',
|
|
width: !openSidebar ? '120px' : '260px',
|
|
transition: 'all 0.3s',
|
|
height: '100%',
|
|
justifyContent: 'space-between',
|
|
paddingTop: 0,
|
|
overflow: 'visible',
|
|
},
|
|
}}
|
|
>
|
|
<Box padding={1.5}>
|
|
<SidebarAppBar />
|
|
<SidebarMenu />
|
|
</Box>
|
|
<Box>
|
|
<QuotaBar />
|
|
<MyAccountMenu drawerState={openSidebar} />
|
|
</Box>
|
|
</Drawer>
|
|
);
|
|
};
|
|
|
|
export default Sidebar;
|