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

65 lines
1.8 KiB
TypeScript
Raw Normal View History

import { AmountJson, Amounts, parsePaytoUri } 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) {
return <div>could not parse payto uri from exchange {payto}</div>;
}
2021-09-20 19:05:40 +02:00
return (
<Fragment>
2021-09-20 19:05:40 +02:00
<section>
<h1>Exchange is ready for withdrawal!</h1>
2021-11-15 15:18:58 +01:00
<p>
To complete the process you need to wire{" "}
2021-11-22 21:34:27 +01:00
<b>{amountToString(amount)}</b> to the exchange bank account
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>
Make sure to use the correct subject, otherwise the money will not
arrive in this wallet.
</WarningBox>
</p>
</section>
<section>
2021-11-16 17:59:53 +01:00
<p>
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
</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}>
Cancel withdrawal
</ButtonDestructive>
2021-09-20 19:05:40 +02:00
</footer>
</Fragment>
2021-09-20 19:05:40 +02:00
);
}