aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2023-09-07 16:00:20 +0800
committerGitHub <noreply@github.com>2023-09-07 08:00:20 +0000
commit1221221595122c212ace8bc50f2904bead8d2655 (patch)
treee6458fc40cb60738b213fcce628362f8185a4dc5 /web_src/js
parentd1dca38a2a92f59c7fd071f1f348caa264f18c62 (diff)
downloadgitea-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')
-rw-r--r--web_src/js/index.js2
-rw-r--r--web_src/js/modules/dirauto.js39
2 files changed, 41 insertions, 0 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js
index 8bd219bbe1..7ae4b0c0c7 100644
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -84,9 +84,11 @@ import {onDomReady} from './utils/dom.js';
import {initRepoIssueList} from './features/repo-issue-list.js';
import {initCommonIssueListQuickGoto} from './features/common-issue-list.js';
import {initRepoDiffCommitBranchesAndTags} from './features/repo-diff-commit.js';
+import {initDirAuto} from './modules/dirauto.js';
// Init Gitea's Fomantic settings
initGiteaFomantic();
+initDirAuto();
onDomReady(() => {
initGlobalCommon();
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});
+}