67 lines
1.7 KiB
Vue
67 lines
1.7 KiB
Vue
<template>
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
|
<FormSuspense :p="init">
|
|
<div class="_formRoot">
|
|
<FormFolder class="_formBlock">
|
|
<template #icon><i class="fas fa-shield-alt"></i></template>
|
|
<template #label>{{ $ts.botProtection }}</template>
|
|
<template v-if="enableHcaptcha" #suffix>hCaptcha</template>
|
|
<template v-else-if="enableRecaptcha" #suffix>reCAPTCHA</template>
|
|
<template v-else #suffix>{{ $ts.none }} ({{ $ts.notRecommended }})</template>
|
|
|
|
<XBotProtection/>
|
|
</FormFolder>
|
|
</div>
|
|
</FormSuspense>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
|
import FormFolder from '@/components/form/folder.vue';
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
import FormInfo from '@/components/ui/info.vue';
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import XBotProtection from './bot-protection.vue';
|
|
import * as os from '@/os';
|
|
import * as symbols from '@/symbols';
|
|
import { fetchInstance } from '@/instance';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
FormFolder,
|
|
FormSwitch,
|
|
FormInfo,
|
|
FormSection,
|
|
FormSuspense,
|
|
XBotProtection,
|
|
},
|
|
|
|
emits: ['info'],
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.security,
|
|
icon: 'fas fa-lock',
|
|
bg: 'var(--bg)',
|
|
},
|
|
enableHcaptcha: false,
|
|
enableRecaptcha: false,
|
|
}
|
|
},
|
|
|
|
async mounted() {
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
},
|
|
|
|
methods: {
|
|
async init() {
|
|
const meta = await os.api('meta', { detail: true });
|
|
this.enableHcaptcha = meta.enableHcaptcha;
|
|
this.enableRecaptcha = meta.enableRecaptcha;
|
|
},
|
|
}
|
|
});
|
|
</script>
|