make basic withdrawal and payment work again with new API
This commit is contained in:
parent
0f390477f3
commit
f7299a1aa0
@ -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{" "}
|
||||
|
@ -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>
|
||||
);
|
||||
|
@ -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,
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user