[5d6f37a] | 1 | // @mui
|
---|
| 2 | import { useTheme } from '@mui/material/styles';
|
---|
| 3 | import IconButton, { IconButtonProps } from '@mui/material/IconButton';
|
---|
| 4 | // hooks
|
---|
| 5 | import { useResponsive } from 'src/hooks/use-responsive';
|
---|
| 6 | // theme
|
---|
| 7 | import { bgBlur } from 'src/theme/css';
|
---|
| 8 | // components
|
---|
| 9 | import Iconify from 'src/components/iconify';
|
---|
| 10 | import { useSettingsContext } from 'src/components/settings';
|
---|
| 11 | //
|
---|
| 12 | import { NAV } from '../config-layout';
|
---|
| 13 |
|
---|
| 14 | // ----------------------------------------------------------------------
|
---|
| 15 |
|
---|
| 16 | export default function NavToggleButton({ sx, ...other }: IconButtonProps) {
|
---|
| 17 | const theme = useTheme();
|
---|
| 18 |
|
---|
| 19 | const settings = useSettingsContext();
|
---|
| 20 |
|
---|
| 21 | const lgUp = useResponsive('up', 'lg');
|
---|
| 22 |
|
---|
| 23 | if (!lgUp) {
|
---|
| 24 | return null;
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | return (
|
---|
| 28 | <IconButton
|
---|
| 29 | size="small"
|
---|
| 30 | onClick={() =>
|
---|
| 31 | settings.onUpdate('themeLayout', settings.themeLayout === 'vertical' ? 'mini' : 'vertical')
|
---|
| 32 | }
|
---|
| 33 | sx={{
|
---|
| 34 | p: 0.5,
|
---|
| 35 | top: 32,
|
---|
| 36 | position: 'fixed',
|
---|
| 37 | left: NAV.W_VERTICAL - 12,
|
---|
| 38 | zIndex: theme.zIndex.appBar + 1,
|
---|
| 39 | border: `dashed 1px ${theme.palette.divider}`,
|
---|
| 40 | ...bgBlur({ opacity: 0.48, color: theme.palette.background.default }),
|
---|
| 41 | '&:hover': {
|
---|
| 42 | bgcolor: 'background.default',
|
---|
| 43 | },
|
---|
| 44 | ...sx,
|
---|
| 45 | }}
|
---|
| 46 | {...other}
|
---|
| 47 | >
|
---|
| 48 | <Iconify
|
---|
| 49 | width={16}
|
---|
| 50 | icon={
|
---|
| 51 | settings.themeLayout === 'vertical'
|
---|
| 52 | ? 'eva:arrow-ios-back-fill'
|
---|
| 53 | : 'eva:arrow-ios-forward-fill'
|
---|
| 54 | }
|
---|
| 55 | />
|
---|
| 56 | </IconButton>
|
---|
| 57 | );
|
---|
| 58 | }
|
---|