|
@@ -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?.()
|
|
|
+ }
|
|
|
+}
|