From 3c14f1e85d0c2c4b59bf7974fcf9893f4f0f8247 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Sat, 15 Aug 2020 22:20:20 +1000 Subject: [PATCH] right-to-left extension --- repo/right-to-left/mod.js | 40 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 repo/right-to-left/mod.js diff --git a/repo/right-to-left/mod.js b/repo/right-to-left/mod.js new file mode 100644 index 0000000..18066ee --- /dev/null +++ b/repo/right-to-left/mod.js @@ -0,0 +1,40 @@ +/* + * right-to-left + * (c) 2020 dragonwocky (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, + }); + }); + }, + }, +};