5de77405ea
* refactor(client): refactor admin/security to use Composition API * Apply review suggestions from @Johann150 Co-authored-by: Johann150 <johann@qwertqwefsday.eu> Co-authored-by: Johann150 <johann@qwertqwefsday.eu>
73 lines
2.2 KiB
Vue
73 lines
2.2 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>{{ i18n.ts.botProtection }}</template>
|
|
<template v-if="enableHcaptcha" #suffix>hCaptcha</template>
|
|
<template v-else-if="enableRecaptcha" #suffix>reCAPTCHA</template>
|
|
<template v-else #suffix>{{ i18n.ts.none }} ({{ i18n.ts.notRecommended }})</template>
|
|
|
|
<XBotProtection/>
|
|
</FormFolder>
|
|
|
|
<FormFolder class="_formBlock">
|
|
<template #label>Summaly Proxy</template>
|
|
|
|
<div class="_formRoot">
|
|
<FormInput v-model="summalyProxy" class="_formBlock">
|
|
<template #prefix><i class="fas fa-link"></i></template>
|
|
<template #label>Summaly Proxy URL</template>
|
|
</FormInput>
|
|
|
|
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ i18n.ts.save }}</FormButton>
|
|
</div>
|
|
</FormFolder>
|
|
</div>
|
|
</FormSuspense>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } 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 FormInput from '@/components/form/input.vue';
|
|
import FormButton from '@/components/ui/button.vue';
|
|
import XBotProtection from './bot-protection.vue';
|
|
import * as os from '@/os';
|
|
import * as symbols from '@/symbols';
|
|
import { fetchInstance } from '@/instance';
|
|
import { i18n } from '@/i18n';
|
|
|
|
let summalyProxy: string = $ref('');
|
|
let enableHcaptcha: boolean = $ref(false);
|
|
let enableRecaptcha: boolean = $ref(false);
|
|
|
|
async function init() {
|
|
const meta = await os.api('admin/meta');
|
|
summalyProxy = meta.summalyProxy;
|
|
enableHcaptcha = meta.enableHcaptcha;
|
|
enableRecaptcha = meta.enableRecaptcha;
|
|
}
|
|
|
|
function save() {
|
|
os.apiWithDialog('admin/update-meta', {
|
|
summalyProxy,
|
|
}).then(() => {
|
|
fetchInstance();
|
|
});
|
|
}
|
|
|
|
defineExpose({
|
|
[symbols.PAGE_INFO]: {
|
|
title: i18n.ts.security,
|
|
icon: 'fas fa-lock',
|
|
bg: 'var(--bg)',
|
|
}
|
|
});
|
|
</script>
|