chore: move notion-enhancer btn to bottom of sidebar

This commit is contained in:
dragonwocky 2024-11-19 11:29:54 +11:00
parent 42bb015384
commit e4d335919d
No known key found for this signature in database
GPG Key ID: F89D9A66348F9AF5
2 changed files with 3 additions and 5 deletions

View File

@ -43,7 +43,7 @@ const shouldLoadThemeOverrides = async (api, db) => {
};
const insertMenu = async (api, db) => {
const notionSettings = `.notion-sidebar-container .notion-sidebar [role="button"]:has(.newSidebarSettings)`,
const inviteMember = `.notion-sidebar-container .notion-sidebar [role="button"]:has(.inviteMember)`,
{ html, addMutationListener, removeMutationListener } = api,
{ addKeyListener, platform, enhancerUrl, onMessage } = api,
menuButtonIconStyle = await db.get("menuButtonIconStyle"),
@ -90,13 +90,13 @@ const insertMenu = async (api, db) => {
const appendToDom = () => {
if (!document.body.contains($modal)) document.body.append($modal);
else if (!document.body.contains($button)) {
document.querySelector(notionSettings)?.after($button);
document.querySelector(inviteMember)?.after($button);
} else removeMutationListener(appendToDom);
};
html`<${Tooltip}>
<b>Configure the notion-enhancer and its mods</b>
<//>`.attach($button, "right");
addMutationListener(notionSettings, appendToDom);
addMutationListener(inviteMember, appendToDom);
addMutationListener(".notion-app-inner", updateMenuTheme, { subtree: false });
appendToDom();

View File

@ -6,8 +6,6 @@
"use strict";
const { escape } = require("querystring");
const IS_ELECTRON = typeof module !== "undefined";
let __db, __statements, __transactions;