wallet-core/packages/taler-wallet-webextension/src/pages/withdraw.tsx

142 lines
4.3 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
*/
import * as i18n from "../i18n";
2021-03-27 14:35:58 +01:00
import { renderAmount } from "../renderHtml";
2021-05-07 15:38:28 +02:00
import { useState, useEffect } from "preact/hooks";
import {
acceptWithdrawal,
onUpdateNotification,
2020-08-13 20:43:51 +02:00
getWithdrawalDetailsForUri,
} from "../wxApi";
2021-03-27 14:35:58 +01:00
import { WithdrawUriInfoResponse } from "@gnu-taler/taler-util";
2021-05-07 15:38:28 +02:00
import { JSX } from "preact/jsx-runtime";
function WithdrawalDialog(props: { talerWithdrawUri: string }): JSX.Element {
2021-05-07 15:38:28 +02:00
const [details, setDetails] = useState<WithdrawUriInfoResponse | undefined>(undefined);
const [selectedExchange, setSelectedExchange] = useState<
string | undefined
2021-05-07 15:38:28 +02:00
>(undefined);
const talerWithdrawUri = props.talerWithdrawUri;
const [cancelled, setCancelled] = useState(false);
const [selecting, setSelecting] = useState(false);
const [errMsg, setErrMsg] = useState<string | undefined>("");
const [updateCounter, setUpdateCounter] = useState(1);
useEffect(() => {
return onUpdateNotification(() => {
setUpdateCounter(updateCounter + 1);
});
}, []);
useEffect(() => {
2020-04-06 20:02:01 +02:00
const fetchData = async (): Promise<void> => {
const res = await getWithdrawalDetailsForUri({
talerWithdrawUri: props.talerWithdrawUri,
});
2020-08-13 20:43:51 +02:00
setDetails(res);
if (res.defaultExchangeBaseUrl) {
setSelectedExchange(res.defaultExchangeBaseUrl);
}
};
fetchData();
}, [selectedExchange, errMsg, selecting, talerWithdrawUri, updateCounter]);
if (!details) {
return <span>Loading...</span>;
}
if (cancelled) {
return <span>Withdraw operation has been cancelled.</span>;
}
2020-04-06 20:02:01 +02:00
const accept = async (): Promise<void> => {
2020-04-07 10:07:32 +02:00
if (!selectedExchange) {
throw Error("can't accept, no exchange selected");
}
console.log("accepting exchange", selectedExchange);
2020-04-07 10:07:32 +02:00
const res = await acceptWithdrawal(talerWithdrawUri, selectedExchange);
console.log("accept withdrawal response", res);
if (res.confirmTransferUrl) {
document.location.href = res.confirmTransferUrl;
}
};
return (
<div>
<h1>Digital Cash Withdrawal</h1>
<i18n.Translate wrap="p">
You are about to withdraw{" "}
<strong>{renderAmount(details.amount)}</strong> from your bank account
into your wallet.
</i18n.Translate>
{selectedExchange ? (
<p>
The exchange <strong>{selectedExchange}</strong> will be used as the
Taler payment service provider.
</p>
) : null}
<div>
<button
className="pure-button button-success"
disabled={!selectedExchange}
onClick={() => accept()}
>
{i18n.str`Accept fees and withdraw`}
</button>
<p>
<span
role="button"
tabIndex={0}
style={{ textDecoration: "underline", cursor: "pointer" }}
onClick={() => setSelecting(true)}
>
{i18n.str`Chose different exchange provider`}
</span>
<br />
<span
role="button"
tabIndex={0}
style={{ textDecoration: "underline", cursor: "pointer" }}
onClick={() => setCancelled(true)}
>
{i18n.str`Cancel withdraw operation`}
</span>
</p>
</div>
</div>
);
}
2020-04-06 20:02:01 +02:00
export function createWithdrawPage(): JSX.Element {
const url = new URL(document.location.href);
2020-04-07 10:07:32 +02:00
const talerWithdrawUri = url.searchParams.get("talerWithdrawUri");
if (!talerWithdrawUri) {
throw Error("withdraw URI required");
}
return <WithdrawalDialog talerWithdrawUri={talerWithdrawUri} />;
2020-04-07 10:07:32 +02:00
}