From 9b03b1d9f7bd0185dc437a760a829548c8993175 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Sun, 21 Apr 2024 16:56:09 +1000 Subject: [PATCH] chore: remove integrated-titlebar (default in notion desktop v3.4.0) --- src/extensions/titlebar/buttons.mjs | 74 --------------------------- src/extensions/titlebar/client.css | 19 ------- src/extensions/titlebar/client.mjs | 28 ---------- src/extensions/titlebar/electron.cjs | 28 ---------- src/extensions/titlebar/mod.json | 55 -------------------- src/extensions/titlebar/tabs.cjs | 33 ------------ src/extensions/titlebar/titlebar.jpg | Bin 8584 -> 0 bytes src/registry.json | 1 - 8 files changed, 238 deletions(-) delete mode 100644 src/extensions/titlebar/buttons.mjs delete mode 100644 src/extensions/titlebar/client.css delete mode 100644 src/extensions/titlebar/client.mjs delete mode 100644 src/extensions/titlebar/electron.cjs delete mode 100644 src/extensions/titlebar/mod.json delete mode 100644 src/extensions/titlebar/tabs.cjs delete mode 100644 src/extensions/titlebar/titlebar.jpg diff --git a/src/extensions/titlebar/buttons.mjs b/src/extensions/titlebar/buttons.mjs deleted file mode 100644 index b13e44d..0000000 --- a/src/extensions/titlebar/buttons.mjs +++ /dev/null @@ -1,74 +0,0 @@ -/** - * notion-enhancer: titlebar - * (c) 2024 dragonwocky (https://dragonwocky.me/) - * (https://notion-enhancer.github.io/) under the MIT license - */ - -import { Tooltip } from "../../core/islands/Tooltip.mjs"; -import { TopbarButton } from "../../core/islands/TopbarButton.mjs"; - -const minimizeLabel = "Minimize window", - maximizeLabel = "Maximize window", - unmaximizeLabel = "Unmaximize window", - closeLabel = "Close window"; - -const createWindowButtons = async () => { - const { modDatabase } = globalThis.__enhancerApi, - db = await modDatabase("a5658d03-21c6-4088-bade-fa4780459133"), - minimizeIcon = await db.get("minimizeIcon"), - maximizeIcon = await db.get("maximizeIcon"), - unmaximizeIcon = await db.get("unmaximizeIcon"), - closeIcon = await db.get("closeIcon"); - - const { html, sendMessage, invokeInWorker } = globalThis.__enhancerApi, - $minimize = html`<${TopbarButton} - onclick=${() => sendMessage("notion-enhancer:titlebar", "minimize")} - aria-label="${minimizeLabel}" - innerHTML="${minimizeIcon?.content}" - icon="minus" - />`, - $maximize = html`<${TopbarButton} - onclick=${() => sendMessage("notion-enhancer:titlebar", "maximize")} - aria-label="${maximizeLabel}" - innerHTML="${maximizeIcon?.content}" - icon="maximize" - />`, - $unmaximize = html`<${TopbarButton} - onclick=${() => sendMessage("notion-enhancer:titlebar", "unmaximize")} - aria-label="${unmaximizeLabel}" - innerHTML="${unmaximizeIcon?.content}" - icon="minimize" - />`, - $close = html`<${TopbarButton} - onclick=${() => sendMessage("notion-enhancer:titlebar", "close")} - class="!hover:(bg-red-600 text-white)" - aria-label="${closeLabel}" - innerHTML="${closeIcon?.content}" - icon="x" - />`; - html`<${Tooltip}>${minimizeLabel}`.attach($minimize, "bottom"); - html`<${Tooltip}>${maximizeLabel}`.attach($maximize, "bottom"); - html`<${Tooltip}>${unmaximizeLabel}`.attach($unmaximize, "bottom"); - html`<${Tooltip}>${closeLabel}`.attach($close, "bottom"); - - const resizeWindow = async () => { - const isMaximized = await invokeInWorker("notion-enhancer:titlebar", { - query: "is-maximized", - }); - $maximize.style.display = isMaximized ? "none" : ""; - $unmaximize.style.display = isMaximized ? "" : "none"; - }; - addEventListener("resize", resizeWindow); - resizeWindow(); - - return html`
${$minimize}${$maximize}${$unmaximize}${$close}
`; -}; - -if (globalThis.IS_TABS) { - const appendAfter = ".hide-scrollbar"; - createWindowButtons().then(($buttons) => { - document.querySelector(appendAfter)?.after($buttons); - }); -} - -export { createWindowButtons }; diff --git a/src/extensions/titlebar/client.css b/src/extensions/titlebar/client.css deleted file mode 100644 index d13d418..0000000 --- a/src/extensions/titlebar/client.css +++ /dev/null @@ -1,19 +0,0 @@ -/** - * notion-enhancer: titlebar - * (c) 2024 dragonwocky (https://dragonwocky.me/) - * (https://notion-enhancer.github.io/) under the MIT license - */ - -.notion-tabs, -.notion-topbar { - user-select: none; - -webkit-app-region: drag; -} -.notion-tabs :is([aria-label], [draggable], .notion-enhancer--topbar-button), -.notion-peek-renderer [style*="height: 44px;"] > div, -.notion-topbar > div > * { - -webkit-app-region: no-drag; -} -.notion-tabs .notion-enhancer--topbar-button:last-child { - margin-right: 12px; -} diff --git a/src/extensions/titlebar/client.mjs b/src/extensions/titlebar/client.mjs deleted file mode 100644 index 943befe..0000000 --- a/src/extensions/titlebar/client.mjs +++ /dev/null @@ -1,28 +0,0 @@ -/** - * notion-enhancer: titlebar - * (c) 2024 dragonwocky (https://dragonwocky.me/) - * (https://notion-enhancer.github.io/) under the MIT license - */ - -import { createWindowButtons } from "./buttons.mjs"; - -export default async (api, db) => { - const titlebarStyle = await db.get("titlebarStyle"); - if (titlebarStyle === "Disabled") return; - - const { onMessage, addMutationListener, removeMutationListener } = api, - $buttons = await createWindowButtons(), - topbarMore = ".notion-topbar .notion-topbar-more-button", - addToTopbar = () => { - if (document.contains($buttons)) removeMutationListener(addToTopbar); - document.querySelector(topbarMore)?.after($buttons); - }, - showIfNoTabBar = async () => { - const { isShowingTabBar } = await __electronApi.electronAppFeatures.get(); - $buttons.style.display = isShowingTabBar ? "none" : ""; - }; - __electronApi?.electronAppFeatures.addListener(showIfNoTabBar); - showIfNoTabBar(); - addMutationListener(topbarMore, addToTopbar); - addToTopbar(topbarMore); -}; diff --git a/src/extensions/titlebar/electron.cjs b/src/extensions/titlebar/electron.cjs deleted file mode 100644 index e8ff19a..0000000 --- a/src/extensions/titlebar/electron.cjs +++ /dev/null @@ -1,28 +0,0 @@ -/** - * notion-enhancer: titlebar - * (c) 2024 dragonwocky (https://dragonwocky.me/) - * (https://notion-enhancer.github.io/) under the MIT license - */ - -"use strict"; - -module.exports = async ({}, db) => { - Object.assign((globalThis.__notionConfig ??= {}), { - titlebarStyle: "hidden", - }); - - const { ipcMain, BrowserWindow } = require("electron"); - ipcMain.on("notion-enhancer:titlebar", ({ sender }, message) => { - const window = BrowserWindow.fromWebContents(sender); - if (message === "minimize") window.minimize(); - if (message === "maximize") window.maximize(); - if (message === "unmaximize") window.unmaximize(); - if (message === "close") window.close(); - }); - - ipcMain.handle("notion-enhancer:titlebar", ({ sender }, message) => { - if (message?.query !== "is-maximized") return; - const window = BrowserWindow.fromWebContents(sender); - return window.isMaximized(); - }); -}; diff --git a/src/extensions/titlebar/mod.json b/src/extensions/titlebar/mod.json deleted file mode 100644 index 991dedb..0000000 --- a/src/extensions/titlebar/mod.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "name": "Titlebar", - "version": "0.11.1", - "id": "a5658d03-21c6-4088-bade-fa4780459133", - "description": "Replaces the operating system's default window titlebar with buttons inset into the app.", - "thumbnail": "titlebar.jpg", - "platforms": ["linux", "win32"], - "tags": ["app-only", "integrated-titlebar"], - "authors": [ - { - "name": "dragonwocky", - "homepage": "https://dragonwocky.me/", - "avatar": "https://dragonwocky.me/avatar.jpg" - } - ], - "options": [ - { - "type": "select", - "key": "titlebarStyle", - "description": "The integrated titlebar replaces the operating system's default window titlebar with buttons inset into the app's interface. Tiling window manager users may choose to fully disable the titlebar instead.", - "values": ["Integrated", "Disabled"] - }, - { "type": "heading", "label": "Icons" }, - { - "type": "file", - "key": "minimizeIcon", - "description": "Replaces the icon used for the integrated titlebar's maximize button with the uploaded .svg image.", - "extensions": ["svg"] - }, - { - "type": "file", - "key": "maximizeIcon", - "description": "Replaces the icon used for the integrated titlebar's maximize button with the uploaded .svg image.", - "extensions": ["svg"] - }, - { - "type": "file", - "key": "unmaximizeIcon", - "description": "Replaces the icon used for the integrated titlebar's maximize button with the uploaded .svg image.", - "extensions": ["svg"] - }, - { - "type": "file", - "key": "closeIcon", - "description": "Replaces the icon used for the integrated titlebar's maximize button with the uploaded .svg image.", - "extensions": ["svg"] - } - ], - "clientStyles": ["client.css"], - "clientScripts": ["client.mjs"], - "electronScripts": [ - [".webpack/main/index", "electron.cjs"], - [".webpack/renderer/tabs/preload", "tabs.cjs"] - ] -} diff --git a/src/extensions/titlebar/tabs.cjs b/src/extensions/titlebar/tabs.cjs deleted file mode 100644 index 98eab78..0000000 --- a/src/extensions/titlebar/tabs.cjs +++ /dev/null @@ -1,33 +0,0 @@ -/** - * notion-enhancer: titlebar - * (c) 2024 dragonwocky (https://dragonwocky.me/) - * (https://notion-enhancer.github.io/) under the MIT license - */ - -"use strict"; - -module.exports = async (api, db) => { - const { html, addMutationListener } = api, - { enhancerUrl, onMessage, sendMessage } = api, - titlebarStyle = await db.get("titlebarStyle"); - - // only make area draggable if tabs are visible: - // otherwise dragarea overlaps regular app topbar - const tabSelector = ".hide-scrollbar > div > div"; - addMutationListener(".hide-scrollbar", () => { - const tabCount = document.querySelectorAll(tabSelector).length; - if (tabCount > 1) document.body.classList.add("notion-tabs"); - else document.body.classList.remove("notion-tabs"); - }); - - onMessage("tabs:set-state", (state) => { - if (state.themeMode === "dark") document.body.classList.add("dark"); - else document.body.classList.remove("dark"); - }); - - if (titlebarStyle === "Disabled") return; - const $buttonsScript = document.createElement("script"); - $buttonsScript.type = "module"; - $buttonsScript.src = enhancerUrl("extensions/titlebar/buttons.mjs"); - document.head.append($buttonsScript); -}; diff --git a/src/extensions/titlebar/titlebar.jpg b/src/extensions/titlebar/titlebar.jpg deleted file mode 100644 index 0802010a110f7b84e91397d4c010baa57ab791d3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8584 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 diff --git a/src/registry.json b/src/registry.json index bb10394..4e9be1b 100644 --- a/src/registry.json +++ b/src/registry.json @@ -1,6 +1,5 @@ [ "core", - "extensions/titlebar", "extensions/topbar", "extensions/scroller", "extensions/outliner",