linwenxin hai 8 meses
pai
achega
0e2b9aa518
Modificáronse 2 ficheiros con 35 adicións e 36 borrados
  1. 32 3
      src/global-text-processor.js
  2. 3 33
      src/main.js

+ 32 - 3
src/global-text-processor.js

@@ -1,5 +1,9 @@
 import axios from 'axios'
-import { delayPerform, queuePerform } from 'js-perform-lock'
+import Vue from 'vue'
+import { delayPerform } from 'js-perform-lock'
+
+const WindowsTranslateApi = 'https://jiasm.zfire.top/translate'
+// const WindowsTranslateApi = 'http://127.0.0.1:7001'
 
 // 数据过滤校验
 function isNumberRegex(str) {
@@ -39,7 +43,7 @@ function isNumberRegex(str) {
 function pushNewText(data) {
   return new Promise(function (r, j) {
     axios
-      .post('https://jiasm.zfire.top/translate/api/v1/common/translationOfText', data)
+      .post(WindowsTranslateApi + '/api/v1/common/translationOfText', data)
       .then(response => {
         if (response.data.code === 0) {
           var obj = {}
@@ -98,7 +102,7 @@ var deferredReplacement = (function () {
   }
 })()
 
-export default {
+export const GlobalTextProcessor = {
   install(Vue) {
     Vue.mixin({
       updated() {
@@ -193,3 +197,28 @@ export default {
     })
   }
 }
+
+export function translaBeforeRegistration(cb) {
+  window.Vue_Translation_Of_Text_Type = window.localStorage.getItem('Vue_Translation_Of_Text_Type')
+  if (window?.Vue_Translation_Of_Text_Type && ['en', 'ar'].includes(window?.Vue_Translation_Of_Text_Type)) {
+    Vue.use(GlobalTextProcessor) // 注册插件
+    axios
+      .post(WindowsTranslateApi + '/api/v1/common/readTranslationOfText', {
+        targetLanguage: window?.Vue_Translation_Of_Text_Type
+      })
+      .then(({ data }) => {
+        var obj = {}
+        data?.data?.map(item => {
+          obj[item.source] = item.target
+        })
+        window.Vue_Translation_Of_Text_Data = { ...(window.Vue_Translation_Of_Text_Data || {}), ...obj }
+        console.log(window.Vue_Translation_Of_Text_Data)
+        cb?.()
+      })
+      .catch(error => {
+        cb?.()
+      })
+  } else {
+    cb?.()
+  }
+}

+ 3 - 33
src/main.js

@@ -204,42 +204,12 @@ Object.keys(directives).forEach(key => {
 Vue.config.productionTip = false
 
 // 解决翻译
-import GlobalTextProcessor from './global-text-processor' // 导入插件
-import axios from 'axios' // 导入插件
-window.Vue_Translation_Of_Text_Type = window.localStorage.getItem('Vue_Translation_Of_Text_Type')
-if (window?.Vue_Translation_Of_Text_Type && ['en', 'ar'].includes(window?.Vue_Translation_Of_Text_Type)) {
-  Vue.use(GlobalTextProcessor) // 注册插件
-  axios
-    .post('https://jiasm.zfire.top/translate/api/v1/common/readTranslationOfText', {
-      targetLanguage: window?.Vue_Translation_Of_Text_Type
-    })
-    .then(({ data }) => {
-      var obj = {}
-      data?.data?.map(item => {
-        obj[item.source] = item.target
-      })
-      window.Vue_Translation_Of_Text_Data = { ...(window.Vue_Translation_Of_Text_Data || {}), ...obj }
-      console.log(window.Vue_Translation_Of_Text_Data)
-      new Vue({
-        el: '#app',
-        router,
-        store,
-        render: h => h(App)
-      })
-    })
-    .catch(error => {
-      new Vue({
-        el: '#app',
-        router,
-        store,
-        render: h => h(App)
-      })
-    })
-} else {
+import { translaBeforeRegistration } from './global-text-processor' // 导入插件
+translaBeforeRegistration(function () {
   new Vue({
     el: '#app',
     router,
     store,
     render: h => h(App)
   })
-}
+})