2019-08-29 23:12:55 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2015 GNUnet e.V.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Page shown to the user to confirm entering
|
|
|
|
* a contract.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
import {
|
|
|
|
AmountJson,
|
|
|
|
AmountLike,
|
|
|
|
Amounts,
|
|
|
|
ConfirmPayResult,
|
|
|
|
ConfirmPayResultDone,
|
|
|
|
ConfirmPayResultType,
|
|
|
|
ContractTerms,
|
2021-12-06 14:31:19 +01:00
|
|
|
NotificationType,
|
2021-11-15 15:18:58 +01:00
|
|
|
PreparePayResult,
|
|
|
|
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-29 18:11:32 +01:00
|
|
|
import { OperationFailedError } from "@gnu-taler/taler-wallet-core";
|
2021-11-16 17:59:53 +01:00
|
|
|
import { Fragment, h, VNode } from "preact";
|
2022-01-31 03:32:56 +01:00
|
|
|
import { useEffect, useState } from "preact/hooks";
|
2022-02-23 19:18:37 +01:00
|
|
|
import { ErrorMessage } from "../components/ErrorMessage";
|
2022-01-20 17:12:28 +01:00
|
|
|
import { Loading } from "../components/Loading";
|
|
|
|
import { LoadingError } from "../components/LoadingError";
|
2021-09-17 20:48:33 +02:00
|
|
|
import { LogoHeader } from "../components/LogoHeader";
|
|
|
|
import { Part } from "../components/Part";
|
|
|
|
import { QR } from "../components/QR";
|
2021-11-15 15:18:58 +01:00
|
|
|
import {
|
|
|
|
ButtonSuccess,
|
2022-03-17 19:00:34 +01:00
|
|
|
Link,
|
|
|
|
LinkPrimary,
|
2021-11-15 15:18:58 +01:00
|
|
|
LinkSuccess,
|
2022-01-19 17:51:48 +01:00
|
|
|
SmallLightText,
|
2021-11-15 15:18:58 +01:00
|
|
|
SuccessBox,
|
|
|
|
WalletAction,
|
|
|
|
WarningBox,
|
|
|
|
} from "../components/styled";
|
2022-03-14 19:20:32 +01:00
|
|
|
import { useTranslationContext } from "../context/translation";
|
2021-11-19 18:51:27 +01:00
|
|
|
import { useAsyncAsHook } from "../hooks/useAsyncAsHook";
|
2021-09-27 18:06:50 +02:00
|
|
|
import * as wxApi from "../wxApi";
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-05-07 23:10:27 +02:00
|
|
|
interface Props {
|
2021-11-15 15:18:58 +01:00
|
|
|
talerPayUri?: string;
|
2022-01-10 20:04:53 +01:00
|
|
|
goToWalletManualWithdraw: (currency?: string) => void;
|
|
|
|
goBack: () => void;
|
2021-05-07 23:10:27 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
const doPayment = async (
|
|
|
|
payStatus: PreparePayResult,
|
|
|
|
): Promise<ConfirmPayResultDone> => {
|
2021-08-13 23:04:05 +02:00
|
|
|
if (payStatus.status !== "payment-possible") {
|
|
|
|
throw Error(`invalid state: ${payStatus.status}`);
|
|
|
|
}
|
|
|
|
const proposalId = payStatus.proposalId;
|
|
|
|
const res = await wxApi.confirmPay(proposalId, undefined);
|
|
|
|
if (res.type !== ConfirmPayResultType.Done) {
|
|
|
|
throw Error("payment pending");
|
|
|
|
}
|
|
|
|
const fu = res.contractTerms.fulfillment_url;
|
|
|
|
if (fu) {
|
|
|
|
document.location.href = fu;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
2021-12-06 14:31:19 +01:00
|
|
|
export function PayPage({
|
|
|
|
talerPayUri,
|
|
|
|
goToWalletManualWithdraw,
|
2022-01-20 17:12:28 +01:00
|
|
|
goBack,
|
2021-12-06 14:31:19 +01:00
|
|
|
}: Props): VNode {
|
2022-03-14 19:20:32 +01:00
|
|
|
const { i18n } = useTranslationContext();
|
2021-11-15 15:18:58 +01:00
|
|
|
const [payResult, setPayResult] = useState<ConfirmPayResult | undefined>(
|
|
|
|
undefined,
|
|
|
|
);
|
2021-11-29 18:11:32 +01:00
|
|
|
const [payErrMsg, setPayErrMsg] = useState<
|
|
|
|
OperationFailedError | string | undefined
|
|
|
|
>(undefined);
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2022-01-20 17:12:28 +01:00
|
|
|
const hook = useAsyncAsHook(async () => {
|
|
|
|
if (!talerPayUri) throw Error("Missing pay uri");
|
|
|
|
const payStatus = await wxApi.preparePay(talerPayUri);
|
|
|
|
const balance = await wxApi.getBalance();
|
|
|
|
return { payStatus, balance };
|
|
|
|
}, [NotificationType.CoinWithdrawn]);
|
|
|
|
|
|
|
|
if (!hook) {
|
|
|
|
return <Loading />;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hook.hasError) {
|
2022-02-23 19:18:37 +01:00
|
|
|
return (
|
|
|
|
<LoadingError
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Could not load pay status</i18n.Translate>}
|
2022-02-23 19:18:37 +01:00
|
|
|
error={hook}
|
|
|
|
/>
|
|
|
|
);
|
2022-01-20 17:12:28 +01:00
|
|
|
}
|
2021-09-27 18:06:50 +02:00
|
|
|
|
2022-01-20 17:12:28 +01:00
|
|
|
const foundBalance = hook.response.balance.balances.find(
|
2021-11-15 15:18:58 +01:00
|
|
|
(b) =>
|
|
|
|
Amounts.parseOrThrow(b.available).currency ===
|
2022-01-20 17:12:28 +01:00
|
|
|
Amounts.parseOrThrow(hook.response.payStatus.amountRaw).currency,
|
2021-11-15 15:18:58 +01:00
|
|
|
);
|
|
|
|
const foundAmount = foundBalance
|
|
|
|
? Amounts.parseOrThrow(foundBalance.available)
|
|
|
|
: undefined;
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2021-11-16 17:59:53 +01:00
|
|
|
const onClick = async (): Promise<void> => {
|
2021-08-13 23:04:05 +02:00
|
|
|
try {
|
2022-01-20 17:12:28 +01:00
|
|
|
const res = await doPayment(hook.response.payStatus);
|
2021-08-13 23:04:05 +02:00
|
|
|
setPayResult(res);
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
2021-09-08 20:30:32 +02:00
|
|
|
if (e instanceof Error) {
|
|
|
|
setPayErrMsg(e.message);
|
|
|
|
}
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
};
|
2021-08-13 23:04:05 +02:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<PaymentRequestView
|
2022-01-20 17:12:28 +01:00
|
|
|
uri={talerPayUri!}
|
|
|
|
payStatus={hook.response.payStatus}
|
2021-11-15 15:18:58 +01:00
|
|
|
payResult={payResult}
|
|
|
|
onClick={onClick}
|
2021-12-06 14:31:19 +01:00
|
|
|
goToWalletManualWithdraw={goToWalletManualWithdraw}
|
2021-11-15 15:18:58 +01:00
|
|
|
balance={foundAmount}
|
|
|
|
/>
|
|
|
|
);
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface PaymentRequestViewProps {
|
|
|
|
payStatus: PreparePayResult;
|
2021-10-11 20:59:55 +02:00
|
|
|
payResult?: ConfirmPayResult;
|
2021-08-13 23:04:05 +02:00
|
|
|
onClick: () => void;
|
|
|
|
payErrMsg?: string;
|
2021-09-17 20:48:33 +02:00
|
|
|
uri: string;
|
2021-12-06 14:31:19 +01:00
|
|
|
goToWalletManualWithdraw: () => void;
|
2021-09-27 18:06:50 +02:00
|
|
|
balance: AmountJson | undefined;
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
export function PaymentRequestView({
|
|
|
|
uri,
|
|
|
|
payStatus,
|
|
|
|
payResult,
|
|
|
|
onClick,
|
2021-12-06 14:31:19 +01:00
|
|
|
goToWalletManualWithdraw,
|
2021-11-15 15:18:58 +01:00
|
|
|
balance,
|
2021-11-16 17:59:53 +01:00
|
|
|
}: PaymentRequestViewProps): VNode {
|
2022-03-14 19:20:32 +01:00
|
|
|
const { i18n } = useTranslationContext();
|
2021-09-17 20:48:33 +02:00
|
|
|
let totalFees: AmountJson = Amounts.getZero(payStatus.amountRaw);
|
2021-05-07 15:38:28 +02:00
|
|
|
const contractTerms: ContractTerms = payStatus.contractTerms;
|
2019-08-29 23:12:55 +02:00
|
|
|
|
2022-01-31 03:32:56 +01:00
|
|
|
useEffect(() => {
|
|
|
|
if (
|
|
|
|
payStatus.status === PreparePayResultType.AlreadyConfirmed &&
|
|
|
|
payStatus.paid
|
|
|
|
) {
|
|
|
|
const fu = payStatus.contractTerms.fulfillment_url;
|
|
|
|
if (fu) {
|
|
|
|
setTimeout(() => {
|
|
|
|
document.location.href = fu;
|
|
|
|
}, 3000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-08-29 23:12:55 +02:00
|
|
|
if (!contractTerms) {
|
|
|
|
return (
|
2022-02-23 19:18:37 +01:00
|
|
|
<ErrorMessage
|
|
|
|
title={
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
Could not load contract terms from merchant or wallet backend.
|
2022-02-23 19:44:14 +01:00
|
|
|
</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
}
|
|
|
|
/>
|
2019-08-29 23:12:55 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-08-13 23:04:05 +02:00
|
|
|
if (payStatus.status === PreparePayResultType.PaymentPossible) {
|
|
|
|
const amountRaw = Amounts.parseOrThrow(payStatus.amountRaw);
|
|
|
|
const amountEffective: AmountJson = Amounts.parseOrThrow(
|
|
|
|
payStatus.amountEffective,
|
|
|
|
);
|
|
|
|
totalFees = Amounts.sub(amountEffective, amountRaw).amount;
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:59:53 +01:00
|
|
|
function Alternative(): VNode {
|
2021-11-15 15:18:58 +01:00
|
|
|
const [showQR, setShowQR] = useState<boolean>(false);
|
|
|
|
const privateUri =
|
|
|
|
payStatus.status !== PreparePayResultType.AlreadyConfirmed
|
|
|
|
? `${uri}&n=${payStatus.noncePriv}`
|
|
|
|
: uri;
|
2022-01-19 17:51:48 +01:00
|
|
|
if (!uri) return <Fragment />;
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<section>
|
|
|
|
<LinkSuccess upperCased onClick={() => setShowQR((qr) => !qr)}>
|
2022-02-23 19:18:37 +01:00
|
|
|
{!showQR ? (
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Pay with a mobile phone</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
) : (
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Hide QR</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
)}
|
2021-11-15 15:18:58 +01:00
|
|
|
</LinkSuccess>
|
|
|
|
{showQR && (
|
|
|
|
<div>
|
|
|
|
<QR text={privateUri} />
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
Scan the QR code or
|
|
|
|
<a href={privateUri}>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>click here</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</a>
|
2022-02-23 19:44:14 +01:00
|
|
|
</i18n.Translate>
|
2021-11-15 15:18:58 +01:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</section>
|
|
|
|
);
|
2021-09-27 18:06:50 +02:00
|
|
|
}
|
|
|
|
|
2021-11-16 17:59:53 +01:00
|
|
|
function ButtonsSection(): VNode {
|
2021-10-11 20:59:55 +02:00
|
|
|
if (payResult) {
|
|
|
|
if (payResult.type === ConfirmPayResultType.Pending) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<section>
|
|
|
|
<div>
|
2022-02-23 19:18:37 +01:00
|
|
|
<p>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Processing</i18n.Translate>...
|
2022-02-23 19:18:37 +01:00
|
|
|
</p>
|
2021-11-15 15:18:58 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
);
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
2021-11-16 17:59:53 +01:00
|
|
|
return <Fragment />;
|
2021-10-11 20:59:55 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
if (payStatus.status === PreparePayResultType.PaymentPossible) {
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<section>
|
|
|
|
<ButtonSuccess upperCased onClick={onClick}>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
Pay {amountToString(payStatus.amountEffective)}
|
2022-02-23 19:44:14 +01:00
|
|
|
</i18n.Translate>
|
2021-11-15 15:18:58 +01:00
|
|
|
</ButtonSuccess>
|
|
|
|
</section>
|
|
|
|
<Alternative />
|
|
|
|
</Fragment>
|
|
|
|
);
|
2021-09-27 18:06:50 +02:00
|
|
|
}
|
|
|
|
if (payStatus.status === PreparePayResultType.InsufficientBalance) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<section>
|
|
|
|
{balance ? (
|
|
|
|
<WarningBox>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
Your balance of {amountToString(balance)} is not enough to pay
|
|
|
|
for this purchase
|
2022-02-23 19:44:14 +01:00
|
|
|
</i18n.Translate>
|
2021-11-15 15:18:58 +01:00
|
|
|
</WarningBox>
|
|
|
|
) : (
|
|
|
|
<WarningBox>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
Your balance is not enough to pay for this purchase.
|
2022-02-23 19:44:14 +01:00
|
|
|
</i18n.Translate>
|
2021-11-15 15:18:58 +01:00
|
|
|
</WarningBox>
|
|
|
|
)}
|
|
|
|
</section>
|
|
|
|
<section>
|
2021-12-06 14:31:19 +01:00
|
|
|
<ButtonSuccess upperCased onClick={goToWalletManualWithdraw}>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Withdraw digital cash</i18n.Translate>
|
2021-11-15 15:18:58 +01:00
|
|
|
</ButtonSuccess>
|
|
|
|
</section>
|
|
|
|
<Alternative />
|
|
|
|
</Fragment>
|
|
|
|
);
|
2021-09-27 18:06:50 +02:00
|
|
|
}
|
|
|
|
if (payStatus.status === PreparePayResultType.AlreadyConfirmed) {
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<section>
|
|
|
|
{payStatus.paid && contractTerms.fulfillment_message && (
|
|
|
|
<Part
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Merchant message</i18n.Translate>}
|
2021-11-15 15:18:58 +01:00
|
|
|
text={contractTerms.fulfillment_message}
|
|
|
|
kind="neutral"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</section>
|
|
|
|
{!payStatus.paid && <Alternative />}
|
|
|
|
</Fragment>
|
|
|
|
);
|
2021-09-27 18:06:50 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
return <span />;
|
2021-09-27 18:06:50 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<WalletAction>
|
|
|
|
<LogoHeader />
|
2021-09-17 20:48:33 +02:00
|
|
|
|
2022-02-23 19:18:37 +01:00
|
|
|
<h2>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Digital cash payment</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</h2>
|
2021-11-15 15:18:58 +01:00
|
|
|
{payStatus.status === PreparePayResultType.AlreadyConfirmed &&
|
|
|
|
(payStatus.paid ? (
|
2022-01-31 03:32:56 +01:00
|
|
|
payStatus.contractTerms.fulfillment_url ? (
|
|
|
|
<SuccessBox>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
Already paid, you are going to be redirected to{" "}
|
|
|
|
<a href={payStatus.contractTerms.fulfillment_url}>
|
|
|
|
{payStatus.contractTerms.fulfillment_url}
|
|
|
|
</a>
|
2022-02-23 19:44:14 +01:00
|
|
|
</i18n.Translate>
|
2022-01-31 03:32:56 +01:00
|
|
|
</SuccessBox>
|
|
|
|
) : (
|
2022-02-23 19:18:37 +01:00
|
|
|
<SuccessBox>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Already paid</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</SuccessBox>
|
2022-01-31 03:32:56 +01:00
|
|
|
)
|
2021-11-15 15:18:58 +01:00
|
|
|
) : (
|
2022-02-23 19:18:37 +01:00
|
|
|
<WarningBox>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Already claimed</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</WarningBox>
|
2021-11-15 15:18:58 +01:00
|
|
|
))}
|
|
|
|
{payResult && payResult.type === ConfirmPayResultType.Done && (
|
|
|
|
<SuccessBox>
|
2022-02-23 19:18:37 +01:00
|
|
|
<h3>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Payment complete</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</h3>
|
2021-11-15 15:18:58 +01:00
|
|
|
<p>
|
2022-02-23 19:18:37 +01:00
|
|
|
{!payResult.contractTerms.fulfillment_message ? (
|
|
|
|
payResult.contractTerms.fulfillment_url ? (
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
You are going to be redirected to $
|
|
|
|
{payResult.contractTerms.fulfillment_url}
|
2022-02-23 19:44:14 +01:00
|
|
|
</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
) : (
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>You can close this page.</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
)
|
|
|
|
) : (
|
|
|
|
payResult.contractTerms.fulfillment_message
|
|
|
|
)}
|
2021-11-15 15:18:58 +01:00
|
|
|
</p>
|
|
|
|
</SuccessBox>
|
|
|
|
)}
|
|
|
|
<section>
|
|
|
|
{payStatus.status !== PreparePayResultType.InsufficientBalance &&
|
|
|
|
Amounts.isNonZero(totalFees) && (
|
|
|
|
<Part
|
|
|
|
big
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Total to pay</i18n.Translate>}
|
2021-11-15 15:18:58 +01:00
|
|
|
text={amountToString(payStatus.amountEffective)}
|
|
|
|
kind="negative"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<Part
|
|
|
|
big
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Purchase amount</i18n.Translate>}
|
2021-11-15 15:18:58 +01:00
|
|
|
text={amountToString(payStatus.amountRaw)}
|
|
|
|
kind="neutral"
|
|
|
|
/>
|
|
|
|
{Amounts.isNonZero(totalFees) && (
|
|
|
|
<Fragment>
|
|
|
|
<Part
|
|
|
|
big
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Fee</i18n.Translate>}
|
2021-11-15 15:18:58 +01:00
|
|
|
text={amountToString(totalFees)}
|
|
|
|
kind="negative"
|
|
|
|
/>
|
|
|
|
</Fragment>
|
|
|
|
)}
|
|
|
|
<Part
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Merchant</i18n.Translate>}
|
2021-11-15 15:18:58 +01:00
|
|
|
text={contractTerms.merchant.name}
|
|
|
|
kind="neutral"
|
|
|
|
/>
|
2022-02-23 19:18:37 +01:00
|
|
|
<Part
|
2022-02-23 19:44:14 +01:00
|
|
|
title={<i18n.Translate>Purchase</i18n.Translate>}
|
2022-02-23 19:18:37 +01:00
|
|
|
text={contractTerms.summary}
|
|
|
|
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-01-31 18:56:12 +01:00
|
|
|
{contractTerms.products && contractTerms.products.length > 0 && (
|
2022-01-19 17:51:48 +01:00
|
|
|
<ProductList products={contractTerms.products} />
|
|
|
|
)}
|
2021-11-15 15:18:58 +01:00
|
|
|
</section>
|
|
|
|
<ButtonsSection />
|
2022-03-17 19:00:34 +01:00
|
|
|
<section>
|
|
|
|
<Link upperCased>
|
|
|
|
<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-01-19 17:51:48 +01:00
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:59:53 +01:00
|
|
|
function amountToString(text: AmountLike): string {
|
2021-11-15 15:18:58 +01:00
|
|
|
const aj = Amounts.jsonifyAmount(text);
|
|
|
|
const amount = Amounts.stringifyValue(aj, 2);
|
|
|
|
return `${amount} ${aj.currency}`;
|
2021-09-17 20:48:33 +02:00
|
|
|
}
|