From d5e0810915670f2ad7f1eefc9b87ac5838390e01 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Fri, 19 Jul 2024 21:11:27 +1000 Subject: [PATCH] fix: sidebar button appending settings button has been moved into the workspace/acct dropdown --- src/core/client.mjs | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/core/client.mjs b/src/core/client.mjs index 5554663..f090690 100644 --- a/src/core/client.mjs +++ b/src/core/client.mjs @@ -44,7 +44,6 @@ const shouldLoadThemeOverrides = async (api, db) => { const insertMenu = async (api, db) => { const notionSidebar = `.notion-sidebar-container .notion-sidebar > :nth-child(3) > div > :nth-child(2)`, - notionSidebarButtons = `${notionSidebar} > [role="button"]`, { html, addMutationListener, removeMutationListener } = api, { addKeyListener, platform, enhancerUrl, onMessage } = api, menuButtonIconStyle = await db.get("menuButtonIconStyle"), @@ -88,13 +87,10 @@ const insertMenu = async (api, db) => { >notion-enhancer `; const appendToDom = () => { - document.body.append($modal); - const btns = document.querySelectorAll(notionSidebarButtons); - for (const $btn of btns) { - if ($btn.textContent.includes("Settings")) $btn.after($button); - } - const appended = document.contains($modal) && document.contains($button); - if (appended) removeMutationListener(appendToDom); + if (!document.body.contains($modal)) document.body.append($modal); + else if (!document.body.contains($button)) { + document.querySelector(notionSidebar)?.append($button); + } else removeMutationListener(appendToDom); }; html`<${Tooltip}> Configure the notion-enhancer and its mods