mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
/**
|
|
* notion-enhancer: theming
|
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
export default async function ({ web, registry, storage, electron }, db) {
|
|
const enabledThemes = await registry.list(
|
|
async (m) => (await registry.enabled(m.id)) && m.tags.includes('theme')
|
|
);
|
|
if (enabledThemes.length || (await db.get(['force_load']))) {
|
|
// only override colors if theme is enable for perf
|
|
web.loadStylesheet('repo/theming/theme.css');
|
|
web.loadStylesheet('repo/theming/colors.css');
|
|
}
|
|
|
|
const updateTheme = () => {
|
|
storage
|
|
.set(['theme'], document.querySelector('.notion-dark-theme') ? 'dark' : 'light')
|
|
.then(() => {
|
|
electron.sendMessageToHost('update-theme');
|
|
});
|
|
document.documentElement.classList[
|
|
document.body.classList.contains('dark') ? 'add' : 'remove'
|
|
]('dark');
|
|
};
|
|
web.addDocumentObserver((mutation) => {
|
|
if (mutation.target === document.body && document.hasFocus()) updateTheme();
|
|
});
|
|
if (document.hasFocus()) updateTheme();
|
|
document.addEventListener('visibilitychange', updateTheme);
|
|
}
|