import { ChallengeFeedbackStatus, ChallengeInfo, } from "@gnu-taler/anastasis-core"; import { h, VNode } from "preact"; import { useState } from "preact/hooks"; import { AsyncButton } from "../../../components/AsyncButton"; import { TextInput } from "../../../components/fields/TextInput"; import { useAnastasisContext } from "../../../context/anastasis"; import { AnastasisClientFrame } from "../index"; import { SolveOverviewFeedbackDisplay } from "../SolveScreen"; import { AuthMethodSolveProps } from "./index"; export function AuthMethodTotpSolve({ id }: AuthMethodSolveProps): VNode { const [answer, setAnswer] = useState(""); const reducer = useAnastasisContext(); if (!reducer) { return (
no reducer in context
); } if ( !reducer.currentReducerState || reducer.currentReducerState.recovery_state === undefined ) { return (
invalid state
); } if (!reducer.currentReducerState.recovery_information) { return (
no recovery information found
); } if (!reducer.currentReducerState.selected_challenge_uuid) { return (
invalid state
); } const chArr = reducer.currentReducerState.recovery_information.challenges; const challengeFeedback = reducer.currentReducerState.challenge_feedback ?? {}; const selectedUuid = reducer.currentReducerState.selected_challenge_uuid; const challenges: { [uuid: string]: ChallengeInfo; } = {}; for (const ch of chArr) { challenges[ch.uuid] = ch; } const selectedChallenge = challenges[selectedUuid]; const feedback = challengeFeedback[selectedUuid]; async function onNext(): Promise { return reducer?.transition("solve_challenge", { answer }); } function onCancel(): void { reducer?.back(); } const shouldHideConfirm = feedback?.state === ChallengeFeedbackStatus.RateLimitExceeded || feedback?.state === ChallengeFeedbackStatus.Redirect || feedback?.state === ChallengeFeedbackStatus.Unsupported || feedback?.state === ChallengeFeedbackStatus.TruthUnknown; return (

enter the totp solution

{!shouldHideConfirm && ( Confirm )}
); } // NKE8 VD857T X033X6RG WEGPYP6D70 Q7YE XN8D2 ZN79SCN 231B4QK0