source: src/theme/index.tsx

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

add customer

  • Property mode set to 100644
File size: 2.4 KB
Line 
1'use client';
2
3import merge from 'lodash/merge';
4import { useMemo } from 'react';
5// @mui
6import CssBaseline from '@mui/material/CssBaseline';
7import { createTheme, ThemeProvider as MuiThemeProvider, ThemeOptions } from '@mui/material/styles';
8// components
9import { useSettingsContext } from 'src/components/settings';
10// system
11import { palette } from './palette';
12import { shadows } from './shadows';
13import { typography } from './typography';
14import { customShadows } from './custom-shadows';
15import { componentsOverrides } from './overrides';
16// options
17import { presets } from './options/presets';
18import { darkMode } from './options/dark-mode';
19import { contrast } from './options/contrast';
20import RTL, { direction } from './options/right-to-left';
21//
22import NextAppDirEmotionCacheProvider from './next-emotion-cache';
23
24// ----------------------------------------------------------------------
25
26type Props = {
27 children: React.ReactNode;
28};
29
30export default function ThemeProvider({ children }: Props) {
31 const settings = useSettingsContext();
32
33 const darkModeOption = darkMode(settings.themeMode);
34
35 const presetsOption = presets(settings.themeColorPresets);
36
37 const contrastOption = contrast(settings.themeContrast === 'bold', settings.themeMode);
38
39 const directionOption = direction(settings.themeDirection);
40
41 const baseOption = useMemo(
42 () => ({
43 palette: palette('light'),
44 shadows: shadows('light'),
45 customShadows: customShadows('light'),
46 typography,
47 shape: { borderRadius: 8 },
48 }),
49 []
50 );
51
52 const memoizedValue = useMemo(
53 () =>
54 merge(
55 // Base
56 baseOption,
57 // Direction: remove if not in use
58 directionOption,
59 // Dark mode: remove if not in use
60 darkModeOption,
61 // Presets: remove if not in use
62 presetsOption,
63 // Contrast: remove if not in use
64 contrastOption.theme
65 ),
66 [baseOption, directionOption, darkModeOption, presetsOption, contrastOption.theme]
67 );
68
69 const theme = createTheme(memoizedValue as ThemeOptions);
70
71 theme.components = merge(componentsOverrides(theme), contrastOption.components);
72
73 return (
74 <NextAppDirEmotionCacheProvider options={{ key: 'css' }}>
75 <MuiThemeProvider theme={theme}>
76 <RTL themeDirection={settings.themeDirection}>
77 <CssBaseline />
78 {children}
79 </RTL>
80 </MuiThemeProvider>
81 </NextAppDirEmotionCacheProvider>
82 );
83}
Note: See TracBrowser for help on using the repository browser.