86 lines
2.0 KiB
Vue
86 lines
2.0 KiB
Vue
<template>
|
|
<FormBase>
|
|
<FormSuspense :p="init">
|
|
<FormSwitch v-model="enableServiceWorker">
|
|
{{ $ts.enableServiceworker }}
|
|
<template #desc>{{ $ts.serviceworkerInfo }}</template>
|
|
</FormSwitch>
|
|
|
|
<template v-if="enableServiceWorker">
|
|
<FormInput v-model="swPublicKey">
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
|
Public key
|
|
</FormInput>
|
|
|
|
<FormInput v-model="swPrivateKey">
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
|
Private key
|
|
</FormInput>
|
|
</template>
|
|
|
|
<FormButton primary @click="save"><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
|
</FormSuspense>
|
|
</FormBase>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
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';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
FormSwitch,
|
|
FormInput,
|
|
FormBase,
|
|
FormGroup,
|
|
FormButton,
|
|
FormSuspense,
|
|
},
|
|
|
|
emits: ['info'],
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: 'ServiceWorker',
|
|
icon: 'fas fa-bolt',
|
|
bg: 'var(--bg)',
|
|
},
|
|
enableServiceWorker: false,
|
|
swPublicKey: null,
|
|
swPrivateKey: null,
|
|
}
|
|
},
|
|
|
|
async mounted() {
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
},
|
|
|
|
methods: {
|
|
async init() {
|
|
const meta = await os.api('meta', { detail: true });
|
|
this.enableServiceWorker = meta.enableServiceWorker;
|
|
this.swPublicKey = meta.swPublickey;
|
|
this.swPrivateKey = meta.swPrivateKey;
|
|
},
|
|
save() {
|
|
os.apiWithDialog('admin/update-meta', {
|
|
enableServiceWorker: this.enableServiceWorker,
|
|
swPublicKey: this.swPublicKey,
|
|
swPrivateKey: this.swPrivateKey,
|
|
}).then(() => {
|
|
fetchInstance();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
</script>
|