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

373 lines
10 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.
*
2022-02-23 19:18:37 +01:00
* @author sebasjm
*/
2021-11-15 15:18:58 +01:00
import {
AmountJson,
Amounts,
ExchangeListItem,
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";
2022-01-20 17:12:28 +01:00
import { Loading } from "../components/Loading";
import { LoadingError } from "../components/LoadingError";
import { ErrorTalerOperation } from "../components/ErrorTalerOperation";
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,
} from "../components/styled";
import { useAsyncAsHook } from "../hooks/useAsyncAsHook";
2022-01-04 21:06:17 +01:00
import {
amountToString,
buildTermsOfServiceState,
TermsState,
} from "../utils/index";
2021-11-22 21:34:27 +01:00
import * as wxApi from "../wxApi";
import { TermsOfServiceSection } from "./TermsOfServiceSection";
import { useTranslationContext } from "../context/translation";
import { TalerError } from "@gnu-taler/taler-wallet-core";
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;
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,
2021-11-16 17:59:53 +01:00
}: ViewProps): VNode {
const { i18n } = useTranslationContext();
const [withdrawError, setWithdrawError] = useState<TalerError | undefined>(
undefined,
);
const [confirmDisabled, setConfirmDisabled] = useState<boolean>(false);
2021-11-15 15:18:58 +01:00
const needsReview = terms.status === "changed" || terms.status === "new";
2021-11-24 13:52:58 +01:00
const [switchingExchange, setSwitchingExchange] = useState(false);
const [nextExchange, setNextExchange] = useState<string | undefined>(
undefined,
);
const exchanges = knownExchanges
.filter((e) => e.currency === amount.currency)
.reduce(
(prev, ex) => ({ ...prev, [ex.exchangeBaseUrl]: ex.exchangeBaseUrl }),
{},
);
async function doWithdrawAndCheckError() {
try {
setConfirmDisabled(true);
await onWithdraw();
} catch (e) {
if (e instanceof TalerError) {
setWithdrawError(e);
}
setConfirmDisabled(false);
}
}
2021-10-11 20:59:55 +02:00
return (
2021-09-17 20:48:33 +02:00
<WalletAction>
<LogoHeader />
2022-02-23 19:18:37 +01:00
<h2>
<i18n.Translate>Digital cash withdrawal</i18n.Translate>
2022-02-23 19:18:37 +01:00
</h2>
{withdrawError && (
<ErrorTalerOperation
2022-02-23 19:18:37 +01:00
title={
<i18n.Translate>
Could not finish the withdrawal operation
</i18n.Translate>
2022-02-23 19:18:37 +01:00
}
error={withdrawError.errorDetail}
/>
)}
<section>
2021-11-15 15:18:58 +01:00
<Part
title={<i18n.Translate>Total to withdraw</i18n.Translate>}
2021-11-15 15:18:58 +01:00
text={amountToString(Amounts.sub(amount, withdrawalFee).amount)}
kind="positive"
/>
{Amounts.isNonZero(withdrawalFee) && (
<Fragment>
<Part
title={<i18n.Translate>Chosen amount</i18n.Translate>}
text={amountToString(amount)}
kind="neutral"
/>
<Part
title={<i18n.Translate>Exchange fee</i18n.Translate>}
text={amountToString(withdrawalFee)}
kind="negative"
/>
</Fragment>
2021-11-15 15:18:58 +01:00
)}
2021-11-22 21:34:27 +01:00
{exchangeBaseUrl && (
2022-02-23 19:18:37 +01:00
<Part
title={<i18n.Translate>Exchange</i18n.Translate>}
2022-02-23 19:18:37 +01:00
text={exchangeBaseUrl}
kind="neutral"
big
/>
2021-11-22 21:34:27 +01:00
)}
{!reviewing &&
(switchingExchange ? (
2021-11-15 15:18:58 +01:00
<Fragment>
<div>
<SelectList
label={<i18n.Translate>Known exchanges</i18n.Translate>}
2021-11-15 15:18:58 +01:00
list={exchanges}
2021-11-24 13:52:58 +01:00
value={nextExchange}
name="switchingExchange"
onChange={setNextExchange}
2021-11-15 15:18:58 +01:00
/>
</div>
<LinkSuccess
upperCased
style={{ fontSize: "small" }}
2021-11-24 13:52:58 +01:00
onClick={() => {
if (nextExchange !== undefined) {
onSwitchExchange(nextExchange);
}
setSwitchingExchange(false);
}}
2021-11-15 15:18:58 +01:00
>
2022-02-23 19:18:37 +01:00
{nextExchange === undefined ? (
<i18n.Translate>Cancel exchange selection</i18n.Translate>
2022-02-23 19:18:37 +01:00
) : (
<i18n.Translate>Confirm exchange selection</i18n.Translate>
2022-02-23 19:18:37 +01:00
)}
2021-11-15 15:18:58 +01:00
</LinkSuccess>
</Fragment>
) : (
<LinkSuccess
style={{ fontSize: "small" }}
upperCased
onClick={() => setSwitchingExchange(true)}
>
<i18n.Translate>Edit exchange</i18n.Translate>
2021-11-15 15:18:58 +01:00
</LinkSuccess>
))}
</section>
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
disabled={!exchangeBaseUrl || confirmDisabled}
onClick={doWithdrawAndCheckError}
2021-09-17 20:48:33 +02:00
>
<i18n.Translate>Confirm withdrawal</i18n.Translate>
2021-09-17 20:48:33 +02:00
</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={doWithdrawAndCheckError}
>
<i18n.Translate>Withdraw anyway</i18n.Translate>
</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 {
const { i18n } = useTranslationContext();
2021-11-15 15:18:58 +01:00
const [customExchange, setCustomExchange] = useState<string | undefined>(
undefined,
);
const [reviewing, setReviewing] = useState<boolean>(false);
const [reviewed, setReviewed] = 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) {
2022-01-20 17:12:28 +01:00
return <Loading />;
2021-10-11 20:59:55 +02:00
}
if (detailsHook.hasError) {
2021-11-15 15:18:58 +01:00
return (
2022-01-20 17:12:28 +01:00
<LoadingError
title={
<i18n.Translate>Could not load the withdrawal details</i18n.Translate>
}
2022-01-20 17:12:28 +01:00
error={detailsHook}
/>
2021-11-15 15:18:58 +01:00
);
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
2022-03-15 04:24:39 +01:00
const onAccept = async (accepted: boolean): Promise<void> => {
2021-11-22 21:34:27 +01:00
if (!exchange) return;
2021-09-17 20:48:33 +02:00
try {
2022-03-15 04:24:39 +01:00
await wxApi.setExchangeTosAccepted(
exchange,
accepted ? details.tos.version : undefined,
);
setReviewed(accepted);
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;
const res = await wxApi.acceptWithdrawal(uri, exchange);
if (res.confirmTransferUrl) {
document.location.href = res.confirmTransferUrl;
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}
reviewed={reviewed}
onAccept={onAccept}
reviewing={reviewing}
onReview={setReviewing}
/>
);
}
2021-11-15 15:18:58 +01:00
export function WithdrawPage({ talerWithdrawUri }: Props): VNode {
const { i18n } = useTranslationContext();
2021-11-15 15:18:58 +01:00
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>
2021-11-15 15:18:58 +01:00
</span>
);
2021-10-11 20:59:55 +02:00
}
if (!uriInfoHook) {
2022-01-20 17:12:28 +01:00
return <Loading />;
2021-10-11 20:59:55 +02:00
}
if (uriInfoHook.hasError) {
2021-11-15 15:18:58 +01:00
return (
2022-01-20 17:12:28 +01:00
<LoadingError
title={
<i18n.Translate>Could not get the info from the URI</i18n.Translate>
}
2022-01-20 17:12:28 +01:00
error={uriInfoHook}
/>
2021-11-15 15:18:58 +01:00
);
2021-10-11 20:59:55 +02:00
}
2022-01-20 17:12:28 +01:00
2021-11-15 15:18:58 +01:00
return (
<WithdrawPageWithParsedURI
uri={talerWithdrawUri}
uriInfo={uriInfoHook.response}
/>
);
2021-10-11 20:59:55 +02:00
}