one-click-accessibility/modules/settings/assets/js/layouts/sidebar.js
2025-05-20 23:50:27 +05:30

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;