feat: consolidated theme switching code
parent
d0bd983ee3
commit
177e2df768
@ -1,45 +0,0 @@
|
||||
import { Dispatch } from 'redux';
|
||||
import { applyTheme } from '../../state/ducks/theme';
|
||||
import { ThemeStateType } from '../../themes/constants/colors';
|
||||
import { switchHtmlToDarkTheme, switchHtmlToLightTheme } from '../../themes/SessionTheme';
|
||||
import { switchTheme } from '../../themes/switchTheme';
|
||||
|
||||
export async function switchThemeTo(
|
||||
theme: ThemeStateType,
|
||||
dispatch: Dispatch | null,
|
||||
mainWindow: boolean = true
|
||||
) {
|
||||
if (mainWindow) {
|
||||
await window.setTheme(theme);
|
||||
}
|
||||
|
||||
let newTheme: ThemeStateType | null = null;
|
||||
|
||||
switch (theme) {
|
||||
case 'classic-dark':
|
||||
switchHtmlToDarkTheme();
|
||||
newTheme = 'classic-dark';
|
||||
break;
|
||||
case 'classic-light':
|
||||
switchHtmlToLightTheme();
|
||||
newTheme = 'classic-light';
|
||||
break;
|
||||
case 'ocean-dark':
|
||||
switchHtmlToDarkTheme();
|
||||
newTheme = 'ocean-dark';
|
||||
break;
|
||||
case 'ocean-light':
|
||||
switchHtmlToLightTheme();
|
||||
newTheme = 'ocean-light';
|
||||
break;
|
||||
default:
|
||||
window.log.warn('Unsupported theme: ', theme);
|
||||
}
|
||||
|
||||
if (newTheme) {
|
||||
switchTheme(newTheme, mainWindow);
|
||||
if (dispatch) {
|
||||
dispatch?.(applyTheme(newTheme));
|
||||
}
|
||||
}
|
||||
}
|
@ -1,23 +1,47 @@
|
||||
import { Dispatch } from 'redux';
|
||||
import { applyTheme } from '../state/ducks/theme';
|
||||
import { classicDark, classicLight, oceanDark, oceanLight } from '.';
|
||||
import { ThemeStateType } from './constants/colors';
|
||||
import { switchHtmlToDarkTheme, switchHtmlToLightTheme } from './SessionTheme';
|
||||
import { loadThemeColors } from './variableColors';
|
||||
|
||||
export async function switchTheme(theme: ThemeStateType) {
|
||||
export async function switchThemeTo(
|
||||
theme: ThemeStateType,
|
||||
dispatch: Dispatch | null,
|
||||
mainWindow: boolean = true
|
||||
) {
|
||||
if (mainWindow) {
|
||||
await window.setTheme(theme);
|
||||
}
|
||||
|
||||
let newTheme: ThemeStateType | null = null;
|
||||
|
||||
switch (theme) {
|
||||
case 'classic-light':
|
||||
loadThemeColors(classicLight);
|
||||
break;
|
||||
case 'classic-dark':
|
||||
switchHtmlToDarkTheme();
|
||||
loadThemeColors(classicDark);
|
||||
newTheme = 'classic-dark';
|
||||
break;
|
||||
case 'ocean-light':
|
||||
loadThemeColors(oceanLight);
|
||||
case 'classic-light':
|
||||
switchHtmlToLightTheme();
|
||||
loadThemeColors(classicLight);
|
||||
newTheme = 'classic-light';
|
||||
break;
|
||||
case 'ocean-dark':
|
||||
switchHtmlToDarkTheme();
|
||||
loadThemeColors(oceanDark);
|
||||
newTheme = 'ocean-dark';
|
||||
break;
|
||||
default:
|
||||
window.log.warn('Unsupported theme:', theme);
|
||||
case 'ocean-light':
|
||||
switchHtmlToLightTheme();
|
||||
loadThemeColors(oceanLight);
|
||||
newTheme = 'ocean-light';
|
||||
break;
|
||||
default:
|
||||
window.log.warn('Unsupported theme: ', theme);
|
||||
}
|
||||
|
||||
if (dispatch && newTheme) {
|
||||
dispatch(applyTheme(newTheme));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue