From 2245f8ccdde6c2a03e6793ef8d3f814892dcc97d Mon Sep 17 00:00:00 2001 From: Emir <31805948+admiraldus@users.noreply.github.com> Date: Sun, 13 Dec 2020 01:03:38 +0300 Subject: [PATCH] extension: global linking blocks (#345) --- mods/admiraldus-global-linking-blocks/app.css | 101 +++++++++ .../helper.js | 82 +++++++ .../icons/link.svg | 58 +++++ mods/admiraldus-global-linking-blocks/mod.js | 213 ++++++++++++++++++ 4 files changed, 454 insertions(+) create mode 100644 mods/admiraldus-global-linking-blocks/app.css create mode 100644 mods/admiraldus-global-linking-blocks/helper.js create mode 100644 mods/admiraldus-global-linking-blocks/icons/link.svg create mode 100644 mods/admiraldus-global-linking-blocks/mod.js diff --git a/mods/admiraldus-global-linking-blocks/app.css b/mods/admiraldus-global-linking-blocks/app.css new file mode 100644 index 0000000..6fd9857 --- /dev/null +++ b/mods/admiraldus-global-linking-blocks/app.css @@ -0,0 +1,101 @@ +/* + * global linking blocks + * (c) 2020 admiraldus (https://github.com/admiraldus) + * under the MIT license + */ + +/* ========== THE PAGE BUTTON ========== */ +.admiraldus-glb-page-button +{ + display: inline-flex; + align-items: center; + flex-shrink: 0; + border-radius: 3px; + height: 28px; + min-width: 0px; + padding-right: 8px; + padding-left: 6px; + white-space: nowrap; + font-size: 14px; + line-height: 1.2; + color: var(--theme--text); + cursor: pointer; + transition: background 20ms ease-in 0s; + user-select: none; +} + +.admiraldus-glb-page-button:hover +{ + background: var(--theme--interactive_hover); + box-shadow: 0 0 0 0.5px var(--theme--interactive_hover-border); +} + +.admiraldus-glb-page-button > svg +{ + backface-visibility: hidden; + display: block; + flex-shrink: 0; + margin-right: 6px; + height: 14px; + width: 14px; + fill: var(--theme--text); +} + +.admiraldus-glb-page-button > span { + opacity: 1; + transition: opacity .4s ease; +} + +.admiraldus-glb-span-hide { + position: absolute; + top: -9999px; + opacity: 0 !important; +} + +/* ========== THE BLOCK BUTTON ========== */ +.admiraldus-glb-block-button { + display: flex; + align-items: center; + min-height: 28px; + width: 100%; + font-size: var(--theme--font_label-size); + line-height: 120%; + cursor: pointer; + transition: background 20ms ease-in 0s; + user-select: none; +} + +.admiraldus-glb-block-button:hover +{ + background: var(--theme--interactive_hover); + box-shadow: 0 0 0 0.5px var(--theme--interactive_hover-border); +} + +.admiraldus-glb-block-button > svg { + backface-visibility: hidden; + display: flex; + display: block; + justify-content: center; + align-items: center; + flex-shrink: 0; + margin-left: 14px; + height: 17px; + width: 17px; + fill: inherit; +} + +.admiraldus-glb-block-button > span { + margin-right: 14px; + margin-left: 8px; + min-width: 0px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + flex: 1 1 auto; +} + +/* ========== THE MENU ========== */ +.--on-hover div[role="button"]:not(.admiraldus-glb-block-button) { + background: transparent !important; + box-shadow: none !important; +} diff --git a/mods/admiraldus-global-linking-blocks/helper.js b/mods/admiraldus-global-linking-blocks/helper.js new file mode 100644 index 0000000..02b6c61 --- /dev/null +++ b/mods/admiraldus-global-linking-blocks/helper.js @@ -0,0 +1,82 @@ +/* + * helper.js from admiraldus + * (c) 2020 admiraldus (https://github.com/admiraldus) + * use for your own modules but you have to attribute to me. + * under the MIT license + */ + +'use strict'; + +const PATH = require('path'); +const FS = require('fs-extra'); + +var x$ = { + sel: function(els, mode = false, base = null) { + base = base === null ? document : base; + return mode ? base.querySelectorAll(els) : base.querySelector(els); + }, + + cls: { + r: function(els, cls, mode = false, base = null) { + base = base === null ? document : base; + mode ? x$.sel(els, true).forEach((el) => + el.classList.remove(cls)) : els.classList.remove(cls); + }, + + a: function(els, cls, mode = false, base = null) { + base = base === null ? document : base; + mode ? x$.sel(els, true).forEach((el) => + el.classList.add(cls)) : els.classList.add(cls); + }, + + c: function(els, cls, mode = false, base = null) { + base = base === null ? document : base; + return mode ? x$.sel(els, true).forEach((el) => + el.classList.contains(cls)) : els.classList.contains(cls); + }, + }, + + svg: function(path) { + return FS.readFile(PATH.resolve(__dirname + path)); + }, + + on: function(base, event, fn, flag = false) { + base.addEventListener(event, fn, flag); + }, + + sim: function(events, els) { + events.forEach((event) => els.dispatchEvent( + new MouseEvent(event, { + view: window, + bubbles: true, + cancelable: true, + buttons: 1, + }))); + }, + + obs: function(fn, els, config) { + const observer = new MutationObserver(fn); + observer.observe(els, config); + }, + + clp: function(mode = true, value) { + switch (mode) { + case false: + navigator.clipboard.writeText(value); + break; + case true: + return navigator.clipboard.readText(); + break; + } + }, + + el: function(html) { + const temp = document.createElement('template'); + temp.innerHTML = html.trim(); + return temp.content.firstElementChild; + }, +}; + +module.exports = { + x$, +}; diff --git a/mods/admiraldus-global-linking-blocks/icons/link.svg b/mods/admiraldus-global-linking-blocks/icons/link.svg new file mode 100644 index 0000000..b88b775 --- /dev/null +++ b/mods/admiraldus-global-linking-blocks/icons/link.svg @@ -0,0 +1,58 @@ + + + diff --git a/mods/admiraldus-global-linking-blocks/mod.js b/mods/admiraldus-global-linking-blocks/mod.js new file mode 100644 index 0000000..40d57b1 --- /dev/null +++ b/mods/admiraldus-global-linking-blocks/mod.js @@ -0,0 +1,213 @@ +/* + * global linking blocks + * (c) 2020 admiraldus (https://github.com/admiraldus) + * under the MIT license + */ + +'use strict'; + +const {x$} = require('./helper.js'); + +module.exports = { + id: '74856af4-6970-455d-bd86-0a385a402dd1', + name: 'global linking blocks', + tags: ['extension'], + desc: 'easily copy the global link of the page or the desired block.', + version: '0.1.0', + author: { + name: 'admiraldus', + link: 'https://github.com/admiraldus', + avatar: 'https://raw.githubusercontent.com/admiraldus/admiraldus/main/module.gif', + }, + hacks: { + 'renderer/preload.js'(store, __exports) { + document.addEventListener('readystatechange', () => { + if (document.readyState !== 'complete') return false; + + /** + * Prevent selectors from failing. + * + * @return {Function} Returns "wait()" until "main()" returns. + */ + const wait = !function wait() { + const els = [x$.sel('.notion-frame'), x$.sel('.notion-topbar')]; + if (els.some((el) => el !== null)) return main(); + setTimeout(() => wait(), 500); + }(); + + /** + * Everything happens here. ¯\_(ツ)_/¯ + */ + async function main() { + const icon = await x$.svg('/icons/link.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( + `