aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/js/theme/ThemeStore.ts
blob: 0f283c980e898b268e727a48184eaac61e485ac6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import {
  Theme,
  createTheme,
  responsiveFontSizes,
} from '@material-ui/core/styles';
import { makeAutoObservable } from 'mobx';

import {
  EditorTheme,
  EditorThemeData,
  DEFAULT_THEME,
  EDITOR_THEMES,
} from './EditorTheme';

export class ThemeStore {
  currentTheme: EditorTheme = DEFAULT_THEME;

  constructor() {
    makeAutoObservable(this);
  }

  toggleDarkMode(): void {
    this.currentTheme = this.currentThemeData.toggleDarkMode;
  }

  private get currentThemeData(): EditorThemeData {
    return EDITOR_THEMES[this.currentTheme];
  }

  get materialUiTheme(): Theme {
    const themeData = this.currentThemeData;
    const materialUiTheme = createTheme({
      palette: {
        mode: themeData.paletteMode,
        background: {
          default: themeData.background,
          paper: themeData.paper,
        },
        primary: {
          main: themeData.primary,
        },
        secondary: {
          main: themeData.secondary,
        },
      },
    });
    return responsiveFontSizes(materialUiTheme);
  }

  get codeMirrorTheme(): string {
    return `problem-${this.currentThemeData.className}`;
  }
}