2019-08-29 23:12:55 +02:00
|
|
|
/*
|
2022-06-06 17:05:26 +02:00
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2022 Taler Systems S.A.
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2022-06-06 17:05:26 +02:00
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
2019-08-29 23:12:55 +02:00
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
2022-06-06 17:05:26 +02:00
|
|
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
2019-08-29 23:12:55 +02:00
|
|
|
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
|
2022-06-06 17:05:26 +02:00
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2019-08-29 23:12:55 +02:00
|
|
|
*/
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
import {
|
2022-08-08 19:09:28 +02:00
|
|
|
AbsoluteTime,
|
2021-11-15 15:18:58 +01:00
|
|
|
Amounts,
|
|
|
|
ConfirmPayResultType,
|
|
|
|
ContractTerms,
|
|
|
|
PreparePayResultType,
|
2022-01-19 17:51:48 +01:00
|
|
|
Product,
|
2021-11-15 15:18:58 +01:00
|
|
|
} from "@gnu-taler/taler-util";
|
2021-11-16 17:59:53 +01:00
|
|
|
import { Fragment, h, VNode } from "preact";
|
2022-07-31 01:55:41 +02:00
|
|
|
import { useState } from "preact/hooks";
|
|
|
|
import { Amount } from "../../components/Amount.js";
|
|
|
|
import { ErrorTalerOperation } from "../../components/ErrorTalerOperation.js";
|
|
|
|
import { LoadingError } from "../../components/LoadingError.js";
|
|
|
|
import { LogoHeader } from "../../components/LogoHeader.js";
|
|
|
|
import { Part } from "../../components/Part.js";
|
|
|
|
import { QR } from "../../components/QR.js";
|
2021-11-15 15:18:58 +01:00
|
|
|
import {
|
2022-03-17 19:00:34 +01:00
|
|
|
Link,
|
2021-11-15 15:18:58 +01:00
|
|
|
LinkSuccess,
|
2022-01-19 17:51:48 +01:00
|
|
|
SmallLightText,
|
2022-03-28 19:03:59 +02:00
|
|
|
SubTitle,
|
2021-11-15 15:18:58 +01:00
|
|
|
SuccessBox,
|
|
|
|
WalletAction,
|
|
|
|
WarningBox,
|
2022-07-31 01:55:41 +02:00
|
|
|
} from "../../components/styled/index.js";
|
2022-08-08 19:09:28 +02:00
|
|
|
import { Time } from "../../components/Time.js";
|
2022-07-31 01:55:41 +02:00
|
|
|
import { useTranslationContext } from "../../context/translation.js";
|
|
|
|
import { Button } from "../../mui/Button.js";
|
2022-08-08 19:09:28 +02:00
|
|
|
import { MerchantDetails, PurchaseDetails } from "../../wallet/Transaction.js";
|
2022-07-31 01:55:41 +02:00
|
|
|
import { State } from "./index.js";
|
2022-04-21 19:23:53 +02:00
|
|
|
|
2022-07-31 01:55:41 +02:00
|
|
|
export function LoadingUriView({ error }: State.LoadingUriError): VNode {
|
2022-04-21 19:23:53 +02:00
|
|
|
const { i18n } = useTranslationContext();
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
2022-07-31 01:55:41 +02:00
|
|
|
<LoadingError
|
|
|
|
title={<i18n.Translate>Could not load pay status</i18n.Translate>}
|
|
|
|
error={error}
|
2021-11-15 15:18:58 +01:00
|
|
|
/>
|
|
|
|
);
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
|
|
|
|
2022-07-31 01:55:41 +02:00
|
|
|
type SupportedStates =
|
|
|
|
| State.Ready
|
|
|
|
| State.Confirmed
|
2022-08-08 19:09:28 +02:00
|
|
|
| State.Completed
|
2022-07-31 01:55:41 +02:00
|
|
|
| State.NoBalanceForCurrency
|
|
|
|
| State.NoEnoughBalance;
|
|
|
|
|
|
|
|
export function BaseView(state: SupportedStates): VNode {
|
2022-03-14 19:20:32 +01:00
|
|
|
const { i18n } = useTranslationContext();
|
2022-04-21 19:23:53 +02:00
|
|
|
const contractTerms: ContractTerms = state.payStatus.contractTerms;
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2022-08-08 19:09:28 +02:00
|
|
|
const price = {
|
|
|
|
raw: state.amount,
|
|
|
|
effective:
|
|
|
|
"amountEffective" in state.payStatus
|
|
|
|
? Amounts.parseOrThrow(state.payStatus.amountEffective)
|
|
|
|
: state.amount,
|
|
|
|
};
|
2022-08-10 16:50:46 +02:00
|
|
|
// const totalFees = Amounts.sub(price.effective, price.raw).amount;
|
2022-08-08 19:09:28 +02:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<WalletAction>
|
|
|
|
<LogoHeader />
|
2021-09-17 20:48:33 +02:00
|
|
|
|
2022-03-28 19:03:59 +02:00
|
|
|
<SubTitle>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Digital cash payment</i18n.Translate>
|
2022-03-28 19:03:59 +02:00
|
|
|
</SubTitle>
|
2022-04-21 19:23:53 +02:00
|
|
|
|
|
|
|
<ShowImportantMessage state={state} />
|
|
|
|
|
2022-08-08 19:09:28 +02:00
|
|
|
<section style={{ textAlign: "left" }}>
|
|
|
|
{/* {state.payStatus.status !== PreparePayResultType.InsufficientBalance &&
|
|
|
|
Amounts.isNonZero(totalFees) && (
|
2021-11-15 15:18:58 +01:00
|
|
|
<Part
|
|
|
|
big
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Total to pay</i18n.Translate>}
|
2022-04-21 19:23:53 +02:00
|
|
|
text={<Amount value={state.payStatus.amountEffective} />}
|
2021-11-15 15:18:58 +01:00
|
|
|
kind="negative"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<Part
|
|
|
|
big
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Purchase amount</i18n.Translate>}
|
2022-04-21 19:23:53 +02:00
|
|
|
text={<Amount value={state.payStatus.amountRaw} />}
|
2021-11-15 15:18:58 +01:00
|
|
|
kind="neutral"
|
|
|
|
/>
|
2022-08-08 19:09:28 +02:00
|
|
|
{Amounts.isNonZero(totalFees) && (
|
2021-11-15 15:18:58 +01:00
|
|
|
<Fragment>
|
|
|
|
<Part
|
|
|
|
big
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Fee</i18n.Translate>}
|
2022-08-08 19:09:28 +02:00
|
|
|
text={<Amount value={totalFees} />}
|
2021-11-15 15:18:58 +01:00
|
|
|
kind="negative"
|
|
|
|
/>
|
|
|
|
</Fragment>
|
2022-08-08 19:09:28 +02:00
|
|
|
)} */}
|
|
|
|
<Part
|
|
|
|
title={<i18n.Translate>Purchase</i18n.Translate>}
|
|
|
|
text={contractTerms.summary}
|
|
|
|
kind="neutral"
|
|
|
|
/>
|
2021-11-15 15:18:58 +01:00
|
|
|
<Part
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Merchant</i18n.Translate>}
|
2022-08-08 19:09:28 +02:00
|
|
|
text={<MerchantDetails merchant={contractTerms.merchant} />}
|
2021-11-15 15:18:58 +01:00
|
|
|
kind="neutral"
|
|
|
|
/>
|
2022-08-08 19:09:28 +02:00
|
|
|
{/* <pre>{JSON.stringify(price)}</pre>
|
|
|
|
<hr />
|
|
|
|
<pre>{JSON.stringify(state.payStatus, undefined, 2)}</pre> */}
|
2022-02-23 19:18:37 +01:00
|
|
|
<Part
|
2022-08-08 19:09:28 +02:00
|
|
|
title={<i18n.Translate>Details</i18n.Translate>}
|
|
|
|
text={
|
|
|
|
<PurchaseDetails
|
|
|
|
price={price}
|
|
|
|
info={{
|
|
|
|
...contractTerms,
|
|
|
|
orderId: contractTerms.order_id,
|
|
|
|
contractTermsHash: "",
|
|
|
|
products: contractTerms.products!,
|
|
|
|
}}
|
|
|
|
proposalId={state.payStatus.proposalId}
|
|
|
|
/>
|
|
|
|
}
|
2022-02-23 19:18:37 +01:00
|
|
|
kind="neutral"
|
|
|
|
/>
|
2021-11-15 15:18:58 +01:00
|
|
|
{contractTerms.order_id && (
|
|
|
|
<Part
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Receipt</i18n.Translate>}
|
2021-11-15 15:18:58 +01:00
|
|
|
text={`#${contractTerms.order_id}`}
|
|
|
|
kind="neutral"
|
|
|
|
/>
|
|
|
|
)}
|
2022-08-08 19:09:28 +02:00
|
|
|
{contractTerms.pay_deadline && (
|
|
|
|
<Part
|
|
|
|
title={<i18n.Translate>Valid until</i18n.Translate>}
|
|
|
|
text={
|
|
|
|
<Time
|
|
|
|
timestamp={AbsoluteTime.fromTimestamp(
|
|
|
|
contractTerms.pay_deadline,
|
|
|
|
)}
|
|
|
|
format="dd MMMM yyyy, HH:mm"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
kind="neutral"
|
|
|
|
/>
|
2022-01-19 17:51:48 +01:00
|
|
|
)}
|
2021-11-15 15:18:58 +01:00
|
|
|
</section>
|
2022-04-21 19:23:53 +02:00
|
|
|
<ButtonsSection
|
|
|
|
state={state}
|
2022-07-31 01:55:41 +02:00
|
|
|
goToWalletManualWithdraw={state.goToWalletManualWithdraw}
|
2022-04-21 19:23:53 +02:00
|
|
|
/>
|
2022-03-17 19:00:34 +01:00
|
|
|
<section>
|
2022-08-10 16:50:46 +02:00
|
|
|
<Link upperCased onClick={state.cancel}>
|
2022-03-17 19:00:34 +01:00
|
|
|
<i18n.Translate>Cancel</i18n.Translate>
|
|
|
|
</Link>
|
|
|
|
</section>
|
2021-11-15 15:18:58 +01:00
|
|
|
</WalletAction>
|
|
|
|
);
|
2021-09-17 20:48:33 +02:00
|
|
|
}
|
2021-08-13 23:04:05 +02:00
|
|
|
|
2022-05-03 00:21:34 +02:00
|
|
|
export function ProductList({ products }: { products: Product[] }): VNode {
|
2022-03-14 19:20:32 +01:00
|
|
|
const { i18n } = useTranslationContext();
|
2022-01-19 17:51:48 +01:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<SmallLightText style={{ margin: ".5em" }}>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>List of products</i18n.Translate>
|
2022-01-19 17:51:48 +01:00
|
|
|
</SmallLightText>
|
|
|
|
<dl>
|
2022-02-18 20:54:15 +01:00
|
|
|
{products.map((p, i) => {
|
|
|
|
if (p.price) {
|
|
|
|
const pPrice = Amounts.parseOrThrow(p.price);
|
|
|
|
return (
|
|
|
|
<div key={i} style={{ display: "flex", textAlign: "left" }}>
|
|
|
|
<div>
|
|
|
|
<img
|
|
|
|
src={p.image ? p.image : undefined}
|
|
|
|
style={{ width: 32, height: 32 }}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<dt>
|
|
|
|
{p.quantity ?? 1} x {p.description}{" "}
|
|
|
|
<span style={{ color: "gray" }}>
|
|
|
|
{Amounts.stringify(pPrice)}
|
|
|
|
</span>
|
|
|
|
</dt>
|
|
|
|
<dd>
|
|
|
|
<b>
|
|
|
|
{Amounts.stringify(
|
|
|
|
Amounts.mult(pPrice, p.quantity ?? 1).amount,
|
|
|
|
)}
|
|
|
|
</b>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<div key={i} style={{ display: "flex", textAlign: "left" }}>
|
|
|
|
<div>
|
|
|
|
<img src={p.image} style={{ width: 32, height: 32 }} />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<dt>
|
|
|
|
{p.quantity ?? 1} x {p.description}
|
|
|
|
</dt>
|
|
|
|
<dd>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Total</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
{` `}
|
|
|
|
{p.price ? (
|
|
|
|
`${Amounts.stringifyValue(
|
|
|
|
Amounts.mult(
|
|
|
|
Amounts.parseOrThrow(p.price),
|
|
|
|
p.quantity ?? 1,
|
|
|
|
).amount,
|
|
|
|
)} ${p}`
|
|
|
|
) : (
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>free</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
)}
|
2022-02-18 20:54:15 +01:00
|
|
|
</dd>
|
|
|
|
</div>
|
2022-01-19 17:51:48 +01:00
|
|
|
</div>
|
2022-02-18 20:54:15 +01:00
|
|
|
);
|
|
|
|
})}
|
2022-01-19 17:51:48 +01:00
|
|
|
</dl>
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|
2022-04-21 19:23:53 +02:00
|
|
|
|
2022-07-31 01:55:41 +02:00
|
|
|
function ShowImportantMessage({ state }: { state: SupportedStates }): VNode {
|
2022-04-21 19:23:53 +02:00
|
|
|
const { i18n } = useTranslationContext();
|
|
|
|
const { payStatus } = state;
|
|
|
|
if (payStatus.status === PreparePayResultType.AlreadyConfirmed) {
|
|
|
|
if (payStatus.paid) {
|
|
|
|
if (payStatus.contractTerms.fulfillment_url) {
|
|
|
|
return (
|
|
|
|
<SuccessBox>
|
|
|
|
<i18n.Translate>
|
|
|
|
Already paid, you are going to be redirected to{" "}
|
|
|
|
<a href={payStatus.contractTerms.fulfillment_url}>
|
|
|
|
{payStatus.contractTerms.fulfillment_url}
|
|
|
|
</a>
|
|
|
|
</i18n.Translate>
|
|
|
|
</SuccessBox>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<SuccessBox>
|
|
|
|
<i18n.Translate>Already paid</i18n.Translate>
|
|
|
|
</SuccessBox>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<WarningBox>
|
|
|
|
<i18n.Translate>Already claimed</i18n.Translate>
|
|
|
|
</WarningBox>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-08-08 19:09:28 +02:00
|
|
|
if (state.status == "completed") {
|
2022-04-21 19:23:53 +02:00
|
|
|
const { payResult, payHandler } = state;
|
|
|
|
if (payHandler.error) {
|
|
|
|
return <ErrorTalerOperation error={payHandler.error.errorDetail} />;
|
|
|
|
}
|
|
|
|
if (payResult.type === ConfirmPayResultType.Done) {
|
|
|
|
return (
|
|
|
|
<SuccessBox>
|
|
|
|
<h3>
|
|
|
|
<i18n.Translate>Payment complete</i18n.Translate>
|
|
|
|
</h3>
|
|
|
|
<p>
|
|
|
|
{!payResult.contractTerms.fulfillment_message ? (
|
|
|
|
payResult.contractTerms.fulfillment_url ? (
|
|
|
|
<i18n.Translate>
|
|
|
|
You are going to be redirected to $
|
|
|
|
{payResult.contractTerms.fulfillment_url}
|
|
|
|
</i18n.Translate>
|
|
|
|
) : (
|
|
|
|
<i18n.Translate>You can close this page.</i18n.Translate>
|
|
|
|
)
|
|
|
|
) : (
|
|
|
|
payResult.contractTerms.fulfillment_message
|
|
|
|
)}
|
|
|
|
</p>
|
|
|
|
</SuccessBox>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return <Fragment />;
|
|
|
|
}
|
|
|
|
|
2022-08-08 19:09:28 +02:00
|
|
|
function PayWithMobile({ state }: { state: SupportedStates }): VNode {
|
2022-04-21 19:23:53 +02:00
|
|
|
const { i18n } = useTranslationContext();
|
|
|
|
|
|
|
|
const [showQR, setShowQR] = useState<boolean>(false);
|
|
|
|
|
|
|
|
const privateUri =
|
|
|
|
state.payStatus.status !== PreparePayResultType.AlreadyConfirmed
|
|
|
|
? `${state.uri}&n=${state.payStatus.noncePriv}`
|
|
|
|
: state.uri;
|
|
|
|
return (
|
|
|
|
<section>
|
|
|
|
<LinkSuccess upperCased onClick={() => setShowQR((qr) => !qr)}>
|
|
|
|
{!showQR ? (
|
|
|
|
<i18n.Translate>Pay with a mobile phone</i18n.Translate>
|
|
|
|
) : (
|
|
|
|
<i18n.Translate>Hide QR</i18n.Translate>
|
|
|
|
)}
|
|
|
|
</LinkSuccess>
|
|
|
|
{showQR && (
|
|
|
|
<div>
|
|
|
|
<QR text={privateUri} />
|
|
|
|
<i18n.Translate>
|
2022-08-08 19:09:28 +02:00
|
|
|
Scan the QR code or
|
2022-04-21 19:23:53 +02:00
|
|
|
<a href={privateUri}>
|
|
|
|
<i18n.Translate>click here</i18n.Translate>
|
|
|
|
</a>
|
|
|
|
</i18n.Translate>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function ButtonsSection({
|
|
|
|
state,
|
|
|
|
goToWalletManualWithdraw,
|
|
|
|
}: {
|
2022-07-31 01:55:41 +02:00
|
|
|
state: SupportedStates;
|
2022-06-01 20:47:47 +02:00
|
|
|
goToWalletManualWithdraw: (currency: string) => Promise<void>;
|
2022-04-21 19:23:53 +02:00
|
|
|
}): VNode {
|
|
|
|
const { i18n } = useTranslationContext();
|
|
|
|
if (state.status === "ready") {
|
2022-08-08 19:09:28 +02:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<section>
|
|
|
|
<Button
|
|
|
|
variant="contained"
|
|
|
|
color="success"
|
|
|
|
onClick={state.payHandler.onClick}
|
|
|
|
>
|
|
|
|
<i18n.Translate>
|
2022-08-14 15:10:37 +02:00
|
|
|
Pay
|
2022-08-08 19:09:28 +02:00
|
|
|
{<Amount value={state.payStatus.amountEffective} />}
|
|
|
|
</i18n.Translate>
|
|
|
|
</Button>
|
|
|
|
</section>
|
|
|
|
<PayWithMobile state={state} />
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
state.status === "no-enough-balance" ||
|
|
|
|
state.status === "no-balance-for-currency"
|
|
|
|
) {
|
|
|
|
// if (state.payStatus.status === PreparePayResultType.InsufficientBalance) {
|
|
|
|
let BalanceMessage = "";
|
|
|
|
if (!state.balance) {
|
|
|
|
BalanceMessage = i18n.str`You have no balance for this currency. Withdraw digital cash first.`;
|
|
|
|
} else {
|
|
|
|
const balanceShouldBeEnough =
|
|
|
|
Amounts.cmp(state.balance, state.amount) !== -1;
|
|
|
|
if (balanceShouldBeEnough) {
|
|
|
|
BalanceMessage = i18n.str`Could not find enough coins to pay this order. Even if you have enough ${state.balance.currency} some restriction may apply.`;
|
2022-05-04 21:25:53 +02:00
|
|
|
} else {
|
2022-08-08 19:09:28 +02:00
|
|
|
BalanceMessage = i18n.str`Your current balance is not enough for this order.`;
|
2022-05-04 21:25:53 +02:00
|
|
|
}
|
2022-04-21 19:23:53 +02:00
|
|
|
}
|
2022-08-08 19:09:28 +02:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<section>
|
|
|
|
<WarningBox>{BalanceMessage}</WarningBox>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<Button
|
|
|
|
variant="contained"
|
|
|
|
color="success"
|
|
|
|
onClick={() => goToWalletManualWithdraw(state.amount.currency)}
|
|
|
|
>
|
2022-08-14 15:10:37 +02:00
|
|
|
<i18n.Translate>Get digital cash</i18n.Translate>
|
2022-08-08 19:09:28 +02:00
|
|
|
</Button>
|
|
|
|
</section>
|
|
|
|
<PayWithMobile state={state} />
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
if (state.status === "confirmed") {
|
|
|
|
if (state.payStatus.status === PreparePayResultType.AlreadyConfirmed) {
|
2022-04-21 19:23:53 +02:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<section>
|
2022-08-08 19:09:28 +02:00
|
|
|
{state.payStatus.paid &&
|
2022-04-21 19:23:53 +02:00
|
|
|
state.payStatus.contractTerms.fulfillment_message && (
|
|
|
|
<Part
|
|
|
|
title={<i18n.Translate>Merchant message</i18n.Translate>}
|
|
|
|
text={state.payStatus.contractTerms.fulfillment_message}
|
|
|
|
kind="neutral"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</section>
|
2022-08-08 19:09:28 +02:00
|
|
|
{!state.payStatus.paid && <PayWithMobile state={state} />}
|
2022-04-21 19:23:53 +02:00
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-08 19:09:28 +02:00
|
|
|
if (state.status === "completed") {
|
2022-04-21 19:23:53 +02:00
|
|
|
if (state.payResult.type === ConfirmPayResultType.Pending) {
|
|
|
|
return (
|
|
|
|
<section>
|
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
<i18n.Translate>Processing</i18n.Translate>...
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return <Fragment />;
|
|
|
|
}
|