diff --git a/src/extensions/right-to-left/client.css b/src/extensions/right-to-left/client.css index 3597fcc..daebfb6 100644 --- a/src/extensions/right-to-left/client.css +++ b/src/extensions/right-to-left/client.css @@ -1,26 +1,15 @@ /** * notion-enhancer: right to left * (c) 2021 obahareth (https://omar.engineer) - * (c) 2021 dragonwocky (https://dragonwocky.me/) + * (c) 2024 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */ -.notion-page-content - .notion-table_of_contents-block - > div - > div - > a - > div - > div[style*='margin-left: 24px'] { +/* indent rtl toc header levels, + * https://github.com/notion-enhancer/notion-enhancer/issues/616 */ +.notion-table_of_contents-block div[style*="margin-left: 24px"] { margin-inline-start: 24px; } - -.notion-page-content - .notion-table_of_contents-block - > div - > div - > a - > div - > div[style*='margin-left: 48px'] { +.notion-table_of_contents-block div[style*="margin-left: 48px"] { margin-inline-start: 48px; } diff --git a/src/extensions/right-to-left/client.mjs b/src/extensions/right-to-left/client.mjs index decba98..dbc7c4f 100644 --- a/src/extensions/right-to-left/client.mjs +++ b/src/extensions/right-to-left/client.mjs @@ -1,50 +1,47 @@ /** * notion-enhancer: right to left * (c) 2021 obahareth (https://omar.engineer) - * (c) 2021 dragonwocky (https://dragonwocky.me/) + * (c) 2024 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */ -'use strict'; - -export default async function ({ web }, db) { - const pageContentSelector = ` - .notion-page-content > - div[data-block-id]:not([dir]):not(.notion-column_list-block):not(.notion-collection_view_page-block), - [placeholder="Untitled"]:not([dir]), - .notion-column-block > div[data-block-id]:not([dir]), - .notion-collection_view-block:not([dir]), - .notion-table-view:not([dir]), - .notion-board-view:not([dir]), - .notion-gallery-view:not([dir])`, - listItemSelector = ` - div[placeholder="List"]:not([style*="text-align: start"]), - div[placeholder="To-do"]:not([style*="text-align: start"]), - div[placeholder="Toggle"]:not([style*="text-align: start"])`, +export default async (api) => { + const { addMutationListener } = api, + pageContentSelector = ` + :is(.notion-page-content > + div[data-block-id]:not(.notion-column_list-block):not(.notion-collection_view_page-block), + .notion-page-content .notion-table_of_contents-block a, + [placeholder="Untitled"], + .notion-column-block > div[data-block-id], + .notion-collection_view-block, + .notion-table-view, + .notion-board-view, + .notion-gallery-view):not([dir])`, + listItemSelector = `:is(div[placeholder="List"], div[placeholder="To-do"], + div[placeholder="Toggle"]):not([style*="text-align: start"])`, inlineEquationSelector = '.notion-text-equation-token .katex-html:not([style*="direction: rtl;"])'; - const autoAlignText = () => { document .querySelectorAll(pageContentSelector) - .forEach(($block) => $block.setAttribute('dir', 'auto')); + .forEach(($block) => $block.setAttribute("dir", "auto")); document.querySelectorAll(listItemSelector).forEach(($item) => { - $item.style['text-align'] = 'start'; + $item.style["text-align"] = "start"; }); document.querySelectorAll(inlineEquationSelector).forEach(($equation) => { - $equation.style.direction = 'rtl'; - $equation.style.display = 'inline-flex'; - $equation.style.flexDirection = 'row-reverse'; + $equation.style.direction = "rtl"; + $equation.style.display = "inline-flex"; + $equation.style.flexDirection = "row-reverse"; for (const $symbol of $equation.children) { - $symbol.style.direction = 'ltr'; + $symbol.style.direction = "ltr"; } }); }; - web.addDocumentObserver(autoAlignText, [ + + const textareas = [ pageContentSelector, listItemSelector, inlineEquationSelector, - ]); - await web.whenReady(); - autoAlignText(); -} + ].join(","); + addMutationListener(textareas, autoAlignText); +}; diff --git a/src/extensions/right-to-left/mod.json b/src/extensions/right-to-left/mod.json index 1a1d396..9ff86a5 100644 --- a/src/extensions/right-to-left/mod.json +++ b/src/extensions/right-to-left/mod.json @@ -1,23 +1,21 @@ { - "name": "right to left", - "id": "b28ee2b9-4d34-4e36-be8a-ab5be3d79f51", + "name": "Right To Left", "version": "1.5.0", - "description": "enables auto rtl/ltr text direction detection.", - "preview": "right-to-left.jpg", - "tags": ["extension", "usability"], + "id": "b28ee2b9-4d34-4e36-be8a-ab5be3d79f51", + "description": "Enables automatic writing direction detection for languages that read right-to-left.", + "tags": ["rtl", "language-support"], "authors": [ + { + "name": "dragonwocky", + "homepage": "https://dragonwocky.me/", + "avatar": "https://dragonwocky.me/avatar.jpg" + }, { "name": "obahareth", - "email": "omar@omar.engineer", "homepage": "https://omar.engineer", "avatar": "https://avatars.githubusercontent.com/u/3428118" } ], - "js": { - "client": ["client.mjs"] - }, - "css": { - "client": ["client.css"] - }, - "options": [] + "clientStyles": ["client.css"], + "clientScripts": ["client.mjs"] } diff --git a/src/extensions/right-to-left/right-to-left.jpg b/src/extensions/right-to-left/right-to-left.jpg deleted file mode 100644 index 38956ed..0000000 Binary files a/src/extensions/right-to-left/right-to-left.jpg and /dev/null differ diff --git a/src/registry.json b/src/registry.json index 6ddcc59..070a46d 100644 --- a/src/registry.json +++ b/src/registry.json @@ -7,6 +7,7 @@ "extensions/outliner", "extensions/word-counter", "extensions/line-numbers", + "extensions/right-to-left", "extensions/no-peeking", "extensions/focus", "themes/classic-dark"