/* This file is part of GNU Taler (C) 2022 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, Logger, WithdrawUriResult, parsePaytoUri } from "@gnu-taler/taler-util"; import { ErrorType, notifyInfo, useTranslationContext } from "@gnu-taler/web-util/browser"; import { Fragment, VNode, h } from "preact"; import { Loading } from "../components/Loading.js"; import { useWithdrawalDetails } from "../hooks/access.js"; import { useSettings } from "../hooks/settings.js"; import { handleNotOkResult } from "./HomePage.js"; import { QrCodeSection } from "./QrCodeSection.js"; import { WithdrawalConfirmationQuestion } from "./WithdrawalConfirmationQuestion.js"; const logger = new Logger("WithdrawalQRCode"); interface Props { withdrawUri: WithdrawUriResult; onClose: () => 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, onClose, }: Props): VNode { const { i18n } = useTranslationContext(); const result = useWithdrawalDetails(withdrawUri.withdrawalOperationId); if (!result.ok) { if (result.loading) { return ; } return handleNotOkResult(i18n)(result); } const { data } = result; if (data.aborted) { return

{i18n.str`Operation aborted`}

The wire transfer to the GNU Taler Exchange bank's account was aborted, your balance was not affected.

You can close this page now or continue to the account page.

{ e.preventDefault(); onClose() }}> {i18n.str`Continue`}
} if (data.confirmation_done) { return

The wire transfer to the Taler exchange bank's account is completed, now the exchange will send the requested amount into your GNU Taler wallet.

You can close this page now or continue to the account page.

} if (!data.selection_done) { return ( { notifyInfo(i18n.str`Operation canceled`); onClose() }} /> ); } if (!data.selected_reserve_pub) { return
the exchange is selcted but no reserve pub
} const account = !data.selected_exchange_account ? undefined : parsePaytoUri(data.selected_exchange_account) if (!account) { return
the exchange is selcted but no account
} return ( { notifyInfo(i18n.str`Operation canceled`); onClose() }} /> ); }