summaryrefslogtreecommitdiffstats
path: root/web_src/js/modules/dirauto.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
committerDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
commitdd136858f1ea40ad3c94191d647487fa4f31926c (patch)
tree58fec94a7b2a12510c9664b21793f1ed560c6518 /web_src/js/modules/dirauto.js
parentInitial commit. (diff)
downloadforgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.tar.xz
forgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.zip
Adding upstream version 9.0.0.upstream/9.0.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'web_src/js/modules/dirauto.js')
-rw-r--r--web_src/js/modules/dirauto.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/web_src/js/modules/dirauto.js b/web_src/js/modules/dirauto.js
new file mode 100644
index 0000000..cd90f81
--- /dev/null
+++ b/web_src/js/modules/dirauto.js
@@ -0,0 +1,40 @@
+import {isDocumentFragmentOrElementNode} from '../utils/dom.js';
+
+// for performance considerations, it only uses performant syntax
+function attachDirAuto(el) {
+ if (el.type !== 'hidden' &&
+ el.type !== 'checkbox' &&
+ el.type !== 'radio' &&
+ el.type !== 'range' &&
+ el.type !== 'color') {
+ el.dir = 'auto';
+ }
+}
+
+export function initDirAuto() {
+ const observer = new MutationObserver((mutationList) => {
+ const len = mutationList.length;
+ for (let i = 0; i < len; i++) {
+ const mutation = mutationList[i];
+ const len = mutation.addedNodes.length;
+ for (let i = 0; i < len; i++) {
+ const addedNode = mutation.addedNodes[i];
+ if (!isDocumentFragmentOrElementNode(addedNode)) continue;
+ if (addedNode.nodeName === 'INPUT' || addedNode.nodeName === 'TEXTAREA') attachDirAuto(addedNode);
+ const children = addedNode.querySelectorAll('input, textarea');
+ const len = children.length;
+ for (let childIdx = 0; childIdx < len; childIdx++) {
+ attachDirAuto(children[childIdx]);
+ }
+ }
+ }
+ });
+
+ const docNodes = document.querySelectorAll('input, textarea');
+ const len = docNodes.length;
+ for (let i = 0; i < len; i++) {
+ attachDirAuto(docNodes[i]);
+ }
+
+ observer.observe(document, {subtree: true, childList: true});
+}