2021-04-22 15:29:33 +02:00
|
|
|
<template>
|
2022-01-04 10:47:54 +01:00
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
2021-04-22 15:29:33 +02:00
|
|
|
<FormSuspense :p="init">
|
2022-01-04 10:47:54 +01:00
|
|
|
<FormTextarea v-model="blockedHosts" class="_formBlock">
|
2022-05-17 18:31:59 +02:00
|
|
|
<span>{{ i18n.ts.blockedInstances }}</span>
|
|
|
|
<template #caption>{{ i18n.ts.blockedInstancesDescription }}</template>
|
2021-04-22 15:29:33 +02:00
|
|
|
</FormTextarea>
|
|
|
|
|
2022-05-17 18:31:59 +02:00
|
|
|
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ i18n.ts.save }}</FormButton>
|
2021-04-22 15:29:33 +02:00
|
|
|
</FormSuspense>
|
2022-01-04 10:47:54 +01:00
|
|
|
</MkSpacer>
|
2021-04-22 15:29:33 +02:00
|
|
|
</template>
|
|
|
|
|
2022-05-17 18:31:59 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-01-04 10:47:54 +01:00
|
|
|
import FormButton from '@/components/ui/button.vue';
|
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-02-28 19:51:31 +01:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-05-17 18:31:59 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-17 18:31:59 +02:00
|
|
|
let blockedHosts: string = $ref('');
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-17 18:31:59 +02:00
|
|
|
async function init() {
|
|
|
|
const meta = await os.api('admin/meta');
|
|
|
|
blockedHosts = meta.blockedHosts.join('\n');
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-17 18:31:59 +02:00
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
blockedHosts: blockedHosts.split('\n') || [],
|
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-17 18:31:59 +02:00
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: i18n.ts.instanceBlocking,
|
|
|
|
icon: 'fas fa-ban',
|
|
|
|
bg: 'var(--bg)',
|
2021-04-22 15:29:33 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|