Browse Source

no message

linwenxin 8 months ago
parent
commit
003a7716f8
1 changed files with 34 additions and 0 deletions
  1. 34 0
      src/global-text-processor.js

+ 34 - 0
src/global-text-processor.js

@@ -111,9 +111,16 @@ export const GlobalTextProcessor = {
       updated() {
         this.$nextTick(() => {
           this.processTextNodes(this.$el)
+          this.autoSelect('operation-btns')
+          this.autoSelect('list-display-control-view')
         })
       },
       methods: {
+        autoSelect(name) {
+          document.querySelectorAll(`.${name}`).forEach(element => {
+            this.processAbsolutely(element)
+          })
+        },
         processTextNodes(el) {
           // 遍历子节点并处理文本内容
           if (el.nodeType === Node.ELEMENT_NODE) {
@@ -195,6 +202,33 @@ export const GlobalTextProcessor = {
               }
             })
           }
+        },
+        processAbsolutely(el) {
+          // 遍历子节点并处理文本内容
+          if (el.nodeType === Node.ELEMENT_NODE) {
+            Array.from(el.childNodes).forEach(child => {
+              if (child.nodeType === Node.TEXT_NODE) {
+                let text = child.textContent
+                let _child = child
+                if (text && !isNumberRegex(text.trim())) {
+                  try {
+                    if (window?.Vue_Translation_Of_Text_Data?.[text.trim()]) {
+                      child.textContent = window?.Vue_Translation_Of_Text_Data?.[text.trim()]
+                    } else if (text.trim()) {
+                      deferredReplacement(text.trim(), function () {
+                        if (window.Vue_Translation_Of_Text_Data[text.trim()]) {
+                          _child.textContent = window.Vue_Translation_Of_Text_Data[text.trim()]
+                        }
+                      })
+                    }
+                  } catch (error) {}
+                }
+              } else {
+                // 递归处理子节点
+                this.processAbsolutely(child)
+              }
+            })
+          }
         }
       }
     })