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

79 lines
2.2 KiB
TypeScript
Raw Normal View History

import { AmountJson, parsePaytoUri, i18n } from "@gnu-taler/taler-util";
2021-11-16 17:59:53 +01:00
import { Fragment, h, VNode } from "preact";
import { BankDetailsByPaytoType } from "../components/BankDetailsByPaytoType";
2021-09-20 19:05:40 +02:00
import { QR } from "../components/QR";
import { ButtonDestructive, WarningBox } from "../components/styled";
2022-01-04 21:06:17 +01:00
import { amountToString } from "../utils/index";
2021-09-20 19:05:40 +02:00
export interface Props {
reservePub: string;
2021-11-16 17:59:53 +01:00
payto: string;
exchangeBaseUrl: string;
amount: AmountJson;
2022-01-25 14:29:29 +01:00
onCancel: () => void;
2021-09-20 19:05:40 +02:00
}
2021-11-16 17:59:53 +01:00
export function ReserveCreated({
reservePub,
payto,
2022-01-25 14:29:29 +01:00
onCancel,
2021-11-16 17:59:53 +01:00
exchangeBaseUrl,
amount,
}: Props): VNode {
const paytoURI = parsePaytoUri(payto);
// const url = new URL(paytoURI?.targetPath);
if (!paytoURI) {
2022-02-23 19:18:37 +01:00
return (
<div>
<i18n.Translate>
could not parse payto uri from exchange {payto}
</i18n.Translate>
2022-02-23 19:18:37 +01:00
</div>
);
2021-11-16 17:59:53 +01:00
}
2021-09-20 19:05:40 +02:00
return (
<Fragment>
2021-09-20 19:05:40 +02:00
<section>
2022-02-23 19:18:37 +01:00
<h1>
<i18n.Translate>Exchange is ready for withdrawal</i18n.Translate>
2022-02-23 19:18:37 +01:00
</h1>
2021-11-15 15:18:58 +01:00
<p>
<i18n.Translate>
2022-02-23 19:18:37 +01:00
To complete the process you need to wire
<b>{amountToString(amount)}</b> to the exchange bank account
</i18n.Translate>
2021-11-15 15:18:58 +01:00
</p>
2021-11-16 17:59:53 +01:00
<BankDetailsByPaytoType
2021-11-22 21:34:27 +01:00
amount={amountToString(amount)}
2021-11-16 17:59:53 +01:00
exchangeBaseUrl={exchangeBaseUrl}
payto={paytoURI}
subject={reservePub}
/>
<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>
<section>
2021-11-16 17:59:53 +01:00
<p>
<i18n.Translate>
2022-02-23 19:18:37 +01:00
Alternative, you can also scan this QR code or open
<a href={payto}>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>
<QR text={payto} />
2021-09-20 19:05:40 +02:00
</section>
<footer>
<div />
2022-01-25 14:29:29 +01:00
<ButtonDestructive onClick={onCancel}>
<i18n.Translate>Cancel withdrawal</i18n.Translate>
</ButtonDestructive>
2021-09-20 19:05:40 +02:00
</footer>
</Fragment>
2021-09-20 19:05:40 +02:00
);
}