Refactor admin/security to use Composition API (#8652)

* 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>
This commit is contained in:
Andy 2022-05-14 14:34:50 +02:00 committed by GitHub
parent 9f07bd8f46
commit 5de77405ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 101 deletions

View file

@ -43,8 +43,8 @@
</div> </div>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { defineAsyncComponent, defineComponent } from 'vue'; import { defineAsyncComponent } from 'vue';
import FormRadios from '@/components/form/radios.vue'; import FormRadios from '@/components/form/radios.vue';
import FormInput from '@/components/form/input.vue'; import FormInput from '@/components/form/input.vue';
import FormButton from '@/components/ui/button.vue'; import FormButton from '@/components/ui/button.vue';
@ -54,64 +54,39 @@ import * as os from '@/os';
import * as symbols from '@/symbols'; import * as symbols from '@/symbols';
import { fetchInstance } from '@/instance'; import { fetchInstance } from '@/instance';
export default defineComponent({ const MkCaptcha = defineAsyncComponent(() => import('@/components/captcha.vue'));
components: {
FormRadios,
FormInput,
FormButton,
FormSuspense,
FormSlot,
MkCaptcha: defineAsyncComponent(() => import('@/components/captcha.vue')),
},
emits: ['info'], let provider: = $ref(null);
let hcaptchaSiteKey: string | null = $ref(null);
let hcaptchaSecretKey: string | null = $ref(null);
let recaptchaSiteKey: string | null = $ref(null);
let recaptchaSecretKey: string | null = $ref(null);
data() { const enableHcaptcha = $computed(() => provider === 'hcaptcha');
return { const enableRecaptcha = $computed(() => provider === 'recaptcha');
[symbols.PAGE_INFO]: {
title: this.$ts.botProtection,
icon: 'fas fa-shield-alt'
},
provider: null,
enableHcaptcha: false,
hcaptchaSiteKey: null,
hcaptchaSecretKey: null,
enableRecaptcha: false,
recaptchaSiteKey: null,
recaptchaSecretKey: null,
}
},
methods: { async function init() {
async init() { const meta = await os.api('admin/meta');
const meta = await os.api('admin/meta'); enableHcaptcha = meta.enableHcaptcha;
this.enableHcaptcha = meta.enableHcaptcha; hcaptchaSiteKey = meta.hcaptchaSiteKey;
this.hcaptchaSiteKey = meta.hcaptchaSiteKey; hcaptchaSecretKey = meta.hcaptchaSecretKey;
this.hcaptchaSecretKey = meta.hcaptchaSecretKey; enableRecaptcha = meta.enableRecaptcha;
this.enableRecaptcha = meta.enableRecaptcha; recaptchaSiteKey = meta.recaptchaSiteKey;
this.recaptchaSiteKey = meta.recaptchaSiteKey; recaptchaSecretKey = meta.recaptchaSecretKey;
this.recaptchaSecretKey = meta.recaptchaSecretKey;
this.provider = this.enableHcaptcha ? 'hcaptcha' : this.enableRecaptcha ? 'recaptcha' : null; provider = enableHcaptcha ? 'hcaptcha' : enableRecaptcha ? 'recaptcha' : null;
}
this.$watch(() => this.provider, () => { function save() {
this.enableHcaptcha = this.provider === 'hcaptcha'; os.apiWithDialog('admin/update-meta', {
this.enableRecaptcha = this.provider === 'recaptcha'; enableHcaptcha,
}); hcaptchaSiteKey,
}, hcaptchaSecretKey,
enableRecaptcha,
save() { recaptchaSiteKey,
os.apiWithDialog('admin/update-meta', { recaptchaSecretKey,
enableHcaptcha: this.enableHcaptcha, }).then(() => {
hcaptchaSiteKey: this.hcaptchaSiteKey, fetchInstance();
hcaptchaSecretKey: this.hcaptchaSecretKey, });
enableRecaptcha: this.enableRecaptcha, }
recaptchaSiteKey: this.recaptchaSiteKey,
recaptchaSecretKey: this.recaptchaSecretKey,
}).then(() => {
fetchInstance();
});
}
}
});
</script> </script>

View file

@ -4,10 +4,10 @@
<div class="_formRoot"> <div class="_formRoot">
<FormFolder class="_formBlock"> <FormFolder class="_formBlock">
<template #icon><i class="fas fa-shield-alt"></i></template> <template #icon><i class="fas fa-shield-alt"></i></template>
<template #label>{{ $ts.botProtection }}</template> <template #label>{{ i18n.ts.botProtection }}</template>
<template v-if="enableHcaptcha" #suffix>hCaptcha</template> <template v-if="enableHcaptcha" #suffix>hCaptcha</template>
<template v-else-if="enableRecaptcha" #suffix>reCAPTCHA</template> <template v-else-if="enableRecaptcha" #suffix>reCAPTCHA</template>
<template v-else #suffix>{{ $ts.none }} ({{ $ts.notRecommended }})</template> <template v-else #suffix>{{ i18n.ts.none }} ({{ i18n.ts.notRecommended }})</template>
<XBotProtection/> <XBotProtection/>
</FormFolder> </FormFolder>
@ -21,7 +21,7 @@
<template #label>Summaly Proxy URL</template> <template #label>Summaly Proxy URL</template>
</FormInput> </FormInput>
<FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ $ts.save }}</FormButton> <FormButton primary class="_formBlock" @click="save"><i class="fas fa-save"></i> {{ i18n.ts.save }}</FormButton>
</div> </div>
</FormFolder> </FormFolder>
</div> </div>
@ -29,8 +29,8 @@
</MkSpacer> </MkSpacer>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { defineAsyncComponent, defineComponent } from 'vue'; import { } from 'vue';
import FormFolder from '@/components/form/folder.vue'; import FormFolder from '@/components/form/folder.vue';
import FormSwitch from '@/components/form/switch.vue'; import FormSwitch from '@/components/form/switch.vue';
import FormInfo from '@/components/ui/info.vue'; import FormInfo from '@/components/ui/info.vue';
@ -42,49 +42,32 @@ import XBotProtection from './bot-protection.vue';
import * as os from '@/os'; import * as os from '@/os';
import * as symbols from '@/symbols'; import * as symbols from '@/symbols';
import { fetchInstance } from '@/instance'; import { fetchInstance } from '@/instance';
import { i18n } from '@/i18n';
export default defineComponent({ let summalyProxy: string = $ref('');
components: { let enableHcaptcha: boolean = $ref(false);
FormFolder, let enableRecaptcha: boolean = $ref(false);
FormSwitch,
FormInfo,
FormSection,
FormSuspense,
FormButton,
FormInput,
XBotProtection,
},
emits: ['info'], async function init() {
const meta = await os.api('admin/meta');
summalyProxy = meta.summalyProxy;
enableHcaptcha = meta.enableHcaptcha;
enableRecaptcha = meta.enableRecaptcha;
}
data() { function save() {
return { os.apiWithDialog('admin/update-meta', {
[symbols.PAGE_INFO]: { summalyProxy,
title: this.$ts.security, }).then(() => {
icon: 'fas fa-lock', fetchInstance();
bg: 'var(--bg)', });
}, }
summalyProxy: '',
enableHcaptcha: false,
enableRecaptcha: false,
}
},
methods: { defineExpose({
async init() { [symbols.PAGE_INFO]: {
const meta = await os.api('admin/meta'); title: i18n.ts.security,
this.summalyProxy = meta.summalyProxy; icon: 'fas fa-lock',
this.enableHcaptcha = meta.enableHcaptcha; bg: 'var(--bg)',
this.enableRecaptcha = meta.enableRecaptcha;
},
save() {
os.apiWithDialog('admin/update-meta', {
summalyProxy: this.summalyProxy,
}).then(() => {
fetchInstance();
});
}
} }
}); });
</script> </script>