mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
pass store() into panel mods' js file in the same way as other extensions
This commit is contained in:
parent
ba0fcf5115
commit
168f76e62e
@ -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"]');
|
||||
|
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user