2021-04-22 15:29:33 +02:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
|
|
|
<FormSuspense :p="init">
|
|
|
|
<FormGroup>
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="summalyProxy">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-link"></i></template>
|
|
|
|
Summaly Proxy URL
|
|
|
|
</FormInput>
|
|
|
|
</FormGroup>
|
2021-08-15 13:26:44 +02:00
|
|
|
<FormGroup>
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="deeplAuthKey">
|
2021-08-15 13:26:44 +02:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
|
|
|
DeepL Auth Key
|
|
|
|
</FormInput>
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormSwitch v-model="deeplIsPro">
|
2021-08-24 06:19:21 +02:00
|
|
|
Pro account
|
|
|
|
</FormSwitch>
|
2021-08-15 13:26:44 +02:00
|
|
|
</FormGroup>
|
2021-11-19 11:36:12 +01:00
|
|
|
<FormButton primary @click="save"><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
2021-04-22 15:29:33 +02:00
|
|
|
</FormSuspense>
|
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormSwitch from '@/components/debobigego/switch.vue';
|
|
|
|
import FormInput from '@/components/debobigego/input.vue';
|
|
|
|
import FormButton from '@/components/debobigego/button.vue';
|
|
|
|
import FormBase from '@/components/debobigego/base.vue';
|
|
|
|
import FormGroup from '@/components/debobigego/group.vue';
|
|
|
|
import FormSuspense from '@/components/debobigego/suspense.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
|
|
|
import { fetchInstance } from '@/instance';
|
2021-04-22 15:29:33 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormSwitch,
|
|
|
|
FormInput,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
FormButton,
|
|
|
|
FormSuspense,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: this.$ts.other,
|
2021-10-10 08:19:16 +02:00
|
|
|
icon: 'fas fa-cogs',
|
|
|
|
bg: 'var(--bg)',
|
2021-04-22 15:29:33 +02:00
|
|
|
},
|
|
|
|
summalyProxy: '',
|
2021-08-15 13:26:44 +02:00
|
|
|
deeplAuthKey: '',
|
2021-08-24 06:19:21 +02:00
|
|
|
deeplIsPro: false,
|
2021-04-22 15:29:33 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async mounted() {
|
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async init() {
|
|
|
|
const meta = await os.api('meta', { detail: true });
|
|
|
|
this.summalyProxy = meta.summalyProxy;
|
2021-08-15 13:26:44 +02:00
|
|
|
this.deeplAuthKey = meta.deeplAuthKey;
|
2021-08-24 06:19:21 +02:00
|
|
|
this.deeplIsPro = meta.deeplIsPro;
|
2021-04-22 15:29:33 +02:00
|
|
|
},
|
|
|
|
save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
summalyProxy: this.summalyProxy,
|
2021-08-15 13:26:44 +02:00
|
|
|
deeplAuthKey: this.deeplAuthKey,
|
2021-08-24 06:19:21 +02:00
|
|
|
deeplIsPro: this.deeplIsPro,
|
2021-04-22 15:29:33 +02:00
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|