right-to-left extension

This commit is contained in:
dragonwocky 2020-08-15 22:20:20 +10:00
parent 330e5a5f62
commit fac7a72654
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
2 changed files with 42 additions and 2 deletions

View File

@ -22,11 +22,11 @@ complete rewrite with node.js.
- theme: "gameish" = a purple, "gamer-styled" theme with a blocky-font. - theme: "gameish" = a purple, "gamer-styled" theme with a blocky-font.
- theme: "pastel dark" = a true dark theme with a hint of pastel. - theme: "pastel dark" = a true dark theme with a hint of pastel.
- extension: "emojiset" = pick from a variety of emoji styles to use. - extension: "emojiset" = pick from a variety of emoji styles to use.
- extension: "night shift" = sync dark/light theme with the system (overrides normal theme setting).
- extension: "right-to-left" = enables auto rtl/ltr text direction detection. (ported from [github.com/obahareth/notion-rtl](https://github.com/obahareth/notion-rtl).)
//todo //todo
- extension: "night light" = sync dark/light theme with the system (overrides normal theme setting).
- extension: "right-to-left" = enables auto rtl/ltr text direction detection. (ported from [github.com/obahareth/notion-rtl](https://github.com/obahareth/notion-rtl).)
- extension: "weekly view" = view 7-day calendars. (ported from [github.com/adihd/notionweeklyview](https://github.com/adihd/notionweeklyview).) - extension: "weekly view" = view 7-day calendars. (ported from [github.com/adihd/notionweeklyview](https://github.com/adihd/notionweeklyview).)
- extension: "property layout" = auto-collapse page properties that usually push down page content. (ported from [github.com/alexander-kazakov/notion-layout-extension](https://github.com/alexander-kazakov/notion-layout-extension).) - extension: "property layout" = auto-collapse page properties that usually push down page content. (ported from [github.com/alexander-kazakov/notion-layout-extension](https://github.com/alexander-kazakov/notion-layout-extension).)

40
mods/right-to-left/mod.js Normal file
View File

@ -0,0 +1,40 @@
/*
* right-to-left
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) 2020 Omar Bahareth
* under the MIT license
*/
'use strict';
module.exports = {
id: 'b28ee2b9-4d34-4e36-be8a-ab5be3d79f51',
tags: ['extension'],
name: 'right-to-left',
desc: 'enables auto rtl/ltr text direction detection.',
version: '1.3.0',
author: 'obahareth',
hacks: {
'renderer/preload.js'(store, __exports) {
document.addEventListener('readystatechange', (event) => {
if (document.readyState !== 'complete') return false;
const observer = new MutationObserver((list, observer) => {
document
.querySelectorAll(
'.notion-page-content > div[data-block-id]:not([dir])'
)
.forEach((block) => block.setAttribute('dir', 'auto'));
document
.querySelectorAll("div[placeholder='List']")
.forEach((item) => {
item.style['text-align'] = 'start';
});
});
observer.observe(document, {
childList: true,
subtree: true,
});
});
},
},
};