Compare commits

...

5 Commits

6 changed files with 50 additions and 60 deletions

View File

@ -1,26 +1,15 @@
/** /**
* notion-enhancer: right to left * notion-enhancer: right to left
* (c) 2021 obahareth <omar@omar.engineer> (https://omar.engineer) * (c) 2021 obahareth <omar@omar.engineer> (https://omar.engineer)
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/) * (c) 2024 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://notion-enhancer.github.io/) under the MIT license * (https://notion-enhancer.github.io/) under the MIT license
*/ */
.notion-page-content /* indent rtl toc header levels,
.notion-table_of_contents-block * https://github.com/notion-enhancer/notion-enhancer/issues/616 */
> div .notion-table_of_contents-block div[style*="margin-left: 24px"] {
> div
> a
> div
> div[style*='margin-left: 24px'] {
margin-inline-start: 24px; margin-inline-start: 24px;
} }
.notion-table_of_contents-block div[style*="margin-left: 48px"] {
.notion-page-content
.notion-table_of_contents-block
> div
> div
> a
> div
> div[style*='margin-left: 48px'] {
margin-inline-start: 48px; margin-inline-start: 48px;
} }

View File

@ -1,50 +1,52 @@
/** /**
* notion-enhancer: right to left * notion-enhancer: right to left
* (c) 2021 obahareth <omar@omar.engineer> (https://omar.engineer) * (c) 2021 obahareth <omar@omar.engineer> (https://omar.engineer)
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/) * (c) 2024 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://notion-enhancer.github.io/) under the MIT license * (https://notion-enhancer.github.io/) under the MIT license
*/ */
'use strict'; export default async (api) => {
const { addMutationListener } = api,
export default async function ({ web }, db) { pageContentSelector = `
const pageContentSelector = ` :is([placeholder="Untitled"],
.notion-page-content > .notion-page-content :is(
div[data-block-id]:not([dir]):not(.notion-column_list-block):not(.notion-collection_view_page-block), div[data-block-id]:not(.notion-column_list-block,
[placeholder="Untitled"]:not([dir]), .notion-collection_view_page-block, .notion-header-block,
.notion-column-block > div[data-block-id]:not([dir]), .notion-sub_header-block, .notion-sub_sub_header-block
.notion-collection_view-block:not([dir]), .notion-toggle-block, .notion-table_of_contents-block),
.notion-table-view:not([dir]), .notion-header-block [placeholder="Heading 1"],
.notion-board-view:not([dir]), .notion-sub_header-block [placeholder="Heading 2"],
.notion-gallery-view:not([dir])`, .notion-sub_sub_header-block [placeholder="Heading 3"],
listItemSelector = ` .notion-toggle-block [placeholder="Toggle"],
div[placeholder="List"]:not([style*="text-align: start"]), .notion-table_of_contents-block a),
div[placeholder="To-do"]:not([style*="text-align: start"]), .notion-page-view-discussion [data-content-editable-leaf],
div[placeholder="Toggle"]:not([style*="text-align: start"])`, .notion-table-view-header-cell, .notion-table-view-cell,
.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 = inlineEquationSelector =
'.notion-text-equation-token .katex-html:not([style*="direction: rtl;"])'; '.notion-text-equation-token .katex-html:not([style*="direction: rtl;"])';
const autoAlignText = () => { const autoAlignText = () => {
document document
.querySelectorAll(pageContentSelector) .querySelectorAll(pageContentSelector)
.forEach(($block) => $block.setAttribute('dir', 'auto')); .forEach(($block) => $block.setAttribute("dir", "auto"));
document.querySelectorAll(listItemSelector).forEach(($item) => { document.querySelectorAll(listItemSelector).forEach(($item) => {
$item.style['text-align'] = 'start'; $item.style["text-align"] = "start";
}); });
document.querySelectorAll(inlineEquationSelector).forEach(($equation) => { document.querySelectorAll(inlineEquationSelector).forEach(($equation) => {
$equation.style.direction = 'rtl'; $equation.style.direction = "rtl";
$equation.style.display = 'inline-flex'; $equation.style.display = "inline-flex";
$equation.style.flexDirection = 'row-reverse'; $equation.style.flexDirection = "row-reverse";
for (const $symbol of $equation.children) { for (const $symbol of $equation.children) {
$symbol.style.direction = 'ltr'; $symbol.style.direction = "ltr";
} }
}); });
}; };
web.addDocumentObserver(autoAlignText, [
const textareas = [
pageContentSelector, pageContentSelector,
listItemSelector, listItemSelector,
inlineEquationSelector, inlineEquationSelector,
]); ].join(",");
await web.whenReady(); addMutationListener(textareas, autoAlignText);
autoAlignText(); };
}

View File

@ -1,23 +1,21 @@
{ {
"name": "right to left", "name": "Right To Left",
"id": "b28ee2b9-4d34-4e36-be8a-ab5be3d79f51",
"version": "1.5.0", "version": "1.5.0",
"description": "enables auto rtl/ltr text direction detection.", "id": "b28ee2b9-4d34-4e36-be8a-ab5be3d79f51",
"preview": "right-to-left.jpg", "description": "Enables automatic writing direction detection for languages that read right-to-left.",
"tags": ["extension", "usability"], "tags": ["rtl", "language-support"],
"authors": [ "authors": [
{
"name": "dragonwocky",
"homepage": "https://dragonwocky.me/",
"avatar": "https://dragonwocky.me/avatar.jpg"
},
{ {
"name": "obahareth", "name": "obahareth",
"email": "omar@omar.engineer",
"homepage": "https://omar.engineer", "homepage": "https://omar.engineer",
"avatar": "https://avatars.githubusercontent.com/u/3428118" "avatar": "https://avatars.githubusercontent.com/u/3428118"
} }
], ],
"js": { "clientStyles": ["client.css"],
"client": ["client.mjs"] "clientScripts": ["client.mjs"]
},
"css": {
"client": ["client.css"]
},
"options": []
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View File

@ -43,8 +43,8 @@ export default async (api, db) => {
const updateStats = debounce(() => { const updateStats = debounce(() => {
if (!document.contains($page)) $page = document.querySelector(page); if (!document.contains($page)) $page = document.querySelector(page);
if (!$page) return; if (!$page) return;
const text = $page.innerText, const text = $page.innerText.trim(),
words = text.split(/[^\w]+/).length, words = text.length ? text.split(/\s+/).length : 0,
sentences = text.split(".").filter((s) => s.trim()).length, sentences = text.split(".").filter((s) => s.trim()).length,
blocks = $page.querySelectorAll("[data-block-id]").length; blocks = $page.querySelectorAll("[data-block-id]").length;
$wordCount.setCount(words); $wordCount.setCount(words);

View File

@ -7,6 +7,7 @@
"extensions/outliner", "extensions/outliner",
"extensions/word-counter", "extensions/word-counter",
"extensions/line-numbers", "extensions/line-numbers",
"extensions/right-to-left",
"extensions/no-peeking", "extensions/no-peeking",
"extensions/focus", "extensions/focus",
"themes/classic-dark" "themes/classic-dark"