From 505eb07d8e42d6787dc23b2024b76e05f807e1ad Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 6 Dec 2021 10:31:19 -0300 Subject: show error details in devmode --- packages/taler-wallet-webextension/src/cta/Pay.tsx | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'packages/taler-wallet-webextension/src/cta/Pay.tsx') diff --git a/packages/taler-wallet-webextension/src/cta/Pay.tsx b/packages/taler-wallet-webextension/src/cta/Pay.tsx index 9f015280b..f1c8f270c 100644 --- a/packages/taler-wallet-webextension/src/cta/Pay.tsx +++ b/packages/taler-wallet-webextension/src/cta/Pay.tsx @@ -33,6 +33,7 @@ import { ConfirmPayResultType, ContractTerms, i18n, + NotificationType, PreparePayResult, PreparePayResultType, } from "@gnu-taler/taler-util"; @@ -56,6 +57,7 @@ import * as wxApi from "../wxApi"; interface Props { talerPayUri?: string; + goToWalletManualWithdraw: () => void; } // export function AlreadyPaid({ payStatus }: { payStatus: PreparePayResult }) { @@ -102,7 +104,10 @@ const doPayment = async ( return res; }; -export function PayPage({ talerPayUri }: Props): VNode { +export function PayPage({ + talerPayUri, + goToWalletManualWithdraw, +}: Props): VNode { const [payStatus, setPayStatus] = useState( undefined, ); @@ -113,7 +118,9 @@ export function PayPage({ talerPayUri }: Props): VNode { OperationFailedError | string | undefined >(undefined); - const balance = useAsyncAsHook(wxApi.getBalance); + const balance = useAsyncAsHook(wxApi.getBalance, [ + NotificationType.CoinWithdrawn, + ]); const balanceWithoutError = balance?.hasError ? [] : balance?.response.balances || []; @@ -144,7 +151,7 @@ export function PayPage({ talerPayUri }: Props): VNode { } }; doFetch(); - }, [talerPayUri]); + }, [talerPayUri, foundAmount]); if (!talerPayUri) { return missing pay uri; @@ -198,6 +205,7 @@ export function PayPage({ talerPayUri }: Props): VNode { payStatus={payStatus} payResult={payResult} onClick={onClick} + goToWalletManualWithdraw={goToWalletManualWithdraw} balance={foundAmount} /> ); @@ -209,6 +217,7 @@ export interface PaymentRequestViewProps { onClick: () => void; payErrMsg?: string; uri: string; + goToWalletManualWithdraw: () => void; balance: AmountJson | undefined; } export function PaymentRequestView({ @@ -216,6 +225,7 @@ export function PaymentRequestView({ payStatus, payResult, onClick, + goToWalletManualWithdraw, balance, }: PaymentRequestViewProps): VNode { let totalFees: AmountJson = Amounts.getZero(payStatus.amountRaw); @@ -306,7 +316,7 @@ export function PaymentRequestView({ )}
- + {i18n.str`Withdraw digital cash`}
-- cgit v1.2.3