diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-09-07 16:00:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 08:00:20 +0000 |
commit | 1221221595122c212ace8bc50f2904bead8d2655 (patch) | |
tree | e6458fc40cb60738b213fcce628362f8185a4dc5 /web_src/js/modules | |
parent | d1dca38a2a92f59c7fd071f1f348caa264f18c62 (diff) | |
download | gitea-1221221595122c212ace8bc50f2904bead8d2655.tar.gz gitea-1221221595122c212ace8bc50f2904bead8d2655.zip |
Add "dir=auto" for input/textarea elements by default (#26735)
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'web_src/js/modules')
-rw-r--r-- | web_src/js/modules/dirauto.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/web_src/js/modules/dirauto.js b/web_src/js/modules/dirauto.js new file mode 100644 index 0000000000..91f71a5b85 --- /dev/null +++ b/web_src/js/modules/dirauto.js @@ -0,0 +1,39 @@ +// 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 (addedNode.nodeType !== Node.ELEMENT_NODE && addedNode.nodeType !== Node.DOCUMENT_FRAGMENT_NODE) continue; + 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}); +} |