'use client'; // @mui import { useTheme } from '@mui/material/styles'; import Stack from '@mui/material/Stack'; import Badge from '@mui/material/Badge'; import Divider from '@mui/material/Divider'; import Tooltip from '@mui/material/Tooltip'; import IconButton from '@mui/material/IconButton'; import Typography from '@mui/material/Typography'; import Drawer, { drawerClasses } from '@mui/material/Drawer'; // theme import { paper } from 'src/theme/css'; // import Iconify from '../../iconify'; import Scrollbar from '../../scrollbar'; // import { useSettingsContext } from '../context'; import BaseOptions from './base-option'; import LayoutOptions from './layout-options'; import PresetsOptions from './presets-options'; import StretchOptions from './stretch-options'; import FullScreenOption from './fullscreen-option'; // ---------------------------------------------------------------------- export default function SettingsDrawer() { const theme = useTheme(); const settings = useSettingsContext(); const labelStyles = { mb: 1.5, color: 'text.disabled', fontWeight: 'fontWeightSemiBold', }; const renderHead = ( Settings ); const renderMode = (
Mode settings.onUpdate('themeMode', newValue)} options={['light', 'dark']} icons={['sun', 'moon']} />
); const renderContrast = (
Contrast settings.onUpdate('themeContrast', newValue)} options={['default', 'bold']} icons={['contrast', 'contrast_bold']} />
); const renderDirection = (
Direction settings.onUpdate('themeDirection', newValue)} options={['ltr', 'rtl']} icons={['align_left', 'align_right']} />
); const renderLayout = (
Layout settings.onUpdate('themeLayout', newValue)} options={['vertical', 'horizontal', 'mini']} />
); const renderStretch = (
Stretch settings.onUpdate('themeStretch', !settings.themeStretch)} />
); const renderPresets = (
Presets settings.onUpdate('themeColorPresets', newValue)} />
); return ( {renderHead} {renderMode} {renderContrast} {renderDirection} {renderLayout} {renderStretch} {renderPresets} ); }