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

174 lines
5.6 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-08-23 21:51:49 +02:00
import { h } from 'preact';
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";
import { WalletAction } from '../components/styled';
2021-05-07 23:10:27 +02:00
interface Props {
talerWithdrawUri?: string;
}
2021-05-31 16:34:48 +02:00
export interface ViewProps {
2021-08-13 23:04:05 +02:00
details: WithdrawUriInfoResponse;
2021-05-31 16:34:48 +02:00
selectedExchange?: string;
accept: () => Promise<void>;
setCancelled: (b: boolean) => void;
setSelecting: (b: boolean) => void;
};
2021-08-13 23:04:05 +02:00
export function View({ details, selectedExchange, accept, setCancelled, setSelecting }: ViewProps) {
return (
<WalletAction>
2021-08-13 23:04:05 +02:00
<div style="border-bottom: 3px dashed #aa3939; margin-bottom: 2em;">
<h1 style="font-family: monospace; font-size: 250%;">
<span style="color: #aa3939;"></span>Taler Wallet<span style="color: #aa3939;"></span>
</h1>
</div>
<div class="fade">
<div>
<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 ? (
<p><i18n.Translate>
The exchange <strong>{selectedExchange}</strong> will be used as the
Taler payment service provider.
</i18n.Translate></p>
) : null}
<div>
<button
class="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>
</div>
</WalletAction>
2021-05-31 16:34:48 +02:00
)
}
2021-08-13 23:04:05 +02:00
export function WithdrawPage({ talerWithdrawUri, ...rest }: 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);
2021-05-31 16:34:48 +02:00
const [cancelled, setCancelled] = useState(false);
const [selecting, setSelecting] = useState(false);
const [error, setError] = useState<boolean>(false);
2021-05-31 16:34:48 +02:00
const [updateCounter, setUpdateCounter] = useState(1);
2021-08-13 23:04:05 +02:00
const [state, setState] = useState(1)
2021-05-31 16:34:48 +02:00
useEffect(() => {
return onUpdateNotification(() => {
2021-08-13 23:04:05 +02:00
console.log('updating...')
2021-05-31 16:34:48 +02:00
setUpdateCounter(updateCounter + 1);
});
}, []);
useEffect(() => {
2021-08-13 23:04:05 +02:00
console.log('on effect yes', talerWithdrawUri)
2021-05-31 16:34:48 +02:00
if (!talerWithdrawUri) return
const fetchData = async (): Promise<void> => {
2021-08-13 23:04:05 +02:00
try {
const res = await getWithdrawalDetailsForUri({ talerWithdrawUri });
setDetails(res);
if (res.defaultExchangeBaseUrl) {
setSelectedExchange(res.defaultExchangeBaseUrl);
}
} catch (e) {
2021-08-23 21:51:49 +02:00
console.error('error', JSON.stringify(e, undefined, 2))
setError(true)
2021-05-31 16:34:48 +02:00
}
};
fetchData();
}, [selectedExchange, selecting, talerWithdrawUri, updateCounter, state]);
2021-08-13 23:04:05 +02:00
if (!talerWithdrawUri) {
return <span><i18n.Translate>missing withdraw uri</i18n.Translate></span>;
}
2021-05-31 16:34:48 +02:00
const accept = async (): Promise<void> => {
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;
}
};
2021-08-13 23:04:05 +02:00
if (!details) {
return <span><i18n.Translate>Loading...</i18n.Translate></span>;
}
if (cancelled) {
return <span><i18n.Translate>Withdraw operation has been cancelled.</i18n.Translate></span>;
}
if (error) {
return <span><i18n.Translate>This URI is not valid anymore.</i18n.Translate></span>;
}
2021-08-13 23:04:05 +02:00
2021-05-31 16:34:48 +02:00
return <View accept={accept}
setCancelled={setCancelled} setSelecting={setSelecting}
2021-08-13 23:04:05 +02:00
details={details} selectedExchange={selectedExchange}
2021-05-31 16:34:48 +02:00
/>
}