iceshrimp-legacy/packages/client/src/components/MkCaptcha.vue

137 lines
2.7 KiB
Vue
Raw Normal View History

2020-04-29 02:15:18 +02:00
<template>
2023-04-08 02:01:42 +02:00
<div>
<span v-if="!available">{{ i18n.ts.waiting }}<MkEllipsis /></span>
<div ref="captchaEl"></div>
</div>
2020-04-29 02:15:18 +02:00
</template>
<script lang="ts" setup>
2023-07-17 00:32:32 +02:00
import { computed, onBeforeUnmount, onMounted, ref, watch } from "vue";
2023-04-08 02:01:42 +02:00
import { defaultStore } from "@/store";
import { i18n } from "@/i18n";
2020-04-29 02:15:18 +02:00
2023-07-17 00:32:32 +02:00
interface Captcha {
2023-04-08 02:01:42 +02:00
render(
container: string | Node,
options: {
readonly [_ in
| "sitekey"
| "theme"
| "type"
| "size"
| "tabindex"
| "callback"
| "expired"
| "expired-callback"
| "error-callback"
| "endpoint"]?: unknown;
2023-07-06 03:28:27 +02:00
},
2023-04-08 02:01:42 +02:00
): string;
2020-04-29 02:15:18 +02:00
remove(id: string): void;
execute(id: string): void;
reset(id?: string): void;
2020-04-29 02:15:18 +02:00
getResponse(id: string): string;
2023-07-17 00:32:32 +02:00
}
2020-04-29 02:15:18 +02:00
2023-04-08 02:01:42 +02:00
type CaptchaProvider = "hcaptcha" | "recaptcha";
2020-04-29 02:15:18 +02:00
type CaptchaContainer = {
readonly [_ in CaptchaProvider]?: Captcha;
};
declare global {
2023-04-08 02:01:42 +02:00
interface Window extends CaptchaContainer {}
2020-04-29 02:15:18 +02:00
}
const props = defineProps<{
provider: CaptchaProvider;
sitekey: string;
modelValue?: string | null;
}>();
const emit = defineEmits<{
2023-04-08 02:01:42 +02:00
(ev: "update:modelValue", v: string | null): void;
}>();
const available = ref(false);
const captchaEl = ref<HTMLDivElement | undefined>();
const variable = computed(() => {
switch (props.provider) {
2023-04-08 02:01:42 +02:00
case "hcaptcha":
return "hcaptcha";
case "recaptcha":
return "grecaptcha";
}
});
const loaded = !!window[variable.value];
const src = computed(() => {
switch (props.provider) {
2023-04-08 02:01:42 +02:00
case "hcaptcha":
return "https://js.hcaptcha.com/1/api.js?render=explicit&recaptchacompat=off";
case "recaptcha":
return "https://www.recaptcha.net/recaptcha/api.js?render=explicit";
}
2020-04-29 02:15:18 +02:00
});
2023-04-08 02:01:42 +02:00
const captcha = computed<Captcha>(
2023-07-06 03:28:27 +02:00
() => window[variable.value] || ({} as unknown as Captcha),
2023-04-08 02:01:42 +02:00
);
if (loaded) {
available.value = true;
} else {
2023-04-08 02:01:42 +02:00
(
document.getElementById(props.provider) ||
document.head.appendChild(
Object.assign(document.createElement("script"), {
async: true,
id: props.provider,
src: src.value,
2023-07-06 03:28:27 +02:00
}),
2023-04-08 02:01:42 +02:00
)
).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,
2023-04-08 02:01:42 +02:00
theme: defaultStore.state.darkMode ? "dark" : "light",
2023-07-17 00:32:32 +02:00
callback,
2023-04-08 02:01:42 +02:00
"expired-callback": callback,
"error-callback": callback,
});
} else {
2022-01-16 02:14:14 +01:00
window.setTimeout(requestRender, 1);
}
}
function callback(response?: string) {
2023-04-08 02:01:42 +02:00
emit("update:modelValue", typeof response === "string" ? response : null);
}
onMounted(() => {
if (available.value) {
requestRender();
} else {
watch(available, requestRender);
}
});
onBeforeUnmount(() => {
reset();
});
defineExpose({
reset,
});
2020-04-29 02:15:18 +02:00
</script>