e1f9ab77f8
* enhance(frontend): サーバールールのデザイン調整 * enhance(frontend): i18n * enhance(frontend): 利用規約URLの設定を「モデレーション」ページへ移動 * enhance(frontend): サーバールールのデザイン調整 * Update CHANGELOG.md * 不要な差分を削除 * fix(frontend): lint * ui tweak * test: add stories * tweak * test: bind args * test: add interaction tests * fix bug * Update packages/frontend/src/pages/admin/server-rules.vue Co-authored-by: Ebise Lutica <7106976+EbiseLutica@users.noreply.github.com> * Update misskey-js.api.md * chore: windowを明示 * 🎨 * refactor * 🎨 * 🎨 * fix e2e test * 🎨 * 🎨 * fix icon * fix e2e --------- Co-authored-by: Ebise Lutica <7106976+EbiseLutica@users.noreply.github.com> Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
82 lines
2.4 KiB
Vue
82 lines
2.4 KiB
Vue
<template>
|
|
<div>
|
|
<MkStickyContainer>
|
|
<template #header><XHeader :tabs="headerTabs"/></template>
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
|
<FormLink to="/admin/server-rules">{{ i18n.ts.serverRules }}</FormLink>
|
|
<FormSuspense :p="init">
|
|
<div class="_gaps_m">
|
|
<FormSection first>
|
|
<div class="_gaps_m">
|
|
<MkInput v-model="tosUrl">
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
<template #label>{{ i18n.ts.tosUrl }}</template>
|
|
</MkInput>
|
|
<MkTextarea v-model="sensitiveWords">
|
|
<template #label>{{ i18n.ts.sensitiveWords }}</template>
|
|
<template #caption>{{ i18n.ts.sensitiveWordsDescription }}</template>
|
|
</MkTextarea>
|
|
</div>
|
|
</FormSection>
|
|
</div>
|
|
</FormSuspense>
|
|
</MkSpacer>
|
|
<template #footer>
|
|
<div :class="$style.footer">
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="16">
|
|
<MkButton primary rounded @click="save"><i class="ti ti-check"></i> {{ i18n.ts.save }}</MkButton>
|
|
</MkSpacer>
|
|
</div>
|
|
</template>
|
|
</MkStickyContainer>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import XHeader from './_header_.vue';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import FormSplit from '@/components/form/split.vue';
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
|
import * as os from '@/os';
|
|
import { fetchInstance } from '@/instance';
|
|
import { i18n } from '@/i18n';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import FormLink from "@/components/form/link.vue";
|
|
|
|
let sensitiveWords: string = $ref('');
|
|
let tosUrl: string | null = $ref(null);
|
|
|
|
async function init() {
|
|
const meta = await os.api('admin/meta');
|
|
sensitiveWords = meta.sensitiveWords.join('\n');
|
|
tosUrl = meta.tosUrl;
|
|
}
|
|
|
|
function save() {
|
|
os.apiWithDialog('admin/update-meta', {
|
|
tosUrl,
|
|
sensitiveWords: sensitiveWords.split('\n'),
|
|
}).then(() => {
|
|
fetchInstance();
|
|
});
|
|
}
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.moderation,
|
|
icon: 'ti ti-shield',
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.footer {
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
}
|
|
</style>
|