mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 12:49:03 +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 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,
|
{ html, addMutationListener, removeMutationListener } = api,
|
||||||
{ addKeyListener, platform, enhancerUrl, onMessage } = api,
|
{ addKeyListener, platform, enhancerUrl, onMessage } = api,
|
||||||
menuButtonIconStyle = await db.get("menuButtonIconStyle"),
|
menuButtonIconStyle = await db.get("menuButtonIconStyle"),
|
||||||
@ -90,13 +90,13 @@ const insertMenu = async (api, db) => {
|
|||||||
const appendToDom = () => {
|
const appendToDom = () => {
|
||||||
if (!document.body.contains($modal)) document.body.append($modal);
|
if (!document.body.contains($modal)) document.body.append($modal);
|
||||||
else if (!document.body.contains($button)) {
|
else if (!document.body.contains($button)) {
|
||||||
document.querySelector(notionSettings)?.after($button);
|
document.querySelector(inviteMember)?.after($button);
|
||||||
} else removeMutationListener(appendToDom);
|
} else removeMutationListener(appendToDom);
|
||||||
};
|
};
|
||||||
html`<${Tooltip}>
|
html`<${Tooltip}>
|
||||||
<b>Configure the notion-enhancer and its mods</b>
|
<b>Configure the notion-enhancer and its mods</b>
|
||||||
<//>`.attach($button, "right");
|
<//>`.attach($button, "right");
|
||||||
addMutationListener(notionSettings, appendToDom);
|
addMutationListener(inviteMember, appendToDom);
|
||||||
addMutationListener(".notion-app-inner", updateMenuTheme, { subtree: false });
|
addMutationListener(".notion-app-inner", updateMenuTheme, { subtree: false });
|
||||||
appendToDom();
|
appendToDom();
|
||||||
|
|
||||||
|
@ -6,8 +6,6 @@
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
const { escape } = require("querystring");
|
|
||||||
|
|
||||||
const IS_ELECTRON = typeof module !== "undefined";
|
const IS_ELECTRON = typeof module !== "undefined";
|
||||||
|
|
||||||
let __db, __statements, __transactions;
|
let __db, __statements, __transactions;
|
||||||
|
Loading…
Reference in New Issue
Block a user