2019-08-29 23:12:55 +02:00
|
|
|
/*
|
|
|
|
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-09-08 20:30:32 +02:00
|
|
|
import { AmountLike, Amounts, i18n, WithdrawUriInfoResponse } from '@gnu-taler/taler-util';
|
|
|
|
import { ExchangeWithdrawDetails } from '@gnu-taler/taler-wallet-core/src/operations/withdraw';
|
|
|
|
import { useEffect, useState } from "preact/hooks";
|
|
|
|
import { JSX } from "preact/jsx-runtime";
|
|
|
|
import { LogoHeader } from '../components/LogoHeader';
|
|
|
|
import { Part } from '../components/Part';
|
|
|
|
import { ButtonSuccess, WalletAction } from '../components/styled';
|
2020-06-03 13:16:25 +02:00
|
|
|
import {
|
2021-09-08 20:30:32 +02:00
|
|
|
acceptWithdrawal, getExchangeWithdrawalInfo, getWithdrawalDetailsForUri, onUpdateNotification
|
2020-06-03 13:16:25 +02:00
|
|
|
} from "../wxApi";
|
2021-09-08 20:30:32 +02:00
|
|
|
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-05-07 23:10:27 +02:00
|
|
|
interface Props {
|
|
|
|
talerWithdrawUri?: string;
|
|
|
|
}
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-05-31 16:34:48 +02:00
|
|
|
export interface ViewProps {
|
2021-09-08 20:30:32 +02:00
|
|
|
details: ExchangeWithdrawDetails;
|
|
|
|
amount: string;
|
2021-05-31 16:34:48 +02:00
|
|
|
accept: () => Promise<void>;
|
|
|
|
setCancelled: (b: boolean) => void;
|
|
|
|
setSelecting: (b: boolean) => void;
|
|
|
|
};
|
|
|
|
|
2021-09-08 20:30:32 +02:00
|
|
|
function amountToString(text: AmountLike) {
|
|
|
|
const aj = Amounts.jsonifyAmount(text)
|
|
|
|
const amount = Amounts.stringifyValue(aj)
|
|
|
|
return `${amount} ${aj.currency}`
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function View({ details, amount, accept, setCancelled, setSelecting }: ViewProps) {
|
2019-08-29 23:12:55 +02:00
|
|
|
|
|
|
|
return (
|
2021-09-08 20:30:32 +02:00
|
|
|
<WalletAction style={{ textAlign: 'center' }}>
|
|
|
|
<LogoHeader />
|
|
|
|
<h2>
|
|
|
|
{i18n.str`Digital cash withdrawal`}
|
|
|
|
</h2>
|
|
|
|
<section>
|
|
|
|
<div>
|
|
|
|
<Part title="Total to withdraw" text={amountToString(Amounts.sub(Amounts.parseOrThrow(amount), details.withdrawFee).amount)} kind='positive' />
|
|
|
|
<Part title="Chosen amount" text={amountToString(amount)} kind='neutral' />
|
|
|
|
{Amounts.isNonZero(details.withdrawFee) &&
|
|
|
|
<Part title="Exchange fee" text={amountToString(details.withdrawFee)} kind='negative' />
|
|
|
|
}
|
|
|
|
<Part title="Exchange" text={details.exchangeInfo.baseUrl} kind='neutral' big />
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
|
2021-08-13 23:04:05 +02:00
|
|
|
<div>
|
2021-09-08 20:30:32 +02:00
|
|
|
<ButtonSuccess
|
|
|
|
upperCased
|
|
|
|
disabled={!details.exchangeInfo.baseUrl}
|
|
|
|
onClick={accept}
|
|
|
|
>
|
|
|
|
{i18n.str`Accept fees and withdraw`}
|
|
|
|
</ButtonSuccess>
|
2021-08-13 23:04:05 +02:00
|
|
|
</div>
|
2021-09-08 20:30:32 +02:00
|
|
|
</section>
|
2021-08-19 05:34:47 +02:00
|
|
|
</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-09-08 20:30:32 +02:00
|
|
|
const [uriInfo, setUriInfo] = useState<WithdrawUriInfoResponse | undefined>(undefined);
|
|
|
|
const [details, setDetails] = useState<ExchangeWithdrawDetails | undefined>(undefined);
|
2021-05-31 16:34:48 +02:00
|
|
|
const [cancelled, setCancelled] = useState(false);
|
|
|
|
const [selecting, setSelecting] = useState(false);
|
2021-08-19 05:34:47 +02:00
|
|
|
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
|
|
|
|
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 });
|
2021-09-08 20:30:32 +02:00
|
|
|
setUriInfo(res);
|
2021-08-13 23:04:05 +02:00
|
|
|
} catch (e) {
|
2021-08-23 21:51:49 +02:00
|
|
|
console.error('error', JSON.stringify(e, undefined, 2))
|
2021-08-19 05:34:47 +02:00
|
|
|
setError(true)
|
2021-05-31 16:34:48 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
fetchData();
|
2021-09-08 20:30:32 +02:00
|
|
|
}, [selecting, talerWithdrawUri, updateCounter]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
async function fetchData() {
|
|
|
|
if (!uriInfo || !uriInfo.defaultExchangeBaseUrl) return
|
|
|
|
const res = await getExchangeWithdrawalInfo({
|
|
|
|
exchangeBaseUrl: uriInfo.defaultExchangeBaseUrl,
|
|
|
|
amount: Amounts.parseOrThrow(uriInfo.amount)
|
|
|
|
})
|
|
|
|
setDetails(res)
|
|
|
|
}
|
|
|
|
fetchData()
|
|
|
|
}, [uriInfo])
|
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> => {
|
2021-09-08 20:30:32 +02:00
|
|
|
if (!details) {
|
2021-05-31 16:34:48 +02:00
|
|
|
throw Error("can't accept, no exchange selected");
|
|
|
|
}
|
2021-09-08 20:30:32 +02:00
|
|
|
console.log("accepting exchange", details.exchangeInfo.baseUrl);
|
|
|
|
const res = await acceptWithdrawal(talerWithdrawUri, details.exchangeInfo.baseUrl);
|
2021-05-31 16:34:48 +02:00
|
|
|
console.log("accept withdrawal response", res);
|
|
|
|
if (res.confirmTransferUrl) {
|
|
|
|
document.location.href = res.confirmTransferUrl;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-08-13 23:04:05 +02:00
|
|
|
if (cancelled) {
|
|
|
|
return <span><i18n.Translate>Withdraw operation has been cancelled.</i18n.Translate></span>;
|
|
|
|
}
|
2021-08-19 05:34:47 +02:00
|
|
|
if (error) {
|
|
|
|
return <span><i18n.Translate>This URI is not valid anymore.</i18n.Translate></span>;
|
|
|
|
}
|
2021-09-08 20:30:32 +02:00
|
|
|
if (!uriInfo) {
|
|
|
|
return <span><i18n.Translate>Loading...</i18n.Translate></span>;
|
|
|
|
}
|
|
|
|
if (!details) {
|
|
|
|
return <span><i18n.Translate>Getting withdrawal details.</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-09-08 20:30:32 +02:00
|
|
|
details={details} amount={uriInfo.amount}
|
2021-05-31 16:34:48 +02:00
|
|
|
/>
|
2019-08-29 23:12:55 +02:00
|
|
|
}
|
|
|
|
|