diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-08-19 19:39:21 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-08-19 19:39:21 +0530 |
commit | f7299a1aa0952490629588aa5a853999684b3fb9 (patch) | |
tree | 9027302ca185328f3cd17ae879390e27a4f521b7 | |
parent | 0f390477f3b4022d8434668ea9aee014ff9f7ec0 (diff) |
make basic withdrawal and payment work again with new API
-rw-r--r-- | packages/taler-wallet-webextension/src/pages/pay.tsx | 16 | ||||
-rw-r--r-- | packages/taler-wallet-webextension/src/pages/withdraw.tsx | 8 | ||||
-rw-r--r-- | packages/taler-wallet-webextension/src/wxApi.ts | 8 |
3 files changed, 20 insertions, 12 deletions
diff --git a/packages/taler-wallet-webextension/src/pages/pay.tsx b/packages/taler-wallet-webextension/src/pages/pay.tsx index 1e1f91caf..f1ba2c2b3 100644 --- a/packages/taler-wallet-webextension/src/pages/pay.tsx +++ b/packages/taler-wallet-webextension/src/pages/pay.tsx @@ -24,13 +24,20 @@ */ import * as i18n from "../i18n"; - import { renderAmount, ProgressButton } from "../renderHtml"; import * as wxApi from "../wxApi"; import React, { useState, useEffect } from "react"; -import { Amounts, AmountJson, PreparePayResult, PreparePayResultType, ContractTerms, codecForContractTerms, ConfirmPayResultType } from "taler-wallet-core"; +import { + Amounts, + AmountJson, + PreparePayResult, + PreparePayResultType, + ContractTerms, + codecForContractTerms, + ConfirmPayResultType, +} from "taler-wallet-core"; function TalerPayDialog({ talerPayUri }: { talerPayUri: string }): JSX.Element { const [payStatus, setPayStatus] = useState<PreparePayResult | undefined>(); @@ -60,7 +67,10 @@ function TalerPayDialog({ talerPayUri }: { talerPayUri: string }): JSX.Element { amountEffective = Amounts.parseOrThrow(payStatus.amountEffective); } - if (payStatus.status === PreparePayResultType.AlreadyConfirmed && numTries === 0) { + if ( + payStatus.status === PreparePayResultType.AlreadyConfirmed && + numTries === 0 + ) { return ( <span> You have already paid for this article. Click{" "} diff --git a/packages/taler-wallet-webextension/src/pages/withdraw.tsx b/packages/taler-wallet-webextension/src/pages/withdraw.tsx index 1637176a9..2747dd3f7 100644 --- a/packages/taler-wallet-webextension/src/pages/withdraw.tsx +++ b/packages/taler-wallet-webextension/src/pages/withdraw.tsx @@ -43,7 +43,6 @@ function WithdrawalDialog(props: { talerWithdrawUri: string }): JSX.Element { const talerWithdrawUri = props.talerWithdrawUri; const [cancelled, setCancelled] = useState(false); const [selecting, setSelecting] = useState(false); - const [customUrl, setCustomUrl] = useState<string>(""); const [errMsg, setErrMsg] = useState<string | undefined>(""); const [updateCounter, setUpdateCounter] = useState(1); @@ -58,6 +57,9 @@ function WithdrawalDialog(props: { talerWithdrawUri: string }): JSX.Element { const fetchData = async (): Promise<void> => { const res = await getWithdrawalDetailsForUri({talerWithdrawUri: props.talerWithdrawUri}); setDetails(res); + if (res.defaultExchangeBaseUrl) { + setSelectedExchange(res.defaultExchangeBaseUrl); + } }; fetchData(); }, [selectedExchange, errMsg, selecting, talerWithdrawUri, updateCounter]); @@ -124,10 +126,6 @@ function WithdrawalDialog(props: { talerWithdrawUri: string }): JSX.Element { {i18n.str`Cancel withdraw operation`} </span> </p> - - {/* {details.exchangeWithdrawDetails ? ( - <WithdrawDetailView rci={details.exchangeWithdrawDetails} /> - ) : null} */} </div> </div> ); diff --git a/packages/taler-wallet-webextension/src/wxApi.ts b/packages/taler-wallet-webextension/src/wxApi.ts index 836466ff3..dc78686ad 100644 --- a/packages/taler-wallet-webextension/src/wxApi.ts +++ b/packages/taler-wallet-webextension/src/wxApi.ts @@ -98,7 +98,7 @@ export function confirmPay( proposalId: string, sessionId: string | undefined, ): Promise<ConfirmPayResult> { - return callBackend("confirm-pay", { proposalId, sessionId }); + return callBackend("confirmPay", { proposalId, sessionId }); } /** @@ -184,7 +184,7 @@ export function benchmarkCrypto(repetitions: number): Promise<BenchmarkResult> { * Get details about a pay operation. */ export function preparePay(talerPayUri: string): Promise<PreparePayResult> { - return callBackend("prepare-pay", { talerPayUri }); + return callBackend("preparePay", { talerPayUri }); } /** @@ -194,9 +194,9 @@ export function acceptWithdrawal( talerWithdrawUri: string, selectedExchange: string, ): Promise<AcceptWithdrawalResponse> { - return callBackend("accept-withdrawal", { + return callBackend("acceptBankIntegratedWithdrawal", { talerWithdrawUri, - selectedExchange, + exchangeBaseUrl: selectedExchange, }); } |