pass store() into panel mods' js file in the same way as other extensions

This commit is contained in:
CloudHill 2020-12-04 14:19:20 +07:00
parent ba0fcf5115
commit 168f76e62e
2 changed files with 14 additions and 4 deletions

View File

@ -9,7 +9,7 @@
const { createElement } = require("../../pkg/helpers"); const { createElement } = require("../../pkg/helpers");
module.exports = (store) => { module.exports = (store, __exports) => {
// Observe for page changes // Observe for page changes
const pageObserver = new MutationObserver((list, observer) => { const pageObserver = new MutationObserver((list, observer) => {
for ( let { addedNodes } of list) { for ( let { addedNodes } of list) {
@ -64,7 +64,7 @@ module.exports = (store) => {
const outline = document.querySelector('.outliner'); const outline = document.querySelector('.outliner');
if (!outline) return; if (!outline) return;
outline.textContent = ''; outline.textContent = '';
if (store.lined) outline.setAttribute('lined', ''); if (store().lined) outline.setAttribute('lined', '');
const pageContent = document.querySelector('.notion-page-content'); const pageContent = document.querySelector('.notion-page-content');
const headerBlocks = pageContent.querySelectorAll('[class*="header-block"]'); const headerBlocks = pageContent.querySelectorAll('[class*="header-block"]');

View File

@ -55,8 +55,18 @@ module.exports = {
// js // js
if (mod.panel.js) { if (mod.panel.js) {
const jsPath = `../${mod.dir}/${mod.panel.js}`; const jsPath = `../${mod.dir}/${mod.panel.js}`;
if (await fs.pathExists(path.resolve(__dirname, jsPath))) if (await fs.pathExists(path.resolve(__dirname, jsPath))) {
mod.panel.js = require(jsPath)(store(mod.id)); mod.panel.js = require(jsPath)((...args) => {
if (!args.length) return store(mod.id, mod.defaults);
if (args.length === 1 && typeof args[0] === 'object')
return store(mod.id, { ...mod.defaults, ...args[0] });
const other_mod = modules.find((m) => m.id === args[0]);
return store(args[0], {
...(other_mod ? other_mod.defaults : {}),
...(args[1] || {})
})
}, __exports);
}
} }
} else if (typeof mod.panel === 'string') { } else if (typeof mod.panel === 'string') {
mod.panel.icon = mod.name[0]; mod.panel.icon = mod.name[0];