wallet-core/packages/taler-wallet-webextension/src/cta/Withdraw.tsx

332 lines
8.7 KiB
TypeScript
Raw Normal View History

/*
This file is part of TALER
(C) 2015-2016 GNUnet e.V.
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.
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
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
* Page shown to the user to confirm creation
* of a reserve, usually requested by the bank.
*
* @author Florian Dold
*/
2021-11-15 15:18:58 +01:00
import {
AmountJson,
Amounts,
ExchangeListItem,
i18n,
WithdrawUriInfoResponse,
} from "@gnu-taler/taler-util";
2021-11-22 21:34:27 +01:00
import { Fragment, h, VNode } from "preact";
2021-10-11 20:59:55 +02:00
import { useState } from "preact/hooks";
2021-11-15 15:18:58 +01:00
import { LogoHeader } from "../components/LogoHeader";
import { Part } from "../components/Part";
import { SelectList } from "../components/SelectList";
import {
ButtonSuccess,
ButtonWarning,
LinkSuccess,
WalletAction,
WarningText,
} from "../components/styled";
import { useAsyncAsHook } from "../hooks/useAsyncAsHook";
2021-11-22 21:34:27 +01:00
import { amountToString, buildTermsOfServiceState, TermsState } from "../utils";
import * as wxApi from "../wxApi";
import { TermsOfServiceSection } from "./TermsOfServiceSection";
2021-05-07 23:10:27 +02:00
interface Props {
talerWithdrawUri?: string;
}
2021-05-31 16:34:48 +02:00
export interface ViewProps {
2021-10-13 19:26:18 +02:00
withdrawalFee: AmountJson;
2021-11-22 21:34:27 +01:00
exchangeBaseUrl?: string;
2021-10-11 20:59:55 +02:00
amount: AmountJson;
onSwitchExchange: (ex: string) => void;
2021-09-13 18:32:58 +02:00
onWithdraw: () => Promise<void>;
onReview: (b: boolean) => void;
onAccept: (b: boolean) => void;
reviewing: boolean;
2021-10-12 20:18:29 +02:00
reviewed: boolean;
confirmed: boolean;
2021-11-22 21:34:27 +01:00
terms: TermsState;
2021-10-13 19:26:18 +02:00
knownExchanges: ExchangeListItem[];
2021-11-15 15:18:58 +01:00
}
2021-09-13 18:32:58 +02:00
2021-11-15 15:18:58 +01:00
export function View({
withdrawalFee,
exchangeBaseUrl,
knownExchanges,
amount,
onWithdraw,
onSwitchExchange,
terms,
reviewing,
onReview,
onAccept,
reviewed,
confirmed,
2021-11-16 17:59:53 +01:00
}: ViewProps): VNode {
2021-11-15 15:18:58 +01:00
const needsReview = terms.status === "changed" || terms.status === "new";
const [switchingExchange, setSwitchingExchange] = useState<
string | undefined
>(undefined);
const exchanges = knownExchanges.reduce(
(prev, ex) => ({ ...prev, [ex.exchangeBaseUrl]: ex.exchangeBaseUrl }),
{},
);
2021-10-11 20:59:55 +02:00
return (
2021-09-17 20:48:33 +02:00
<WalletAction>
<LogoHeader />
2021-11-15 15:18:58 +01:00
<h2>{i18n.str`Digital cash withdrawal`}</h2>
<section>
2021-11-15 15:18:58 +01:00
<Part
title="Total to withdraw"
text={amountToString(Amounts.sub(amount, withdrawalFee).amount)}
kind="positive"
/>
<Part
title="Chosen amount"
text={amountToString(amount)}
kind="neutral"
/>
{Amounts.isNonZero(withdrawalFee) && (
<Part
title="Exchange fee"
text={amountToString(withdrawalFee)}
kind="negative"
/>
)}
2021-11-22 21:34:27 +01:00
{exchangeBaseUrl && (
<Part title="Exchange" text={exchangeBaseUrl} kind="neutral" big />
)}
</section>
2021-11-15 15:18:58 +01:00
{!reviewing && (
2021-09-13 18:32:58 +02:00
<section>
2021-11-15 15:18:58 +01:00
{switchingExchange !== undefined ? (
<Fragment>
<div>
<SelectList
label="Known exchanges"
list={exchanges}
name=""
onChange={onSwitchExchange}
/>
</div>
<LinkSuccess
upperCased
onClick={() => onSwitchExchange(switchingExchange)}
>
{i18n.str`Confirm exchange selection`}
</LinkSuccess>
</Fragment>
) : (
<LinkSuccess upperCased onClick={() => setSwitchingExchange("")}>
2021-10-11 20:59:55 +02:00
{i18n.str`Switch exchange`}
2021-11-15 15:18:58 +01:00
</LinkSuccess>
)}
2021-09-13 18:32:58 +02:00
</section>
2021-11-15 15:18:58 +01:00
)}
{terms.status === "notfound" && (
2021-10-15 00:37:18 +02:00
<section>
<WarningText>
{i18n.str`Exchange doesn't have terms of service`}
</WarningText>
</section>
2021-11-15 15:18:58 +01:00
)}
2021-11-22 21:34:27 +01:00
<TermsOfServiceSection
reviewed={reviewed}
reviewing={reviewing}
terms={terms}
onAccept={onAccept}
onReview={onReview}
/>
2021-09-13 18:32:58 +02:00
<section>
2021-11-15 15:18:58 +01:00
{(terms.status === "accepted" || (needsReview && reviewed)) && (
2021-09-17 20:48:33 +02:00
<ButtonSuccess
upperCased
2021-10-13 19:26:18 +02:00
disabled={!exchangeBaseUrl || confirmed}
2021-09-17 20:48:33 +02:00
onClick={onWithdraw}
>
{i18n.str`Confirm withdrawal`}
</ButtonSuccess>
2021-11-15 15:18:58 +01:00
)}
{terms.status === "notfound" && (
<ButtonWarning
upperCased
2021-10-13 19:26:18 +02:00
disabled={!exchangeBaseUrl}
onClick={onWithdraw}
>
{i18n.str`Withdraw anyway`}
</ButtonWarning>
2021-11-15 15:18:58 +01:00
)}
</section>
</WalletAction>
2021-11-15 15:18:58 +01:00
);
2021-05-31 16:34:48 +02:00
}
2021-11-15 15:18:58 +01:00
export function WithdrawPageWithParsedURI({
uri,
uriInfo,
}: {
uri: string;
uriInfo: WithdrawUriInfoResponse;
2021-11-16 17:59:53 +01:00
}): VNode {
2021-11-15 15:18:58 +01:00
const [customExchange, setCustomExchange] = useState<string | undefined>(
undefined,
);
2021-11-22 21:34:27 +01:00
// const [errorAccepting, setErrorAccepting] = useState<string | undefined>(
// undefined,
// );
2021-11-15 15:18:58 +01:00
const [reviewing, setReviewing] = useState<boolean>(false);
const [reviewed, setReviewed] = useState<boolean>(false);
const [confirmed, setConfirmed] = useState<boolean>(false);
2021-11-22 21:34:27 +01:00
const knownExchangesHook = useAsyncAsHook(() => wxApi.listExchanges());
2021-11-15 15:18:58 +01:00
const knownExchanges =
!knownExchangesHook || knownExchangesHook.hasError
? []
: knownExchangesHook.response.exchanges;
const withdrawAmount = Amounts.parseOrThrow(uriInfo.amount);
const thisCurrencyExchanges = knownExchanges.filter(
(ex) => ex.currency === withdrawAmount.currency,
);
2021-11-22 21:34:27 +01:00
const exchange: string | undefined =
customExchange ??
uriInfo.defaultExchangeBaseUrl ??
(thisCurrencyExchanges[0]
? thisCurrencyExchanges[0].exchangeBaseUrl
: undefined);
2021-10-11 20:59:55 +02:00
const detailsHook = useAsyncAsHook(async () => {
2021-11-15 15:18:58 +01:00
if (!exchange) throw Error("no default exchange");
2021-11-22 21:34:27 +01:00
const tos = await wxApi.getExchangeTos(exchange, ["text/xml"]);
const tosState = buildTermsOfServiceState(tos);
const info = await wxApi.getExchangeWithdrawalInfo({
2021-10-11 20:59:55 +02:00
exchangeBaseUrl: exchange,
amount: withdrawAmount,
2021-11-15 15:18:58 +01:00
tosAcceptedFormat: ["text/xml"],
});
2021-11-22 21:34:27 +01:00
return { tos: tosState, info };
2021-11-15 15:18:58 +01:00
});
2021-10-11 20:59:55 +02:00
if (!detailsHook) {
2021-11-15 15:18:58 +01:00
return (
<span>
<i18n.Translate>Getting withdrawal details.</i18n.Translate>
</span>
);
2021-10-11 20:59:55 +02:00
}
if (detailsHook.hasError) {
2021-11-15 15:18:58 +01:00
return (
<span>
<i18n.Translate>
Problems getting details: {detailsHook.message}
</i18n.Translate>
</span>
);
2021-08-13 23:04:05 +02:00
}
2021-05-31 16:34:48 +02:00
2021-11-15 15:18:58 +01:00
const details = detailsHook.response;
2021-10-11 20:59:55 +02:00
const onAccept = async (): Promise<void> => {
2021-11-22 21:34:27 +01:00
if (!exchange) return;
2021-09-17 20:48:33 +02:00
try {
2021-11-22 21:34:27 +01:00
await wxApi.setExchangeTosAccepted(exchange, details.tos.version);
2021-11-15 15:18:58 +01:00
setReviewed(true);
2021-09-17 20:48:33 +02:00
} catch (e) {
2021-10-11 20:59:55 +02:00
if (e instanceof Error) {
2021-11-22 21:34:27 +01:00
//FIXME: uncomment this and display error
// setErrorAccepting(e.message);
2021-10-11 20:59:55 +02:00
}
2021-09-17 20:48:33 +02:00
}
2021-11-15 15:18:58 +01:00
};
2021-09-13 18:32:58 +02:00
const onWithdraw = async (): Promise<void> => {
2021-11-22 21:34:27 +01:00
if (!exchange) return;
2021-11-15 15:18:58 +01:00
setConfirmed(true);
2021-10-13 19:26:18 +02:00
console.log("accepting exchange", exchange);
2021-09-17 20:48:33 +02:00
try {
2021-11-22 21:34:27 +01:00
const res = await wxApi.acceptWithdrawal(uri, exchange);
2021-09-17 20:48:33 +02:00
console.log("accept withdrawal response", res);
if (res.confirmTransferUrl) {
document.location.href = res.confirmTransferUrl;
}
} catch (e) {
2021-11-15 15:18:58 +01:00
setConfirmed(false);
2021-05-31 16:34:48 +02:00
}
};
2021-11-15 15:18:58 +01:00
return (
<View
onWithdraw={onWithdraw}
amount={withdrawAmount}
exchangeBaseUrl={exchange}
withdrawalFee={details.info.withdrawFee} //FIXME
2021-11-22 21:34:27 +01:00
terms={detailsHook.response.tos}
2021-11-15 15:18:58 +01:00
onSwitchExchange={setCustomExchange}
knownExchanges={knownExchanges}
confirmed={confirmed}
reviewed={reviewed}
onAccept={onAccept}
reviewing={reviewing}
onReview={setReviewing}
/>
);
}
2021-11-15 15:18:58 +01:00
export function WithdrawPage({ talerWithdrawUri }: Props): VNode {
const uriInfoHook = useAsyncAsHook(() =>
!talerWithdrawUri
? Promise.reject(undefined)
2021-11-22 21:34:27 +01:00
: wxApi.getWithdrawalDetailsForUri({ talerWithdrawUri }),
2021-11-15 15:18:58 +01:00
);
2021-10-11 20:59:55 +02:00
if (!talerWithdrawUri) {
2021-11-15 15:18:58 +01:00
return (
<span>
<i18n.Translate>missing withdraw uri</i18n.Translate>
</span>
);
2021-10-11 20:59:55 +02:00
}
if (!uriInfoHook) {
2021-11-15 15:18:58 +01:00
return (
<span>
<i18n.Translate>Loading...</i18n.Translate>
</span>
);
2021-10-11 20:59:55 +02:00
}
if (uriInfoHook.hasError) {
2021-11-15 15:18:58 +01:00
return (
<span>
<i18n.Translate>
This URI is not valid anymore: {uriInfoHook.message}
</i18n.Translate>
</span>
);
2021-10-11 20:59:55 +02:00
}
2021-11-15 15:18:58 +01:00
return (
<WithdrawPageWithParsedURI
uri={talerWithdrawUri}
uriInfo={uriInfoHook.response}
/>
);
2021-10-11 20:59:55 +02:00
}