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

162 lines
5.0 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 { i18n } from '@gnu-taler/taler-util'
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";
2021-05-07 23:10:27 +02:00
interface Props {
talerWithdrawUri?: string;
}
2021-05-31 16:34:48 +02:00
export interface ViewProps {
talerWithdrawUri?: string;
details?: WithdrawUriInfoResponse;
cancelled?: boolean;
selectedExchange?: string;
accept: () => Promise<void>;
setCancelled: (b: boolean) => void;
setSelecting: (b: boolean) => void;
};
export function View({ talerWithdrawUri, details, cancelled, selectedExchange, accept, setCancelled, setSelecting }: ViewProps) {
2021-06-16 22:01:06 +02:00
const [state, setState] = useState(1)
setTimeout(() => {
setState(s => s + 1)
}, 1000);
2021-05-07 23:10:27 +02:00
if (!talerWithdrawUri) {
2021-06-08 21:25:55 +02:00
return <span><i18n.Translate>missing withdraw uri</i18n.Translate></span>;
2021-05-07 23:10:27 +02:00
}
if (!details) {
2021-06-08 21:25:55 +02:00
return <span><i18n.Translate>Loading...</i18n.Translate></span>;
}
if (cancelled) {
2021-06-16 22:01:06 +02:00
return <span><i18n.Translate>Withdraw operation has been cancelled.{state}</i18n.Translate></span>;
}
return (
<div>
2021-06-08 21:25:55 +02:00
<h1><i18n.Translate>Digital Cash Withdrawal</i18n.Translate></h1>
<p><i18n.Translate>
You are about to withdraw{" "}
<strong>{renderAmount(details.amount)}</strong> from your bank account
into your wallet.
</i18n.Translate></p>
{selectedExchange ? (
2021-06-08 21:25:55 +02:00
<p><i18n.Translate>
The exchange <strong>{selectedExchange}</strong> will be used as the
Taler payment service provider.
2021-06-08 21:25:55 +02:00
</i18n.Translate></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>
2021-05-31 16:34:48 +02:00
)
}
export function WithdrawPage({ talerWithdrawUri }: Props): JSX.Element {
2021-05-31 16:34:48 +02:00
const [details, setDetails] = useState<WithdrawUriInfoResponse | undefined>(undefined);
const [selectedExchange, setSelectedExchange] = useState<
string | undefined
>(undefined);
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(() => {
if (!talerWithdrawUri) return
const fetchData = async (): Promise<void> => {
const res = await getWithdrawalDetailsForUri({ talerWithdrawUri });
setDetails(res);
if (res.defaultExchangeBaseUrl) {
setSelectedExchange(res.defaultExchangeBaseUrl);
}
};
fetchData();
}, [selectedExchange, errMsg, selecting, talerWithdrawUri, updateCounter]);
const accept = async (): Promise<void> => {
if (!talerWithdrawUri) return
if (!selectedExchange) {
throw Error("can't accept, no exchange selected");
}
console.log("accepting exchange", selectedExchange);
const res = await acceptWithdrawal(talerWithdrawUri, selectedExchange);
console.log("accept withdrawal response", res);
if (res.confirmTransferUrl) {
document.location.href = res.confirmTransferUrl;
}
};
return <View accept={accept}
setCancelled={setCancelled} setSelecting={setSelecting}
cancelled={cancelled} details={details} selectedExchange={selectedExchange}
talerWithdrawUri={talerWithdrawUri}
/>
}