From 168f76e62e87d9019f708958be6aea221c015aac Mon Sep 17 00:00:00 2001 From: CloudHill Date: Fri, 4 Dec 2020 14:19:20 +0700 Subject: [PATCH] pass store() into panel mods' js file in the same way as other extensions --- mods/outliner/panel.js | 4 ++-- mods/side-panel/mod.js | 14 ++++++++++++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/mods/outliner/panel.js b/mods/outliner/panel.js index 9bfe391..044c8d7 100644 --- a/mods/outliner/panel.js +++ b/mods/outliner/panel.js @@ -9,7 +9,7 @@ const { createElement } = require("../../pkg/helpers"); -module.exports = (store) => { +module.exports = (store, __exports) => { // Observe for page changes const pageObserver = new MutationObserver((list, observer) => { for ( let { addedNodes } of list) { @@ -64,7 +64,7 @@ module.exports = (store) => { const outline = document.querySelector('.outliner'); if (!outline) return; outline.textContent = ''; - if (store.lined) outline.setAttribute('lined', ''); + if (store().lined) outline.setAttribute('lined', ''); const pageContent = document.querySelector('.notion-page-content'); const headerBlocks = pageContent.querySelectorAll('[class*="header-block"]'); diff --git a/mods/side-panel/mod.js b/mods/side-panel/mod.js index 9a63b02..8aa88c5 100644 --- a/mods/side-panel/mod.js +++ b/mods/side-panel/mod.js @@ -55,8 +55,18 @@ module.exports = { // js if (mod.panel.js) { const jsPath = `../${mod.dir}/${mod.panel.js}`; - if (await fs.pathExists(path.resolve(__dirname, jsPath))) - mod.panel.js = require(jsPath)(store(mod.id)); + if (await fs.pathExists(path.resolve(__dirname, jsPath))) { + 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') { mod.panel.icon = mod.name[0];