/* 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, Logger, TalerError, WithdrawUriResult, parsePaytoUri } from "@gnu-taler/taler-util"; import { notifyInfo, useTranslationContext } from "@gnu-taler/web-util/browser"; import { Fragment, VNode, h } from "preact"; import { Attention } from "@gnu-taler/web-util/browser"; import { ErrorLoading } from "@gnu-taler/web-util/browser"; import { Loading } from "@gnu-taler/web-util/browser"; import { useWithdrawalDetails } from "../hooks/access.js"; import { QrCodeSection } from "./QrCodeSection.js"; import { WithdrawalConfirmationQuestion } from "./WithdrawalConfirmationQuestion.js"; import { assertUnreachable } from "./WithdrawalOperationPage.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) { return } if (result instanceof TalerError) { return } if (result.type === "fail") { switch (result.case) { case "not-found": return default: assertUnreachable(result.case) } } const { body: data } = result; if (data.status === "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.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`); onClose() }} /> ); } if (!data.selected_reserve_pub) { return The exchange is selected but no reserve public key found. } const account = !data.selected_exchange_account ? undefined : parsePaytoUri(data.selected_exchange_account) if (!account) { return The exchange is selected but the exchange payto URI is missing or invalid. } return ( { notifyInfo(i18n.str`Operation canceled`); onClose() }} /> ); } export function OperationNotFound({ onClose }: { onClose: () => void }): 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.

}