Skip to content
Snippets Groups Projects
Commit 9a9a307d authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[ivette] process-level management of theme settings

parent c407268a
No related branches found
No related tags found
No related merge requests found
...@@ -85,6 +85,30 @@ export const { DEVEL } = System; ...@@ -85,6 +85,30 @@ export const { DEVEL } = System;
/** System platform */ /** System platform */
export const { platform } = System; export const { platform } = System;
// --------------------------------------------------------------------------
// --- Native Theme
// --------------------------------------------------------------------------
ipcMain.handle('dome.ipc.theme', () => {
return nativeTheme.shouldUseDarkColors ? 'dark' : 'light';
});
nativeTheme.on('updated', () => {
broadcast('dome.theme.updated');
});
function setNativeTheme(theme: string | undefined) {
switch (theme) {
case 'dark':
case 'light':
case 'system':
nativeTheme.themeSource = theme;
return;
default:
console.warn('[dome] unknown theme', theme);
}
}
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
// --- Settings // --- Settings
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
...@@ -208,7 +232,10 @@ function applyStorageSettings(event: IpcMainEvent, args: Patch[]) { ...@@ -208,7 +232,10 @@ function applyStorageSettings(event: IpcMainEvent, args: Patch[]) {
} }
function applyGlobalSettings(event: IpcMainEvent, args: Patch[]) { function applyGlobalSettings(event: IpcMainEvent, args: Patch[]) {
applyPatches(obtainGlobalSettings(), args); const settings: Store = obtainGlobalSettings();
applyPatches(settings, args);
const theme = settings['dome-color-theme'];
if (typeof (theme) === 'string') setNativeTheme(theme);
BrowserWindow.getAllWindows().forEach((w: BrowserWindow) => { BrowserWindow.getAllWindows().forEach((w: BrowserWindow) => {
const contents = w.webContents; const contents = w.webContents;
if (contents.id !== event.sender.id) { if (contents.id !== event.sender.id) {
...@@ -513,6 +540,7 @@ function showSettingsWindow() { ...@@ -513,6 +540,7 @@ function showSettingsWindow() {
function restoreDefaultSettings() { function restoreDefaultSettings() {
GlobalSettings = {}; GlobalSettings = {};
nativeTheme.themeSource = 'system';
if (DEVEL) saveGlobalSettings(); if (DEVEL) saveGlobalSettings();
WindowHandles.forEach((handle) => { WindowHandles.forEach((handle) => {
...@@ -620,28 +648,3 @@ ipcMain.handle( ...@@ -620,28 +648,3 @@ ipcMain.handle(
); );
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
// --- Native Theme
// --------------------------------------------------------------------------
// eslint-disable-next-line @typescript-eslint/no-explicit-any
ipcMain.handle('dome.ipc.theme.setSource', (_evt, theme) => {
switch (theme) {
case 'dark':
case 'light':
case 'system':
nativeTheme.themeSource = theme;
return;
default:
console.warn('[dome] unknown theme', theme);
}
});
ipcMain.handle('dome.ipc.theme.getDefault', () => {
return nativeTheme.shouldUseDarkColors ? 'dark' : 'light';
});
nativeTheme.on('updated', () => {
broadcast('dome.theme.updated');
});
// --------------------------------------------------------------------------
...@@ -61,7 +61,7 @@ const NativeThemeUpdated = new Dome.Event('dome.theme.updated'); ...@@ -61,7 +61,7 @@ const NativeThemeUpdated = new Dome.Event('dome.theme.updated');
ipcRenderer.on('dome.theme.updated', () => NativeThemeUpdated.emit()); ipcRenderer.on('dome.theme.updated', () => NativeThemeUpdated.emit());
async function getNativeTheme(): Promise<ColorTheme> { async function getNativeTheme(): Promise<ColorTheme> {
const th = await ipcRenderer.invoke('dome.ipc.theme.getDefault'); const th = await ipcRenderer.invoke('dome.ipc.theme');
return jColorTheme(th); return jColorTheme(th);
} }
...@@ -72,20 +72,12 @@ async function getNativeTheme(): Promise<ColorTheme> { ...@@ -72,20 +72,12 @@ async function getNativeTheme(): Promise<ColorTheme> {
export function useColorTheme(): [ColorTheme, (upd: ColorSettings) => void] { export function useColorTheme(): [ColorTheme, (upd: ColorSettings) => void] {
Dome.useUpdate(NativeThemeUpdated); Dome.useUpdate(NativeThemeUpdated);
const { result: current } = Dome.usePromise(getNativeTheme()); const { result: current } = Dome.usePromise(getNativeTheme());
const [pref, setPref] = Settings.useGlobalSettings(ColorThemeSettings); const [pref, setTheme] = Settings.useGlobalSettings(ColorThemeSettings);
const setTheme = (upd: ColorSettings): void => {
setPref(upd);
ipcRenderer.invoke('dome.ipc.theme.setSource', upd);
};
return [current ?? jColorTheme(pref), setTheme]; return [current ?? jColorTheme(pref), setTheme];
} }
export function useColorThemeSettings(): State<ColorSettings> { export function useColorThemeSettings(): State<ColorSettings> {
const [pref, setPref] = Settings.useGlobalSettings(ColorThemeSettings); const [pref, setTheme] = Settings.useGlobalSettings(ColorThemeSettings);
const setTheme = (upd: ColorSettings): void => {
setPref(upd);
ipcRenderer.invoke('dome.ipc.theme.setSource', upd);
};
return [jColorSettings(pref), setTheme]; return [jColorSettings(pref), setTheme];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment