From 2365b9043c21e557591c99de99e84dbc5bbeb2e3 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Wed, 29 May 2024 21:47:17 +1000 Subject: [PATCH] style(tweaks): hide slash menu, placeholders & default icons --- src/core/islands/Panel.mjs | 12 +++++- src/extensions/tweaks/client.css | 69 ++++++++++++++++++-------------- src/extensions/tweaks/client.mjs | 14 ++++--- src/extensions/tweaks/mod.json | 11 +---- 4 files changed, 60 insertions(+), 46 deletions(-) diff --git a/src/core/islands/Panel.mjs b/src/core/islands/Panel.mjs index ef155c6..1a01823 100644 --- a/src/core/islands/Panel.mjs +++ b/src/core/islands/Panel.mjs @@ -9,8 +9,9 @@ import { Tooltip } from "./Tooltip.mjs"; import { TopbarButton } from "./TopbarButton.mjs"; import { Select } from "../menu/islands/Select.mjs"; -const topbarId = "e0700ce3-a9ae-45f5-92e5-610ded0e348d", - coreId = "0f0bf8b6-eae6-4273-b307-8fc43f2ee082"; +const coreId = "0f0bf8b6-eae6-4273-b307-8fc43f2ee082", + topbarId = "e0700ce3-a9ae-45f5-92e5-610ded0e348d", + tweaksId = "5174a483-c88d-4bf8-a95f-35cd330b76e2"; // note: these islands are not reusable. // panel views can be added via addPanelView, @@ -223,6 +224,13 @@ function Panel({ Object.assign(animationState, to); }; + isEnabled(tweaksId).then(async (tweaksEnabled) => { + if (!tweaksEnabled) return; + const tweaksDatabase = await modDatabase(tweaksId), + snappyTransitions = await tweaksDatabase.get("snappyTransitions"); + if (snappyTransitions) transitionDuration = 0; + }); + // dragging the resize handle horizontally will // adjust the width of the panel correspondingly const $resizeHandle = html`
.notion-record-icon svg.page) { + display: none !important; +} + +body[data-tweaks*=",snappyTransitions,"] * { + animation-duration: 0s !important; + transition-duration: 0s !important; +} + /* pages */ -body[data-tweaks*=",normalisedDatabaseScrolling,"] { - .notion-page-content { - .notion-collection_view-block { - width: 100% !important; - } - .notion-board-view { - margin-left: 0 !important; - margin-right: 0 !important; - } - :is(.notion-collection_view-block, .notion-collection-view-body) - > [style*="padding"] { - padding-left: 0 !important; - padding-right: 0 !important; - min-width: auto !important; - } +body[data-tweaks*=",normalisedDatabaseScrolling,"] .notion-page-content { + .notion-collection_view-block { + width: 100% !important; + } + .notion-board-view { + margin-left: 0 !important; + margin-right: 0 !important; + } + :is(.notion-collection_view-block, .notion-collection-view-body) + > [style*="padding"] { + padding-left: 0 !important; + padding-right: 0 !important; + min-width: auto !important; } } @@ -53,18 +74,6 @@ body[data-tweaks*=",normalisedDatabaseScrolling,"] { --theme--page-padding: calc(48px + env(safe-area-inset-left)); } -.enhancer--tweak-snappy_transitions * { - animation-duration: 0s !important; - transition-duration: 0s !important; -} -.enhancer--tweak-snappy_transitions .notion-selectable-halo { - opacity: 1 !important; -} - -.enhancer--tweak-hide_slash_for_commands [contenteditable]:empty:after { - content: " " !important; -} - .enhancer--tweak-hide_default_page_icons .notion-sidebar a diff --git a/src/extensions/tweaks/client.mjs b/src/extensions/tweaks/client.mjs index 8e2d8cb..256b109 100644 --- a/src/extensions/tweaks/client.mjs +++ b/src/extensions/tweaks/client.mjs @@ -6,12 +6,16 @@ const tweaksId = "5174a483-c88d-4bf8-a95f-35cd330b76e2"; export default async (api, db) => { - const { getMods } = api, + const { getMods, addKeyListener } = api, [{ options }] = await getMods((mod) => mod.id === tweaksId), - tweaks = options.filter((opt) => opt.key).map((opt) => opt.key); + tweaks = options.filter((opt) => opt.key).map((opt) => opt.key), + enabled = {}; + for (const tweak of tweaks) if (await db.get(tweak)) enabled[tweak] = true; // inc. leading & trailing comma for selectors (see client.css) - let enabled = ","; - for (const tweak of tweaks) if (await db.get(tweak)) enabled += tweak + ","; - document.body.dataset.tweaks = enabled; + document.body.dataset.tweaks = + "," + tweaks.filter((tweak) => enabled[tweak]).join(",") + ","; + + if (enabled["hideSlashMenu"]) + addKeyListener("/", () => document.body.click(), true); }; diff --git a/src/extensions/tweaks/mod.json b/src/extensions/tweaks/mod.json index 54af975..d298b63 100644 --- a/src/extensions/tweaks/mod.json +++ b/src/extensions/tweaks/mod.json @@ -27,9 +27,8 @@ }, { "type": "toggle", - "label": "Hide Notion AI", - "key": "hideNotionAI", - "description": "Hide the 'Ask AI' and 'Write ... with AI' prompts.", + "key": "hidePlaceholders", + "description": "Hides the text shown when an empty block is waiting to be filled in, e.g. \"Write something, or press 'space' for AI, '/' for commands...\"", "value": false }, { @@ -38,12 +37,6 @@ "description": "Hide the default page icons.", "value": false }, - { - "type": "toggle", - "key": "hoverableTimelineTitles", - "description": "Shows the full title of a timeline item on hover if it has been truncated for being too long.", - "value": false - }, { "type": "toggle", "key": "snappyTransitions",