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