From 72e5302c61b254e640cef5a149c970b2c162aad1 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Wed, 29 May 2024 18:19:54 +1000 Subject: [PATCH] fix: position floating buttons correctly on load if help is hidden --- src/core/islands/FloatingButton.mjs | 16 +++++----------- src/core/islands/Panel.mjs | 3 ++- src/load.mjs | 23 +++++++++++++++++------ 3 files changed, 24 insertions(+), 18 deletions(-) diff --git a/src/core/islands/FloatingButton.mjs b/src/core/islands/FloatingButton.mjs index 61f9e44..7ca2db7 100644 --- a/src/core/islands/FloatingButton.mjs +++ b/src/core/islands/FloatingButton.mjs @@ -13,17 +13,10 @@ const setupWrapper = () => { const addToDom = () => { const $notionAi = document.querySelector(notionAi); if (!$notionAi) return; - const gap = 12, - computedStyles = getComputedStyle($notionAi), - visible = computedStyles.getPropertyValue("display") !== "none", - width = computedStyles.getPropertyValue("width"), - right = computedStyles.getPropertyValue("right"), - offset = visible ? parseInt(width) + parseInt(right) + gap : 26, - $wrapper = html`
`; + const $wrapper = html`
`; removeMutationListener(addToDom); $notionAi.after($wrapper); res($wrapper); @@ -35,6 +28,7 @@ const setupWrapper = () => { addFloatingButton = async ($btn) => { if (document.contains($btn)) return; (await setupWrapper()).prepend($btn); + // button positioning is calculated by panel }, removeFloatingButton = ($btn) => $btn.remove(); diff --git a/src/core/islands/Panel.mjs b/src/core/islands/Panel.mjs index 26f00d0..02b8636 100644 --- a/src/core/islands/Panel.mjs +++ b/src/core/islands/Panel.mjs @@ -89,7 +89,7 @@ function Panel({ transitionDuration = 300, }) { const { modDatabase, isEnabled } = globalThis.__enhancerApi, - { html, useState, addKeyListener } = globalThis.__enhancerApi, + { html, useState, addKeyListener, MODS_LOADED } = globalThis.__enhancerApi, { addMutationListener, removeMutationListener } = globalThis.__enhancerApi, $panelToggle = html`