72 lines
1.7 KiB
Vue
72 lines
1.7 KiB
Vue
|
<template>
|
||
|
<FormBase>
|
||
|
<FormSuspense :p="init">
|
||
|
<FormTextarea v-model:value="blockedHosts">
|
||
|
<span>{{ $ts.blockedInstances }}</span>
|
||
|
<template #desc>{{ $ts.blockedInstancesDescription }}</template>
|
||
|
</FormTextarea>
|
||
|
|
||
|
<FormButton @click="save" primary><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
||
|
</FormSuspense>
|
||
|
</FormBase>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from 'vue';
|
||
|
import FormSwitch from '@client/components/form/switch.vue';
|
||
|
import FormInput from '@client/components/form/input.vue';
|
||
|
import FormButton from '@client/components/form/button.vue';
|
||
|
import FormBase from '@client/components/form/base.vue';
|
||
|
import FormGroup from '@client/components/form/group.vue';
|
||
|
import FormTextarea from '@client/components/form/textarea.vue';
|
||
|
import FormInfo from '@client/components/form/info.vue';
|
||
|
import FormSuspense from '@client/components/form/suspense.vue';
|
||
|
import * as os from '@client/os';
|
||
|
import * as symbols from '@client/symbols';
|
||
|
import { fetchInstance } from '@client/instance';
|
||
|
|
||
|
export default defineComponent({
|
||
|
components: {
|
||
|
FormSwitch,
|
||
|
FormInput,
|
||
|
FormBase,
|
||
|
FormGroup,
|
||
|
FormButton,
|
||
|
FormTextarea,
|
||
|
FormInfo,
|
||
|
FormSuspense,
|
||
|
},
|
||
|
|
||
|
emits: ['info'],
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
[symbols.PAGE_INFO]: {
|
||
|
title: this.$ts.instanceBlocking,
|
||
|
icon: 'fas fa-ban'
|
||
|
},
|
||
|
blockedHosts: '',
|
||
|
}
|
||
|
},
|
||
|
|
||
|
async mounted() {
|
||
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
async init() {
|
||
|
const meta = await os.api('meta', { detail: true });
|
||
|
this.blockedHosts = meta.blockedHosts.join('\n');
|
||
|
},
|
||
|
|
||
|
save() {
|
||
|
os.apiWithDialog('admin/update-meta', {
|
||
|
blockedHosts: this.blockedHosts.split('\n') || [],
|
||
|
}).then(() => {
|
||
|
fetchInstance();
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|