mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
205 lines
7.0 KiB
JavaScript
205 lines
7.0 KiB
JavaScript
/*
|
|
* notion-enhancer
|
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com>
|
|
* (c) 2020 TarasokUA
|
|
* (https://dragonwocky.me/) under the MIT license
|
|
*/
|
|
|
|
module.exports = (defaults) =>
|
|
function (store, __exports) {
|
|
const electron = require('electron'),
|
|
browser = electron.remote.getCurrentWindow(),
|
|
path = require('path'),
|
|
fs = require('fs-extra'),
|
|
is_mac = process.platform === 'darwin',
|
|
settings = store(defaults),
|
|
helpers = require('../../pkg/helpers.js'),
|
|
__notion = helpers.getNotion(),
|
|
notionIpc = require(`${__notion.replace(
|
|
/\\/g,
|
|
'/'
|
|
)}/app/helpers/notionIpc.js`);
|
|
|
|
// additional hotkeys
|
|
document.defaultView.addEventListener('keyup', (event) => {
|
|
if (event.code === 'F5') window.reload();
|
|
});
|
|
|
|
const interval_attempts = {
|
|
enhance: setInterval(enhance, 500),
|
|
};
|
|
async function enhance() {
|
|
if (!document.querySelector('.notion-frame')) return;
|
|
clearInterval(interval_attempts.enhance);
|
|
|
|
// scrollbars
|
|
if (settings.smooth_scrollbars) {
|
|
document.body.classList.add('smooth-scrollbars');
|
|
interval_attempts.patchScrollbars = setInterval(patchScrollbars, 50);
|
|
function patchScrollbars() {
|
|
const sidebar = document.querySelector(
|
|
'.notion-scroller.vertical[style*="overflow: hidden auto;"]'
|
|
);
|
|
if (!sidebar) return;
|
|
clearInterval(interval_attempts.patchScrollbars);
|
|
sidebar.style.overflow = '';
|
|
setTimeout(() => {
|
|
sidebar.style.overflow = 'hidden auto';
|
|
}, 10);
|
|
}
|
|
}
|
|
|
|
// ctrl+f theming
|
|
function setTheme() {
|
|
const mode = JSON.parse(localStorage.theme).mode,
|
|
style = (prop) =>
|
|
getComputedStyle(document.body).getPropertyValue(prop);
|
|
notionIpc.sendNotionToIndex('search:set-theme', {
|
|
'mode': mode,
|
|
'colors': {
|
|
'white': style(`--theme_${mode}--todo_ticked-fill`),
|
|
'blue': style(`--theme_${mode}--primary`),
|
|
},
|
|
'borderRadius': 3,
|
|
'textColor': style(`--theme_${mode}--text`),
|
|
'popoverBackgroundColor': style(`--theme_${mode}--card`),
|
|
'popoverBoxShadow': `0 0 0 1px ${style(
|
|
`--theme_${mode}--overlay`
|
|
)}, 0 3px 6px ${style(`--theme_${mode}--overlay`)}`,
|
|
'inputBoxShadow': `box-shadow: ${style(
|
|
`--theme_${mode}--primary`
|
|
)} 0px 0px 0px 1px inset, ${style(
|
|
`--theme_${mode}--primary_hover`
|
|
)} 0px 0px 0px 2px !important`,
|
|
'inputBackgroundColor': style(`--theme_${mode}--main`),
|
|
'dividerColor': style(`--theme_${mode}--table-border`),
|
|
'shadowOpacity': 0.2,
|
|
});
|
|
}
|
|
setInterval(setTheme, 100);
|
|
|
|
// frameless
|
|
if (settings.frameless) {
|
|
document.body.classList.add('frameless');
|
|
|
|
// draggable area
|
|
const dragarea = document.createElement('div');
|
|
dragarea.className = 'window-dragarea';
|
|
document.querySelector('.notion-topbar').prepend(dragarea);
|
|
document.documentElement.style.setProperty(
|
|
'--configured-dragarea_height',
|
|
`${settings.dragarea_height + 2}px`
|
|
);
|
|
let sidebar_width;
|
|
interval_attempts.patchDragarea = setInterval(patchDragarea, 50);
|
|
function patchDragarea() {
|
|
const sidebar = document.querySelector('.notion-sidebar');
|
|
if (!sidebar) return;
|
|
clearInterval(interval_attempts.patchDragarea);
|
|
let new_width =
|
|
sidebar.style.height === 'auto' ? '0px' : sidebar.style.width;
|
|
if (sidebar_width !== new_width) {
|
|
sidebar_width = new_width;
|
|
electron.ipcRenderer.sendToHost(
|
|
`enhancer:sidebar-width-${sidebar_width}`
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
// window buttons
|
|
const buttons = {
|
|
element: document.createElement('span'),
|
|
insert: ['alwaysontop'],
|
|
icons: {
|
|
raw: {
|
|
alwaysontop: {
|
|
on: fs.readFile(
|
|
path.resolve(`${__dirname}/icons/alwaysontop_on.svg`)
|
|
),
|
|
off: fs.readFile(
|
|
path.resolve(`${__dirname}/icons/alwaysontop_off.svg`)
|
|
),
|
|
},
|
|
minimize: fs.readFile(
|
|
path.resolve(`${__dirname}/icons/minimize.svg`)
|
|
),
|
|
maximize: {
|
|
on: fs.readFile(
|
|
path.resolve(`${__dirname}/icons/maximize_on.svg`)
|
|
),
|
|
off: fs.readFile(
|
|
path.resolve(`${__dirname}/icons/maximize_off.svg`)
|
|
),
|
|
},
|
|
close: fs.readFile(path.resolve(`${__dirname}/icons/close.svg`)),
|
|
},
|
|
alwaysontop() {
|
|
return browser.isAlwaysOnTop()
|
|
? buttons.icons.raw.alwaysontop.on
|
|
: buttons.icons.raw.alwaysontop.off; // '🠙' : '🠛'
|
|
},
|
|
minimize() {
|
|
return buttons.icons.raw.minimize; // '⚊'
|
|
},
|
|
maximize() {
|
|
return browser.isMaximized()
|
|
? buttons.icons.raw.maximize.on
|
|
: buttons.icons.raw.maximize.off; // '🗗' : '🗖'
|
|
},
|
|
close() {
|
|
return buttons.icons.raw.close; // '⨉'
|
|
},
|
|
},
|
|
actions: {
|
|
async alwaysontop() {
|
|
browser.setAlwaysOnTop(!browser.isAlwaysOnTop());
|
|
this.innerHTML = await buttons.icons.alwaysontop();
|
|
},
|
|
minimize() {
|
|
browser.minimize();
|
|
},
|
|
async maximize() {
|
|
browser.isMaximized() ? browser.unmaximize() : browser.maximize();
|
|
this.innerHTML = await buttons.icons.maximize();
|
|
},
|
|
close() {
|
|
browser.close();
|
|
},
|
|
},
|
|
};
|
|
|
|
if (settings.frameless && !is_mac)
|
|
buttons.insert.push('minimize', 'maximize', 'close');
|
|
buttons.element.className = 'window-buttons-area';
|
|
for (let btn of buttons.insert) {
|
|
buttons.element.innerHTML += `<button class="window-button btn-${btn}">${await buttons.icons[
|
|
btn
|
|
]()}</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
|
|
.querySelector('.notion-topbar > div[style*="display: flex"]')
|
|
.appendChild(buttons.element);
|
|
document
|
|
.querySelector('.notion-history-back-button')
|
|
.parentElement.nextElementSibling.classList.add(
|
|
'notion-topbar-breadcrumb'
|
|
);
|
|
document
|
|
.querySelector('.notion-topbar-share-menu')
|
|
.parentElement.classList.add('notion-topbar-actions');
|
|
|
|
for (let btn of buttons.insert) {
|
|
document.querySelector(`.window-button.btn-${btn}`).onclick =
|
|
buttons.actions[btn];
|
|
}
|
|
}
|
|
};
|