2020-04-28 19:15:18 -05:00
|
|
|
<template>
|
|
|
|
<div>
|
2022-01-10 09:05:18 -06:00
|
|
|
<span v-if="!available">{{ i18n.locale.waiting }}<MkEllipsis/></span>
|
|
|
|
<div ref="captchaEl"></div>
|
2020-04-28 19:15:18 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-10 09:05:18 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, computed, onMounted, onBeforeUnmount, watch } from 'vue';
|
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import { i18n } from '@/i18n';
|
2020-04-28 19:15:18 -05:00
|
|
|
|
|
|
|
type Captcha = {
|
|
|
|
render(container: string | Node, options: {
|
|
|
|
readonly [_ in 'sitekey' | 'theme' | 'type' | 'size' | 'tabindex' | 'callback' | 'expired' | 'expired-callback' | 'error-callback' | 'endpoint']?: unknown;
|
|
|
|
}): string;
|
|
|
|
remove(id: string): void;
|
|
|
|
execute(id: string): void;
|
2022-01-10 09:05:18 -06:00
|
|
|
reset(id?: string): void;
|
2020-04-28 19:15:18 -05:00
|
|
|
getResponse(id: string): string;
|
|
|
|
};
|
|
|
|
|
2021-04-22 08:29:33 -05:00
|
|
|
type CaptchaProvider = 'hcaptcha' | 'recaptcha';
|
2020-04-28 19:15:18 -05:00
|
|
|
|
|
|
|
type CaptchaContainer = {
|
|
|
|
readonly [_ in CaptchaProvider]?: Captcha;
|
|
|
|
};
|
|
|
|
|
|
|
|
declare global {
|
|
|
|
interface Window extends CaptchaContainer {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-10 09:05:18 -06:00
|
|
|
const props = defineProps<{
|
|
|
|
provider: CaptchaProvider;
|
|
|
|
sitekey: string;
|
|
|
|
modelValue?: string | null;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(e: 'update:modelValue', v: string | null): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const available = ref(false);
|
|
|
|
|
|
|
|
const captchaEl = ref<HTMLDivElement | undefined>();
|
|
|
|
|
|
|
|
const variable = computed(() => {
|
|
|
|
switch (props.provider) {
|
|
|
|
case 'hcaptcha': return 'hcaptcha';
|
|
|
|
case 'recaptcha': return 'grecaptcha';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const loaded = computed(() => !!window[variable.value]);
|
|
|
|
|
|
|
|
const src = computed(() => {
|
|
|
|
const endpoint = ({
|
|
|
|
hcaptcha: 'https://hcaptcha.com/1',
|
|
|
|
recaptcha: 'https://www.recaptcha.net/recaptcha',
|
|
|
|
} as Record<CaptchaProvider, string>)[props.provider];
|
|
|
|
|
|
|
|
return `${typeof endpoint === 'string' ? endpoint : 'about:invalid'}/api.js?render=explicit`;
|
2020-04-28 19:15:18 -05:00
|
|
|
});
|
2022-01-10 09:05:18 -06:00
|
|
|
|
|
|
|
const captcha = computed<Captcha>(() => window[variable.value] || {} as unknown as Captcha);
|
|
|
|
|
|
|
|
if (loaded.value) {
|
|
|
|
available.value = true;
|
|
|
|
} else {
|
|
|
|
(document.getElementById(props.provider) || document.head.appendChild(Object.assign(document.createElement('script'), {
|
|
|
|
async: true,
|
|
|
|
id: props.provider,
|
|
|
|
src: src.value,
|
|
|
|
})))
|
|
|
|
.addEventListener('load', () => available.value = true);
|
|
|
|
}
|
|
|
|
|
|
|
|
function reset() {
|
|
|
|
if (captcha.value?.reset) captcha.value.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
function requestRender() {
|
|
|
|
if (captcha.value.render && captchaEl.value instanceof Element) {
|
|
|
|
captcha.value.render(captchaEl.value, {
|
|
|
|
sitekey: props.sitekey,
|
|
|
|
theme: defaultStore.state.darkMode ? 'dark' : 'light',
|
|
|
|
callback: callback,
|
|
|
|
'expired-callback': callback,
|
|
|
|
'error-callback': callback,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
setTimeout(requestRender, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function callback(response?: string) {
|
|
|
|
emit('update:modelValue', typeof response == 'string' ? response : null);
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
if (available.value) {
|
|
|
|
requestRender();
|
|
|
|
} else {
|
|
|
|
watch(available, requestRender);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
reset();
|
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
reset,
|
|
|
|
});
|
|
|
|
|
2020-04-28 19:15:18 -05:00
|
|
|
</script>
|