diff --git a/mods/admiraldus-global-linking-blocks/app.css b/mods/admiraldus-global-linking-blocks/app.css index 6fd9857..c9e3ca0 100644 --- a/mods/admiraldus-global-linking-blocks/app.css +++ b/mods/admiraldus-global-linking-blocks/app.css @@ -36,9 +36,9 @@ display: block; flex-shrink: 0; margin-right: 6px; - height: 14px; - width: 14px; - fill: var(--theme--text); + height: 16px; + width: 16px; + fill: var(--theme--text_ui); } .admiraldus-glb-page-button > span { @@ -81,7 +81,7 @@ margin-left: 14px; height: 17px; width: 17px; - fill: inherit; + fill: var(--theme--text); } .admiraldus-glb-block-button > span { diff --git a/mods/admiraldus-global-linking-blocks/icons/chain.svg b/mods/admiraldus-global-linking-blocks/icons/chain.svg new file mode 100644 index 0000000..31cdcfa --- /dev/null +++ b/mods/admiraldus-global-linking-blocks/icons/chain.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/mods/admiraldus-global-linking-blocks/icons/link.svg b/mods/admiraldus-global-linking-blocks/icons/globe.svg similarity index 100% rename from mods/admiraldus-global-linking-blocks/icons/link.svg rename to mods/admiraldus-global-linking-blocks/icons/globe.svg diff --git a/mods/admiraldus-global-linking-blocks/mod.js b/mods/admiraldus-global-linking-blocks/mod.js index 40d57b1..2639965 100644 --- a/mods/admiraldus-global-linking-blocks/mod.js +++ b/mods/admiraldus-global-linking-blocks/mod.js @@ -19,6 +19,14 @@ module.exports = { link: 'https://github.com/admiraldus', avatar: 'https://raw.githubusercontent.com/admiraldus/admiraldus/main/module.gif', }, + options: [ + { + key: 'hidePageButton', + label: 'show the page link button', + type: 'toggle', + value: true, + }, + ], hacks: { 'renderer/preload.js'(store, __exports) { document.addEventListener('readystatechange', () => { @@ -39,31 +47,50 @@ module.exports = { * Everything happens here. ¯\_(ツ)_/¯ */ async function main() { - const icon = await x$.svg('/icons/link.svg'); + const icons = { + globe: await x$.svg('/icons/globe.svg'), + chain: await x$.svg('/icons/chain.svg'), + }; const pageClass = 'admiraldus-glb-page-button'; const blockClass = 'admiraldus-glb-block-button'; const spanClass = 'admiraldus-glb-span-hide'; - /** - * Create the page link button and append it to the topbar. - * - * @return {create} Returns "create()" if not appended. - */ - const pageButton = !function create() { - const target = x$.sel('.notion-topbar-share-menu'); - const attr = [ - `class="${pageClass}" role="button" tabindex="0"`, - `class="${spanClass}"`, - ]; - const html = x$.el( - `
- ${icon} - Global Link - Link copied!`); - target.before(html); - if (html === null) return create(); - }(); + if (store().hidePageButton) { + /** + * Create the page link button and append it to the topbar. + * + * @return {create} Returns "create()" if not appended. + */ + const pageButton = function create() { + const target = x$.sel('.notion-topbar-share-menu'); + if (target === null) return; + + const attr = [ + `class="${pageClass}" role="button" tabindex="0"`, + `class="${spanClass}"`, + ]; + const html = x$.el( + `
+ ${icons.chain} + Copy link + Link copied!`); + + target.before(html); + if (html === null) return create(); + }; + pageButton(); + + /** + * Observer for the topbar. + */ + x$.obs(() => { + if (x$.sel(`.${pageClass}`) !== null) return; + pageButton(); + }, x$.sel('.notion-topbar'), { + subtree: true, childList: true, + }); + } /** * Create the block link button and append it to the block menu. @@ -77,7 +104,7 @@ module.exports = { const attr = `class="${blockClass}" role="button" tabindex="0"`; const html = x$.el( `
- ${icon} + ${icons.globe} Global link
`); @@ -151,6 +178,7 @@ module.exports = { (div) => lang.some((text) => div.textContent === text)); } if (x$.sel(`.${blockClass}`) !== null || + x$.sel('.notion-selectable-halo') === null || getLinkButton() === undefined) return; blockButton(getLinkButton().closest('[role="button"]')); }, x$.sel('.notion-overlay-container'), {