maximise icon updates as needed

This commit is contained in:
dragonwocky 2020-07-21 09:47:19 +10:00
parent 9d32ae16e0
commit 2f90f65f1c
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
3 changed files with 12 additions and 14 deletions

View File

@ -1,4 +1,4 @@
# readme placeholder # readme
ended up here? this is a wip version of the enhancer, and this file is yet to be completed. ended up here? this is a wip version of the enhancer, and this file is yet to be completed.
if you're interested in using the project, switch back to the [master branch](https://github.com/dragonwocky/notion-enhancer). if you're interested in using the project, switch back to the [master branch](https://github.com/dragonwocky/notion-enhancer).

View File

@ -22,9 +22,8 @@ module.exports = (defaults) =>
if (event.channel.startsWith('enhancer:sidebar-width-')) if (event.channel.startsWith('enhancer:sidebar-width-'))
dragarea.setAttribute( dragarea.setAttribute(
'style', 'style',
`${default_styles} left: height: ${ `${default_styles} height: ${settings.dragarea_height}px; left: ${
settings.dragarea_height event.channel.slice('enhancer:sidebar-width-'.length)};`
}px; ${event.channel.slice('enhancer:sidebar-width-'.length)};`
); );
}); });
}; };

View File

@ -33,8 +33,7 @@ module.exports = (defaults) =>
document.body.classList.add('frameless'); document.body.classList.add('frameless');
// draggable area // draggable area
const dragarea = document.createElement('div'), const dragarea = document.createElement('div');
sidebar = document.querySelector('.notion-sidebar');
dragarea.className = 'window-dragarea'; dragarea.className = 'window-dragarea';
document.querySelector('.notion-topbar').prepend(dragarea); document.querySelector('.notion-topbar').prepend(dragarea);
document.documentElement.style.setProperty( document.documentElement.style.setProperty(
@ -43,8 +42,9 @@ module.exports = (defaults) =>
); );
let sidebar_width; let sidebar_width;
setInterval(() => { setInterval(() => {
const sidebar = document.querySelector('.notion-sidebar');
let new_width = let new_width =
sidebar.style.opacity === '0' ? '0px' : sidebar.style.width; sidebar.style.height === 'auto' ? '0px' : sidebar.style.width;
if (sidebar_width !== new_width) { if (sidebar_width !== new_width) {
sidebar_width = new_width; sidebar_width = new_width;
electron.ipcRenderer.sendToHost( electron.ipcRenderer.sendToHost(
@ -124,6 +124,12 @@ module.exports = (defaults) =>
btn btn
]()}</button>`; ]()}</button>`;
} }
if (settings.frameless && !is_mac)
setInterval(async () => {
const icon = await buttons.icons.maximize(),
el = buttons.element.querySelector('.btn-maximize');
if (el.innerHTML != icon) el.innerHTML = icon;
}, 100);
document document
.querySelector('.notion-topbar > div[style*="display: flex"]') .querySelector('.notion-topbar > div[style*="display: flex"]')
@ -141,12 +147,5 @@ module.exports = (defaults) =>
document.querySelector(`.window-button.btn-${btn}`).onclick = document.querySelector(`.window-button.btn-${btn}`).onclick =
buttons.actions[btn]; buttons.actions[btn];
} }
// if (!isMac) {
// setInterval(() => {
// if (button_elements.maximize.innerHTML != buttons.icons.maximize())
// button_elements.maximize.innerHTML = buttons.icons.maximize();
// }, 1000);
// }
} }
}; };