From d651b5ceeaedfa24f74fb93c2b09134ccb566dfc Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Fri, 15 Nov 2024 15:03:41 +1100 Subject: [PATCH] feat(outliner): hide builtin floating toc when outliner is enabled --- src/extensions/outliner/client.mjs | 11 +++++++++++ src/extensions/outliner/mod.json | 16 +++++++++++++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/src/extensions/outliner/client.mjs b/src/extensions/outliner/client.mjs index 42b33b7..33c4f84 100644 --- a/src/extensions/outliner/client.mjs +++ b/src/extensions/outliner/client.mjs @@ -40,6 +40,17 @@ export default async (api, db) => { `, }); + const replaceFloatingOutline = await db.get("replaceFloatingOutline"); + if (replaceFloatingOutline) { + document.head.append(html``); + } + let $page, $scroller; const getHeadings = () => { if (!$page) return []; diff --git a/src/extensions/outliner/mod.json b/src/extensions/outliner/mod.json index daa15bc..b04f1ef 100644 --- a/src/extensions/outliner/mod.json +++ b/src/extensions/outliner/mod.json @@ -3,7 +3,9 @@ "version": "0.5.0", "id": "87e077cc-5402-451c-ac70-27cc4ae65546", "description": "Adds a table of contents to the side panel to overview and navigate the current page's headings and subheadings.", - "tags": ["panel"], + "tags": [ + "panel" + ], "authors": [ { "name": "dragonwocky", @@ -28,7 +30,15 @@ "key": "equationRendering", "description": "Attempts to render special symbols from inline equations in headings. Note that position- and size-based formatting will be lost when displaying equations in the Outliner's table of contents. Disable this to display the raw TeX equation instead.", "value": true + }, + { + "type": "toggle", + "key": "replaceFloatingOutline", + "description": "Disables Notion's builtin floating table of contents for a complete switch to the Outliner.", + "value": true } ], - "clientScripts": ["client.mjs"] -} + "clientScripts": [ + "client.mjs" + ] +} \ No newline at end of file