mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
36 lines
916 B
JavaScript
36 lines
916 B
JavaScript
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = (store, __exports) => {
|
|
const __start = window['__start'];
|
|
|
|
window['__start'] = function () {
|
|
__start();
|
|
const dragarea = document.querySelector(
|
|
'#root [style*="-webkit-app-region: drag"]'
|
|
),
|
|
default_styles = dragarea.getAttribute('style');
|
|
|
|
if (store().tiling_mode) {
|
|
dragarea.style.display = 'none';
|
|
} else {
|
|
document
|
|
.getElementById('notion')
|
|
.addEventListener('ipc-message', (event) => {
|
|
if (event.channel !== 'enhancer:sidebar-width') return;
|
|
dragarea.setAttribute(
|
|
'style',
|
|
`${default_styles} top: 2px; height: ${
|
|
store().dragarea_height
|
|
}px; left: ${event.args[0]};`
|
|
);
|
|
});
|
|
}
|
|
};
|
|
};
|