source: src/components/settings/drawer/settings-drawer.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 4.9 KB
Line 
1'use client';
2
3// @mui
4import { useTheme } from '@mui/material/styles';
5import Stack from '@mui/material/Stack';
6import Badge from '@mui/material/Badge';
7import Divider from '@mui/material/Divider';
8import Tooltip from '@mui/material/Tooltip';
9import IconButton from '@mui/material/IconButton';
10import Typography from '@mui/material/Typography';
11import Drawer, { drawerClasses } from '@mui/material/Drawer';
12// theme
13import { paper } from 'src/theme/css';
14//
15import Iconify from '../../iconify';
16import Scrollbar from '../../scrollbar';
17//
18import { useSettingsContext } from '../context';
19import BaseOptions from './base-option';
20import LayoutOptions from './layout-options';
21import PresetsOptions from './presets-options';
22import StretchOptions from './stretch-options';
23import FullScreenOption from './fullscreen-option';
24
25// ----------------------------------------------------------------------
26
27export default function SettingsDrawer() {
28 const theme = useTheme();
29
30 const settings = useSettingsContext();
31
32 const labelStyles = {
33 mb: 1.5,
34 color: 'text.disabled',
35 fontWeight: 'fontWeightSemiBold',
36 };
37
38 const renderHead = (
39 <Stack
40 direction="row"
41 alignItems="center"
42 justifyContent="space-between"
43 sx={{ py: 2, pr: 1, pl: 2.5 }}
44 >
45 <Typography variant="h6" sx={{ flexGrow: 1 }}>
46 Settings
47 </Typography>
48
49 <Tooltip title="Reset">
50 <IconButton onClick={settings.onReset}>
51 <Badge color="error" variant="dot" invisible={!settings.canReset}>
52 <Iconify icon="solar:restart-bold" />
53 </Badge>
54 </IconButton>
55 </Tooltip>
56
57 <IconButton onClick={settings.onClose}>
58 <Iconify icon="mingcute:close-line" />
59 </IconButton>
60 </Stack>
61 );
62
63 const renderMode = (
64 <div>
65 <Typography variant="caption" component="div" sx={{ ...labelStyles }}>
66 Mode
67 </Typography>
68
69 <BaseOptions
70 value={settings.themeMode}
71 onChange={(newValue: string) => settings.onUpdate('themeMode', newValue)}
72 options={['light', 'dark']}
73 icons={['sun', 'moon']}
74 />
75 </div>
76 );
77
78 const renderContrast = (
79 <div>
80 <Typography variant="caption" component="div" sx={{ ...labelStyles }}>
81 Contrast
82 </Typography>
83
84 <BaseOptions
85 value={settings.themeContrast}
86 onChange={(newValue: string) => settings.onUpdate('themeContrast', newValue)}
87 options={['default', 'bold']}
88 icons={['contrast', 'contrast_bold']}
89 />
90 </div>
91 );
92
93 const renderDirection = (
94 <div>
95 <Typography variant="caption" component="div" sx={{ ...labelStyles }}>
96 Direction
97 </Typography>
98
99 <BaseOptions
100 value={settings.themeDirection}
101 onChange={(newValue: string) => settings.onUpdate('themeDirection', newValue)}
102 options={['ltr', 'rtl']}
103 icons={['align_left', 'align_right']}
104 />
105 </div>
106 );
107
108 const renderLayout = (
109 <div>
110 <Typography variant="caption" component="div" sx={{ ...labelStyles }}>
111 Layout
112 </Typography>
113
114 <LayoutOptions
115 value={settings.themeLayout}
116 onChange={(newValue: string) => settings.onUpdate('themeLayout', newValue)}
117 options={['vertical', 'horizontal', 'mini']}
118 />
119 </div>
120 );
121
122 const renderStretch = (
123 <div>
124 <Typography
125 variant="caption"
126 component="div"
127 sx={{
128 ...labelStyles,
129 display: 'inline-flex',
130 alignItems: 'center',
131 }}
132 >
133 Stretch
134 <Tooltip title="Only available at large resolutions > 1600px (xl)">
135 <Iconify icon="eva:info-outline" width={16} sx={{ ml: 0.5 }} />
136 </Tooltip>
137 </Typography>
138
139 <StretchOptions
140 value={settings.themeStretch}
141 onChange={() => settings.onUpdate('themeStretch', !settings.themeStretch)}
142 />
143 </div>
144 );
145
146 const renderPresets = (
147 <div>
148 <Typography variant="caption" component="div" sx={{ ...labelStyles }}>
149 Presets
150 </Typography>
151
152 <PresetsOptions
153 value={settings.themeColorPresets}
154 onChange={(newValue: string) => settings.onUpdate('themeColorPresets', newValue)}
155 />
156 </div>
157 );
158
159 return (
160 <Drawer
161 anchor="right"
162 open={settings.open}
163 onClose={settings.onClose}
164 slotProps={{
165 backdrop: { invisible: true },
166 }}
167 sx={{
168 [`& .${drawerClasses.paper}`]: {
169 ...paper({ theme, bgcolor: theme.palette.background.default }),
170 width: 280,
171 },
172 }}
173 >
174 {renderHead}
175
176 <Divider sx={{ borderStyle: 'dashed' }} />
177
178 <Scrollbar>
179 <Stack spacing={3} sx={{ p: 3 }}>
180 {renderMode}
181
182 {renderContrast}
183
184 {renderDirection}
185
186 {renderLayout}
187
188 {renderStretch}
189
190 {renderPresets}
191 </Stack>
192 </Scrollbar>
193
194 <FullScreenOption />
195 </Drawer>
196 );
197}
Note: See TracBrowser for help on using the repository browser.