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

131 lines
4.1 KiB
TypeScript
Raw Normal View History

2022-06-06 17:06:25 +02:00
/*
This file is part of GNU Taler
(C) 2022 Taler Systems S.A.
GNU 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.
GNU 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
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
import { AmountJson, PaytoUri, stringifyPaytoUri } from "@gnu-taler/taler-util";
2021-11-16 17:59:53 +01:00
import { Fragment, h, VNode } from "preact";
2022-04-11 16:33:55 +02:00
import { Amount } from "../components/Amount.js";
2022-03-29 04:41:07 +02:00
import { BankDetailsByPaytoType } from "../components/BankDetailsByPaytoType.js";
2022-11-07 19:11:45 +01:00
import { CopyButton } from "../components/CopyButton.js";
2022-04-11 16:33:55 +02:00
import { ErrorMessage } from "../components/ErrorMessage.js";
2022-03-29 04:41:07 +02:00
import { QR } from "../components/QR.js";
2022-06-01 20:47:47 +02:00
import { Title, WarningBox } from "../components/styled/index.js";
2023-05-05 13:47:00 +02:00
import { useTranslationContext } from "@gnu-taler/web-util/browser";
2022-06-01 20:47:47 +02:00
import { Button } from "../mui/Button.js";
2021-09-20 19:05:40 +02:00
export interface Props {
reservePub: string;
2022-03-24 20:02:38 +01:00
paytoURI: PaytoUri | undefined;
2021-11-16 17:59:53 +01:00
exchangeBaseUrl: string;
amount: AmountJson;
2022-06-01 20:47:47 +02:00
onCancel: () => Promise<void>;
2021-09-20 19:05:40 +02:00
}
2021-11-16 17:59:53 +01:00
export function ReserveCreated({
reservePub,
2022-03-24 20:02:38 +01:00
paytoURI,
2022-01-25 14:29:29 +01:00
onCancel,
2021-11-16 17:59:53 +01:00
exchangeBaseUrl,
amount,
}: Props): VNode {
const { i18n } = useTranslationContext();
2021-11-16 17:59:53 +01:00
if (!paytoURI) {
2022-02-23 19:18:37 +01:00
return (
2022-04-11 16:33:55 +02:00
<ErrorMessage
2023-01-09 12:38:48 +01:00
title={i18n.str`Could not parse the payto URI`}
description={i18n.str`Please check the uri`}
2022-04-11 16:33:55 +02:00
/>
2022-02-23 19:18:37 +01:00
);
2021-11-16 17:59:53 +01:00
}
function TransferDetails(): VNode {
if (!paytoURI) return <Fragment />;
return (
2021-09-20 19:05:40 +02:00
<section>
2021-11-16 17:59:53 +01:00
<BankDetailsByPaytoType
amount={amount}
2021-11-16 17:59:53 +01:00
exchangeBaseUrl={exchangeBaseUrl}
payto={paytoURI}
subject={reservePub}
/>
2022-11-07 19:11:45 +01:00
<table>
<tbody>
<tr>
<td>
<pre>
<b>
<a
target="_bank"
rel="noreferrer"
title="RFC 8905 for designating targets for payments"
href="https://tools.ietf.org/html/rfc8905"
>
Payto URI
</a>
</b>
</pre>
</td>
2022-11-07 19:14:40 +01:00
<td width="100%" style={{ wordBreak: "break-all" }}>
{stringifyPaytoUri(paytoURI)}
</td>
2022-11-07 19:11:45 +01:00
<td>
<CopyButton getContent={() => stringifyPaytoUri(paytoURI)} />
</td>
</tr>
</tbody>
</table>
2021-11-16 17:59:53 +01:00
<p>
<WarningBox>
<i18n.Translate>
2022-02-23 19:18:37 +01:00
Make sure to use the correct subject, otherwise the money will not
arrive in this wallet.
</i18n.Translate>
2021-11-16 17:59:53 +01:00
</WarningBox>
</p>
</section>
);
}
return (
<Fragment>
<section>
<Title>
<i18n.Translate>Exchange is ready for withdrawal</i18n.Translate>
</Title>
<p>
<i18n.Translate>
To complete the process you need to wire{` `}
2022-04-11 16:33:55 +02:00
<b>{<Amount value={amount} />}</b> to the exchange bank account
</i18n.Translate>
</p>
</section>
<TransferDetails />
<section>
2021-11-16 17:59:53 +01:00
<p>
<i18n.Translate>
Alternative, you can also scan this QR code or open{" "}
2022-04-11 16:33:55 +02:00
<a href={stringifyPaytoUri(paytoURI)}>this link</a> if you have a
banking app installed that supports RFC 8905
</i18n.Translate>
2021-11-16 17:59:53 +01:00
</p>
2022-04-11 16:33:55 +02:00
<QR text={stringifyPaytoUri(paytoURI)} />
2021-09-20 19:05:40 +02:00
</section>
<footer>
<div />
2022-06-01 20:47:47 +02:00
<Button variant="contained" color="error" onClick={onCancel}>
<i18n.Translate>Cancel withdrawal</i18n.Translate>
2022-06-01 20:47:47 +02:00
</Button>
2021-09-20 19:05:40 +02:00
</footer>
</Fragment>
2021-09-20 19:05:40 +02:00
);
}