import { useEffect } from "react"; import { assert } from "tsafe/assert"; import { useInsertScriptTags } from "@keycloakify/keycloak-login-ui/tools/useInsertScriptTags"; import { waitForElementMountedOnDom } from "@keycloakify/keycloak-login-ui/tools/waitForElementMountedOnDom"; // NOTE: If you are in a Vite project you can use `import.meta.env.BASE_URL` directly, this is a shim to support Webpack. import { BASE_URL } from "../../../kc.gen"; import { useI18n } from "../../i18n"; import { useKcContext } from "../../KcContext"; export function useScript(params: { authButtonId: string }) { const { authButtonId } = params; const { kcContext } = useKcContext(); assert(kcContext.pageId === "login-passkeys-conditional-authenticate.ftl"); const { msgStr, isFetchingTranslations } = useI18n(); const { insertScriptTags } = useInsertScriptTags({ effectId: "LoginRecoveryAuthnCodeConfig", scriptTags: [ { type: "module", textContent: () => ` import { authenticateByWebAuthn } from "${BASE_URL}keycloak-theme/login/js/webauthnAuthenticate.js"; import { initAuthenticate } from "${BASE_URL}keycloak-theme/login/js/passkeysConditionalAuth.js"; const authButton = document.getElementById("${authButtonId}"); const input = { isUserIdentified : ${kcContext.isUserIdentified}, challenge : ${JSON.stringify(kcContext.challenge)}, userVerification : ${JSON.stringify(kcContext.userVerification)}, rpId : ${JSON.stringify(kcContext.rpId)}, createTimeout : ${kcContext.createTimeout} }; authButton.addEventListener("click", () => { authenticateByWebAuthn({ ...input, errmsg : ${JSON.stringify(msgStr("webauthn-unsupported-browser-text"))} }); }); initAuthenticate({ ...input, errmsg : ${JSON.stringify(msgStr("passkey-unsupported-browser-text"))} }); ` } ] }); useEffect(() => { if (isFetchingTranslations) { return; } (async () => { await waitForElementMountedOnDom({ elementId: authButtonId }); insertScriptTags(); })(); }, [isFetchingTranslations]); }