mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-03 12:19:02 +00:00
chore: move notion-enhancer btn to bottom of sidebar
This commit is contained in:
parent
42bb015384
commit
e4d335919d
@ -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();
|
||||
|
||||
|
@ -6,8 +6,6 @@
|
||||
|
||||
"use strict";
|
||||
|
||||
const { escape } = require("querystring");
|
||||
|
||||
const IS_ELECTRON = typeof module !== "undefined";
|
||||
|
||||
let __db, __statements, __transactions;
|
||||
|
Loading…
Reference in New Issue
Block a user