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