2021-04-22 16:29:33 +03:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
|
|
|
<FormSuspense :p="init">
|
|
|
|
<FormTextarea v-model="blockedHosts" class="_formBlock">
|
|
|
|
<span>{{ i18n.ts.blockedInstances }}</span>
|
|
|
|
<template #caption>{{ i18n.ts.blockedInstancesDescription }}</template>
|
|
|
|
</FormTextarea>
|
|
|
|
|
|
|
|
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ i18n.ts.save }}</FormButton>
|
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-22 16:29:33 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-17 19:31:59 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-06-20 11:38:49 +03:00
|
|
|
import XHeader from './_header_.vue';
|
2022-01-04 11:47:54 +02: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 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2022-02-28 20:51:31 +02:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-05-17 19:31:59 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-17 19:31:59 +03:00
|
|
|
let blockedHosts: string = $ref('');
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-17 19:31:59 +03:00
|
|
|
async function init() {
|
|
|
|
const meta = await os.api('admin/meta');
|
|
|
|
blockedHosts = meta.blockedHosts.join('\n');
|
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-17 19:31:59 +03:00
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
blockedHosts: blockedHosts.split('\n') || [],
|
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.instanceBlocking,
|
|
|
|
icon: 'fas fa-ban',
|
2021-04-22 16:29:33 +03:00
|
|
|
});
|
|
|
|
</script>
|