1 | 'use client';
|
---|
2 |
|
---|
3 | import merge from 'lodash/merge';
|
---|
4 | import { useMemo } from 'react';
|
---|
5 | // @mui
|
---|
6 | import CssBaseline from '@mui/material/CssBaseline';
|
---|
7 | import { createTheme, ThemeProvider as MuiThemeProvider, ThemeOptions } from '@mui/material/styles';
|
---|
8 | // components
|
---|
9 | import { useSettingsContext } from 'src/components/settings';
|
---|
10 | // system
|
---|
11 | import { palette } from './palette';
|
---|
12 | import { shadows } from './shadows';
|
---|
13 | import { typography } from './typography';
|
---|
14 | import { customShadows } from './custom-shadows';
|
---|
15 | import { componentsOverrides } from './overrides';
|
---|
16 | // options
|
---|
17 | import { presets } from './options/presets';
|
---|
18 | import { darkMode } from './options/dark-mode';
|
---|
19 | import { contrast } from './options/contrast';
|
---|
20 | import RTL, { direction } from './options/right-to-left';
|
---|
21 | //
|
---|
22 | import NextAppDirEmotionCacheProvider from './next-emotion-cache';
|
---|
23 |
|
---|
24 | // ----------------------------------------------------------------------
|
---|
25 |
|
---|
26 | type Props = {
|
---|
27 | children: React.ReactNode;
|
---|
28 | };
|
---|
29 |
|
---|
30 | export 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 | }
|
---|