File size: 1,462 Bytes
95b5a04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | // material-ui
import { styled } from '@mui/material/styles';
import Drawer from '@mui/material/Drawer';
// project imports
import { drawerWidth } from 'store/constant';
function openedMixin(theme) {
return {
width: drawerWidth,
borderRight: 'none',
zIndex: 1099,
background: theme.vars.palette.background.default,
overflowX: 'hidden',
boxShadow: 'none',
transition: theme.transitions.create('width', {
easing: theme.transitions.easing.sharp,
duration: theme.transitions.duration.enteringScreen + 200
})
};
}
function closedMixin(theme) {
return {
borderRight: 'none',
zIndex: 1099,
background: theme.vars.palette.background.default,
overflowX: 'hidden',
width: 72,
transition: theme.transitions.create('width', {
easing: theme.transitions.easing.sharp,
duration: theme.transitions.duration.leavingScreen + 200
})
};
}
// ==============================|| DRAWER - MINI STYLED ||============================== //
const MiniDrawerStyled = styled(Drawer, { shouldForwardProp: (prop) => prop !== 'open' })(({ theme, open }) => ({
width: drawerWidth,
borderRight: '0px',
flexShrink: 0,
whiteSpace: 'nowrap',
boxSizing: 'border-box',
...(open && {
...openedMixin(theme),
'& .MuiDrawer-paper': openedMixin(theme)
}),
...(!open && {
...closedMixin(theme),
'& .MuiDrawer-paper': closedMixin(theme)
})
}));
export default MiniDrawerStyled;
|