remove loop from core client.js

This commit is contained in:
dragonwocky 2020-08-17 23:43:43 +10:00
parent 0af0e5026f
commit 8ee12ea57e
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
4 changed files with 66 additions and 53 deletions

View File

@ -25,7 +25,11 @@ module.exports = (store, __exports) => {
const attempt_interval = setInterval(enhance, 500); const attempt_interval = setInterval(enhance, 500);
async function enhance() { async function enhance() {
if (!document.querySelector('.notion-frame')) return; if (
!document.querySelector('.notion-frame') ||
!document.querySelector('.notion-sidebar')
)
return;
clearInterval(attempt_interval); clearInterval(attempt_interval);
// scrollbars // scrollbars
@ -72,17 +76,18 @@ module.exports = (store, __exports) => {
.querySelector('.notion-topbar-share-menu') .querySelector('.notion-topbar-share-menu')
.parentElement.classList.add('notion-topbar-actions'); .parentElement.classList.add('notion-topbar-actions');
let sidebar_width;
function communicationLoop() {
const getStyle = (prop) => const getStyle = (prop) =>
getComputedStyle( getComputedStyle(
document.querySelector('.notion-app-inner') document.querySelector('.notion-app-inner')
).getPropertyValue(prop), ).getPropertyValue(prop);
mode = JSON.parse(localStorage.theme).mode;
// ctrl+f theming // ctrl+f theming
document.defaultView.addEventListener('keydown', (event) => {
if (event.key === 'f' && (event.ctrlKey || event.metaKey)) {
notionIpc.sendNotionToIndex('search:set-theme', { notionIpc.sendNotionToIndex('search:set-theme', {
'mode': mode, 'mode': document.querySelector('.notion-dark-theme')
? 'dark'
: 'light',
'colors': { 'colors': {
'white': getStyle(`--theme--option_active-color`), 'white': getStyle(`--theme--option_active-color`),
'blue': getStyle(`--theme--option_active-background`), 'blue': getStyle(`--theme--option_active-background`),
@ -102,30 +107,34 @@ module.exports = (store, __exports) => {
'dividerColor': getStyle(`--theme--table-border`), 'dividerColor': getStyle(`--theme--table-border`),
'shadowOpacity': 0.2, 'shadowOpacity': 0.2,
}); });
}
});
// enhancer menu // enhancer menu
electron.ipcRenderer.send('enhancer:set-theme', { function setMenuTheme() {
mode, electron.ipcRenderer.send('enhancer:set-menu-theme', {
mode: document.querySelector('.notion-dark-theme') ? 'dark' : 'light',
rules: require('./css/variables.json').map((rule) => [ rules: require('./css/variables.json').map((rule) => [
rule, rule,
getStyle(rule), getStyle(rule),
]), ]),
}); });
}
setMenuTheme();
electron.ipcRenderer.on('enhancer:get-menu-theme', setMenuTheme);
// draggable area resizing const observer = new MutationObserver(setSidebarWidth);
const sidebar = document.querySelector('.notion-sidebar'); observer.observe(document.querySelector('.notion-sidebar'), {
if (store().frameless && sidebar) { attributes: true,
let new_sidebar_width = });
sidebar.style.height === 'auto' ? '0px' : sidebar.style.width; function setSidebarWidth(list, observer) {
if (sidebar_width !== new_sidebar_width) { if (!store().frameless) return;
sidebar_width = new_sidebar_width;
electron.ipcRenderer.sendToHost( electron.ipcRenderer.sendToHost(
'enhancer:sidebar-width', 'enhancer:sidebar-width',
sidebar_width list[0].target.style.height === 'auto'
? '0px'
: list[0].target.style.width
); );
} }
} }
}
setInterval(communicationLoop, 500);
}
}; };

View File

@ -41,7 +41,8 @@ window['__start'] = async () => {
} }
}); });
electron.ipcRenderer.on('enhancer:set-theme', (event, theme) => { electron.ipcRenderer.send('enhancer:get-menu-theme');
electron.ipcRenderer.on('enhancer:set-menu-theme', (event, theme) => {
document.body.className = `notion-${theme.mode}-theme`; document.body.className = `notion-${theme.mode}-theme`;
for (const style of theme.rules) for (const style of theme.rules)
document.body.style.setProperty(style[0], style[1]); document.body.style.setProperty(style[0], style[1]);

View File

@ -16,8 +16,6 @@ module.exports = (store, __exports) => {
), ),
default_styles = dragarea.getAttribute('style'); default_styles = dragarea.getAttribute('style');
// document.body.innerText = document.body.innerHTML;
document document
.getElementById('notion') .getElementById('notion')
.addEventListener('ipc-message', (event) => { .addEventListener('ipc-message', (event) => {

View File

@ -29,9 +29,14 @@ module.exports = (store, __exports) => {
}) })
); );
electron.ipcMain.on('enhancer:set-theme', (event, arg) => { electron.ipcMain.on('enhancer:set-menu-theme', (event, arg) => {
if (!enhancer_menu) return; if (!enhancer_menu) return;
enhancer_menu.webContents.send('enhancer:set-theme', arg); enhancer_menu.webContents.send('enhancer:set-menu-theme', arg);
});
electron.ipcMain.on('enhancer:get-menu-theme', (event, arg) => {
electron.webContents
.getAllWebContents()
.forEach((webContents) => webContents.send('enhancer:get-menu-theme'));
}); });
electron.ipcMain.on('enhancer:open-extension-menu', openExtensionMenu); electron.ipcMain.on('enhancer:open-extension-menu', openExtensionMenu);