/* This file is part of GNU Taler (C) 2022-2024 Taler Systems S.A. GNU Taler is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Taler; see the file COPYING. If not, see */ import { Amounts, HttpStatusCode, TalerError, WithdrawUriResult, assertUnreachable, parsePaytoUri, } from "@gnu-taler/taler-util"; import { Attention, Loading, notifyInfo, useTranslationContext, } from "@gnu-taler/web-util/browser"; import { VNode, h } from "preact"; import { ErrorLoadingWithDebug } from "../components/ErrorLoadingWithDebug.js"; import { useWithdrawalDetails } from "../hooks/account.js"; import { RouteDefinition } from "@gnu-taler/web-util/browser"; import { QrCodeSection } from "./QrCodeSection.js"; import { WithdrawalConfirmationQuestion } from "./WithdrawalConfirmationQuestion.js"; interface Props { withdrawUri: WithdrawUriResult; onOperationAborted: () => void; routeClose: RouteDefinition; routeWithdrawalDetails: RouteDefinition<{ wopid: string }>; onAuthorizationRequired: () => void; } /** * Offer the QR code (and a clickable taler://-link) to * permit the passing of exchange and reserve details to * the bank. Poll the backend until such operation is done. */ export function WithdrawalQRCode({ withdrawUri, onOperationAborted, routeClose, routeWithdrawalDetails, onAuthorizationRequired, }: Props): VNode { const { i18n } = useTranslationContext(); const result = useWithdrawalDetails(withdrawUri.withdrawalOperationId); if (!result) { return ; } if (result instanceof TalerError) { return ; } if (result.type === "fail") { switch (result.case) { case HttpStatusCode.BadRequest: case HttpStatusCode.NotFound: return ; default: assertUnreachable(result); } } const { body: data } = result; if (data.status === "aborted") { return (

The wire transfer to the payment provider's account was aborted from somewhere else, your balance was not affected.

); } if (data.status === "confirmed") { return (

The wire transfer to the Taler operator has been initiated. You will soon receive the requested amount in your Taler wallet.

); } if (data.status === "pending") { return ( { notifyInfo(i18n.str`Operation canceled`); onOperationAborted(); }} /> ); } const account = !data.selected_exchange_account ? undefined : parsePaytoUri(data.selected_exchange_account); if (!data.selected_reserve_pub && account) { return ( The account is selected but no withdrawal identification found. ); } if (!account && data.selected_reserve_pub) { return ( There is a withdrawal identification but no account has been selected or the selected account is invalid. ); } if (!account || !data.selected_reserve_pub) { return ( No withdrawal ID found and no account has been selected or the selected account is invalid. ); } return ( { notifyInfo(i18n.str`Operation canceled`); onOperationAborted(); }} /> ); } export function OperationNotFound({ routeClose, }: { routeClose: RouteDefinition | undefined; }): VNode { const { i18n } = useTranslationContext(); return (

This operation is not known by the server. The operation id is wrong or the server deleted the operation information before reaching here.

{routeClose && ( )}
); }