mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-03 12:19:02 +00:00
fix: re-add topbar buttons after visiting home
This commit is contained in:
parent
72e5302c61
commit
a09e6abff7
@ -8,7 +8,6 @@ import { checkForUpdate } from "./updateCheck.mjs";
|
||||
import { sendTelemetryPing } from "./sendTelemetry.mjs";
|
||||
import { Modal, Frame } from "./islands/Modal.mjs";
|
||||
import { MenuButton } from "./islands/MenuButton.mjs";
|
||||
import { TopbarButton } from "./islands/TopbarButton.mjs";
|
||||
import { Tooltip } from "./islands/Tooltip.mjs";
|
||||
import { Panel } from "./islands/Panel.mjs";
|
||||
|
||||
|
@ -138,17 +138,18 @@ function Panel({
|
||||
</aside>
|
||||
</div>`;
|
||||
|
||||
const topbarFavorite = ".notion-topbar .notion-topbar-favorite-button",
|
||||
const notionTopbar = ".notion-topbar",
|
||||
topbarFavorite = ".notion-topbar-favorite-button",
|
||||
$topbarToggle = html`<${TopbarButton}
|
||||
aria-label="Toggle side panel"
|
||||
icon="panel-right"
|
||||
/>`,
|
||||
addToTopbar = () => {
|
||||
if (document.contains($topbarToggle)) removeMutationListener(addToTopbar);
|
||||
if (document.contains($topbarToggle)) return;
|
||||
document.querySelector(topbarFavorite)?.after($topbarToggle);
|
||||
};
|
||||
$panelToggle.onclick = $topbarToggle.onclick = () => $panel.toggle();
|
||||
addMutationListener(topbarFavorite, addToTopbar);
|
||||
addMutationListener(notionTopbar, addToTopbar, { subtree: false });
|
||||
addToTopbar();
|
||||
|
||||
isEnabled(topbarId).then(async (topbarEnabled) => {
|
||||
|
@ -106,7 +106,7 @@ export default async function (api, db) {
|
||||
|
||||
const alwaysOnTopButton = await db.get("alwaysOnTopButton");
|
||||
if (alwaysOnTopButton === "Disabled") return;
|
||||
const topbarFavorite = `.notion-topbar ${favoriteSelector}`,
|
||||
const notionTopbar = ".notion-topbar",
|
||||
pinIcon = await db.get("pinIcon"),
|
||||
unpinIcon = await db.get("unpinIcon"),
|
||||
$pin = html`<${TopbarButton}
|
||||
@ -135,11 +135,11 @@ export default async function (api, db) {
|
||||
icon="pin-off"
|
||||
/>`,
|
||||
addToTopbar = () => {
|
||||
if (document.contains($pin)) removeMutationListener(addToTopbar);
|
||||
document.querySelector(topbarFavorite)?.after($pin, $unpin);
|
||||
if (document.contains($pin)) return;
|
||||
document.querySelector(favoriteSelector)?.after($pin, $unpin);
|
||||
};
|
||||
html`<${Tooltip}><b>${pinTooltip}</b><//>`.attach($pin, "bottom");
|
||||
html`<${Tooltip}><b>${unpinTooltip}</b><//>`.attach($unpin, "bottom");
|
||||
addMutationListener(topbarFavorite, addToTopbar);
|
||||
addToTopbar(topbarFavorite);
|
||||
addMutationListener(notionTopbar, addToTopbar, { subtree: false });
|
||||
addToTopbar();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user