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

991 lines
25 KiB
TypeScript
Raw Normal View History

/*
This file is part of TALER
(C) 2016 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/>
*/
2021-11-15 15:18:58 +01:00
import {
2022-03-18 15:32:41 +01:00
AbsoluteTime,
AmountJson,
2021-11-15 15:18:58 +01:00
Amounts,
Location,
NotificationType,
parsePaytoUri,
2022-05-03 05:16:03 +02:00
parsePayUri,
TalerProtocolTimestamp,
2021-11-15 15:18:58 +01:00
Transaction,
TransactionDeposit,
TransactionPayment,
TransactionRefresh,
TransactionRefund,
TransactionTip,
2021-11-15 15:18:58 +01:00
TransactionType,
TransactionWithdrawal,
WithdrawalType,
2021-11-15 15:18:58 +01:00
} from "@gnu-taler/taler-util";
import { styled } from "@linaria/react";
2021-12-06 14:31:19 +01:00
import { differenceInSeconds } from "date-fns";
import { ComponentChildren, Fragment, h, VNode } from "preact";
2022-04-26 03:37:41 +02:00
import { useEffect, useState } from "preact/hooks";
2021-10-27 20:13:35 +02:00
import emptyImg from "../../static/img/empty.png";
2022-04-11 16:33:55 +02:00
import { Amount } from "../components/Amount.js";
2022-03-29 04:41:07 +02:00
import { BankDetailsByPaytoType } from "../components/BankDetailsByPaytoType.js";
import { ErrorTalerOperation } from "../components/ErrorTalerOperation.js";
import { Loading } from "../components/Loading.js";
import { LoadingError } from "../components/LoadingError.js";
import { Kind, Part, PartCollapsible, PartPayto } from "../components/Part.js";
2021-11-15 15:18:58 +01:00
import {
2021-11-16 17:59:53 +01:00
Button,
ButtonBox,
2021-11-16 17:59:53 +01:00
ButtonDestructive,
2021-11-15 15:18:58 +01:00
ButtonPrimary,
CenteredDialog,
InfoBox,
2021-11-15 15:18:58 +01:00
ListOfProducts,
Overlay,
Row,
2021-11-15 15:18:58 +01:00
RowBorderGray,
SmallLightText,
SubTitle,
2021-11-15 15:18:58 +01:00
WarningBox,
2022-03-29 04:41:07 +02:00
} from "../components/styled/index.js";
import { Time } from "../components/Time.js";
import { useTranslationContext } from "../context/translation.js";
2022-04-26 04:07:31 +02:00
import { useAsyncAsHook } from "../hooks/useAsyncAsHook.js";
2022-05-14 23:09:33 +02:00
import { Pages } from "../NavigationBar.js";
2022-03-29 04:41:07 +02:00
import * as wxApi from "../wxApi.js";
2022-01-25 14:29:29 +01:00
interface Props {
tid: string;
goToWalletHistory: (currency?: string) => void;
}
2022-04-26 03:37:41 +02:00
async function getTransaction(tid: string): Promise<Transaction> {
const res = await wxApi.getTransactions();
const ts = res.transactions.filter((t) => t.transactionId === tid);
if (ts.length > 1) throw Error("more than one transaction with this id");
if (ts.length === 1) {
return ts[0];
}
throw Error("no transaction found");
}
2022-01-25 14:29:29 +01:00
export function TransactionPage({ tid, goToWalletHistory }: Props): VNode {
const { i18n } = useTranslationContext();
2022-04-26 04:07:31 +02:00
const state = useAsyncAsHook(() => getTransaction(tid));
2022-04-26 03:37:41 +02:00
useEffect(() => {
wxApi.onUpdateNotification([NotificationType.WithdrawGroupFinished], () => {
state?.retry();
});
});
if (!state) {
2022-01-25 14:29:29 +01:00
return <Loading />;
2021-07-13 20:33:28 +02:00
}
if (state.hasError) {
return (
2022-01-25 14:29:29 +01:00
<LoadingError
2022-02-23 19:18:37 +01:00
title={
<i18n.Translate>
Could not load the transaction information
</i18n.Translate>
2022-02-23 19:18:37 +01:00
}
2022-01-25 14:29:29 +01:00
error={state}
/>
);
}
2022-01-25 14:29:29 +01:00
const currency = Amounts.parse(state.response.amountRaw)?.currency;
2021-11-15 15:18:58 +01:00
return (
<TransactionView
transaction={state.response}
2022-01-25 14:29:29 +01:00
onDelete={() =>
wxApi.deleteTransaction(tid).then(() => goToWalletHistory(currency))
}
onRetry={() =>
wxApi.retryTransaction(tid).then(() => goToWalletHistory(currency))
}
onBack={() => goToWalletHistory(currency)}
2021-11-15 15:18:58 +01:00
/>
);
}
export interface WalletTransactionProps {
2021-10-15 00:37:18 +02:00
transaction: Transaction;
onDelete: () => void;
onRetry: () => void;
onBack: () => void;
}
const PurchaseDetailsTable = styled.table`
width: 100%;
& > tr > td:nth-child(2n) {
text-align: right;
}
`;
2021-11-15 15:18:58 +01:00
export function TransactionView({
transaction,
onDelete,
onRetry,
onBack,
2021-11-16 17:59:53 +01:00
}: WalletTransactionProps): VNode {
const [confirmBeforeForget, setConfirmBeforeForget] = useState(false);
2021-12-06 14:31:19 +01:00
function doCheckBeforeForget(): void {
if (
transaction.pending &&
transaction.type === TransactionType.Withdrawal
) {
setConfirmBeforeForget(true);
} else {
onDelete();
}
}
2021-12-06 14:31:19 +01:00
const { i18n } = useTranslationContext();
function TransactionTemplate({
children,
}: {
children: ComponentChildren;
}): VNode {
2021-12-06 14:31:19 +01:00
const showRetry =
transaction.error !== undefined ||
2022-03-18 15:32:41 +01:00
transaction.timestamp.t_s === "never" ||
2021-12-06 14:31:19 +01:00
(transaction.pending &&
2022-03-18 15:32:41 +01:00
differenceInSeconds(new Date(), transaction.timestamp.t_s * 1000) > 10);
2021-12-06 14:31:19 +01:00
2021-11-15 15:18:58 +01:00
return (
<Fragment>
2021-11-15 15:18:58 +01:00
<section style={{ padding: 8, textAlign: "center" }}>
2021-11-29 18:11:32 +01:00
<ErrorTalerOperation
2022-02-23 19:18:37 +01:00
title={
<i18n.Translate>
2022-02-23 19:18:37 +01:00
There was an error trying to complete the transaction
</i18n.Translate>
2022-02-23 19:18:37 +01:00
}
2021-11-29 18:11:32 +01:00
error={transaction?.error}
/>
2021-11-15 15:18:58 +01:00
{transaction.pending && (
2022-02-23 19:18:37 +01:00
<WarningBox>
<i18n.Translate>This transaction is not completed</i18n.Translate>
2022-02-23 19:18:37 +01:00
</WarningBox>
2021-11-15 15:18:58 +01:00
)}
</section>
<section>{children}</section>
2021-11-15 15:18:58 +01:00
<footer>
2022-03-17 16:39:16 +01:00
<div />
2021-11-15 15:18:58 +01:00
<div>
2021-12-06 14:31:19 +01:00
{showRetry ? (
2021-11-15 15:18:58 +01:00
<ButtonPrimary onClick={onRetry}>
<i18n.Translate>Retry</i18n.Translate>
2021-11-15 15:18:58 +01:00
</ButtonPrimary>
) : null}
<ButtonDestructive onClick={doCheckBeforeForget}>
<i18n.Translate>Forget</i18n.Translate>
2021-11-16 17:59:53 +01:00
</ButtonDestructive>
2021-11-15 15:18:58 +01:00
</div>
</footer>
</Fragment>
2021-11-15 15:18:58 +01:00
);
2021-07-13 20:33:28 +02:00
}
2021-08-24 20:16:11 +02:00
if (transaction.type === TransactionType.Withdrawal) {
const total = Amounts.parseOrThrow(transaction.amountEffective);
const chosen = Amounts.parseOrThrow(transaction.amountRaw);
2021-11-15 15:18:58 +01:00
return (
<TransactionTemplate>
{confirmBeforeForget ? (
<Overlay>
<CenteredDialog>
2022-02-23 19:18:37 +01:00
<header>
<i18n.Translate>Caution!</i18n.Translate>
2022-02-23 19:18:37 +01:00
</header>
<section>
<i18n.Translate>
2022-02-23 19:18:37 +01:00
If you have already wired money to the exchange you will loose
the chance to get the coins form it.
</i18n.Translate>
</section>
<footer>
<Button onClick={() => setConfirmBeforeForget(false)}>
<i18n.Translate>Cancel</i18n.Translate>
</Button>
<ButtonDestructive onClick={onDelete}>
<i18n.Translate>Confirm</i18n.Translate>
</ButtonDestructive>
</footer>
</CenteredDialog>
</Overlay>
) : undefined}
<Header
timestamp={transaction.timestamp}
type={i18n.str`Withdrawal`}
total={total}
kind="positive"
>
{transaction.exchangeBaseUrl}
</Header>
{!transaction.pending ? undefined : transaction.withdrawalDetails
.type === WithdrawalType.ManualTransfer ? (
<Fragment>
<BankDetailsByPaytoType
amount={chosen}
exchangeBaseUrl={transaction.exchangeBaseUrl}
payto={parsePaytoUri(
transaction.withdrawalDetails.exchangePaytoUris[0],
)}
subject={transaction.withdrawalDetails.reservePub}
/>
<WarningBox>
<i18n.Translate>
Make sure to use the correct subject, otherwise the money will
not arrive in this wallet.
</i18n.Translate>
</WarningBox>
</Fragment>
) : (
<Fragment>
{!transaction.withdrawalDetails.confirmed &&
transaction.withdrawalDetails.bankConfirmationUrl ? (
<InfoBox>
<div style={{ display: "block" }}>
<i18n.Translate>
The bank did not yet confirmed the wire transfer. Go to the
{` `}
2022-02-23 19:18:37 +01:00
<a
href={transaction.withdrawalDetails.bankConfirmationUrl}
target="_blank"
rel="noreferrer"
style={{ display: "inline" }}
2022-02-23 19:18:37 +01:00
>
<i18n.Translate>bank site</i18n.Translate>
</a>{" "}
and check there is no pending step.
</i18n.Translate>
</div>
</InfoBox>
) : undefined}
{transaction.withdrawalDetails.confirmed && (
<InfoBox>
<i18n.Translate>
Bank has confirmed the wire transfer. Waiting for the exchange
to send the coins
</i18n.Translate>
</InfoBox>
)}
</Fragment>
)}
2021-11-15 15:18:58 +01:00
<Part
title={<i18n.Translate>Details</i18n.Translate>}
text={<WithdrawDetails transaction={transaction} />}
2021-11-15 15:18:58 +01:00
/>
</TransactionTemplate>
);
}
if (transaction.type === TransactionType.Payment) {
2022-05-14 23:09:33 +02:00
const pendingRefund =
transaction.refundPending === undefined
? undefined
: Amounts.parseOrThrow(transaction.refundPending);
const total = Amounts.sub(
Amounts.parseOrThrow(transaction.amountEffective),
Amounts.parseOrThrow(transaction.totalRefundEffective),
).amount;
2021-11-15 15:18:58 +01:00
return (
<TransactionTemplate>
<Header
timestamp={transaction.timestamp}
total={total}
type={i18n.str`Payment`}
2021-11-15 15:18:58 +01:00
kind="negative"
>
{transaction.info.fulfillmentUrl ? (
<a
href={transaction.info.fulfillmentUrl}
target="_bank"
rel="noreferrer"
>
{transaction.info.summary}
</a>
) : (
transaction.info.summary
)}
</Header>
<br />
{pendingRefund !== undefined && Amounts.isNonZero(pendingRefund) && (
<InfoBox>
<i18n.Translate>
Merchant created a refund for this order but was not automatically
picked up.
</i18n.Translate>
2022-05-14 23:09:33 +02:00
<Part
title={<i18n.Translate>Offer</i18n.Translate>}
text={<Amount value={pendingRefund} />}
2022-05-14 23:09:33 +02:00
kind="positive"
/>
<div>
<div />
<div>
<ButtonPrimary>
<i18n.Translate>Accept</i18n.Translate>
</ButtonPrimary>
</div>
</div>
</InfoBox>
2022-05-14 23:09:33 +02:00
)}
2022-02-23 19:18:37 +01:00
<Part
title={<i18n.Translate>Merchant</i18n.Translate>}
2021-11-15 15:18:58 +01:00
text={transaction.info.merchant.name}
kind="neutral"
/>
<Part
title={<i18n.Translate>Invoice ID</i18n.Translate>}
text={transaction.info.orderId}
2022-02-23 19:18:37 +01:00
kind="neutral"
/>
<Part
title={<i18n.Translate>Details</i18n.Translate>}
text={<PurchaseDetails transaction={transaction} />}
2021-11-15 15:18:58 +01:00
kind="neutral"
/>
</TransactionTemplate>
);
}
if (transaction.type === TransactionType.Deposit) {
const total = Amounts.parseOrThrow(transaction.amountRaw);
2022-05-03 05:16:03 +02:00
const payto = parsePaytoUri(transaction.targetPaytoUri);
2021-11-15 15:18:58 +01:00
return (
<TransactionTemplate>
<Header
timestamp={transaction.timestamp}
type={i18n.str`Deposit`}
total={total}
kind="negative"
>
{transaction.targetPaytoUri}
</Header>
{payto && <PartPayto big payto={payto} kind="neutral" />}
2021-11-15 15:18:58 +01:00
<Part
title={<i18n.Translate>Details</i18n.Translate>}
text={<DepositDetails transaction={transaction} />}
2021-12-23 19:17:36 +01:00
kind="neutral"
2021-11-15 15:18:58 +01:00
/>
</TransactionTemplate>
);
}
if (transaction.type === TransactionType.Refresh) {
const total = Amounts.sub(
2021-06-21 01:37:35 +02:00
Amounts.parseOrThrow(transaction.amountRaw),
Amounts.parseOrThrow(transaction.amountEffective),
2021-11-15 15:18:58 +01:00
).amount;
2021-11-15 15:18:58 +01:00
return (
<TransactionTemplate>
<Header
timestamp={transaction.timestamp}
type={i18n.str`Refresh`}
total={total}
2021-11-15 15:18:58 +01:00
kind="negative"
>
{transaction.exchangeBaseUrl}
</Header>
<Part
title={<i18n.Translate>Details</i18n.Translate>}
text={<RefreshDetails transaction={transaction} />}
2021-11-15 15:18:58 +01:00
/>
</TransactionTemplate>
);
}
if (transaction.type === TransactionType.Tip) {
const total = Amounts.parseOrThrow(transaction.amountEffective);
2021-11-15 15:18:58 +01:00
return (
<TransactionTemplate>
<Header
timestamp={transaction.timestamp}
type={i18n.str`Tip`}
total={total}
kind="positive"
>
{transaction.merchantBaseUrl}
</Header>
{/* <Part
title={<i18n.Translate>Merchant</i18n.Translate>}
text={transaction.info.merchant.name}
kind="neutral"
/>
2021-11-15 15:18:58 +01:00
<Part
title={<i18n.Translate>Invoice ID</i18n.Translate>}
text={transaction.info.orderId}
kind="neutral"
/> */}
<Part
title={<i18n.Translate>Details</i18n.Translate>}
text={<TipDetails transaction={transaction} />}
2021-11-15 15:18:58 +01:00
/>
</TransactionTemplate>
);
}
if (transaction.type === TransactionType.Refund) {
const total = Amounts.parseOrThrow(transaction.amountEffective);
2021-11-15 15:18:58 +01:00
return (
<TransactionTemplate>
<Header
timestamp={transaction.timestamp}
type={i18n.str`Refund`}
total={total}
2021-11-15 15:18:58 +01:00
kind="positive"
>
{transaction.info.summary}
</Header>
2022-02-23 19:18:37 +01:00
<Part
title={<i18n.Translate>Merchant</i18n.Translate>}
2021-11-15 15:18:58 +01:00
text={transaction.info.merchant.name}
kind="neutral"
/>
<Part
title={<i18n.Translate>Original order ID</i18n.Translate>}
2022-03-17 19:00:34 +01:00
text={
2022-05-14 23:09:33 +02:00
<a
href={Pages.balance_transaction.replace(
":tid",
transaction.refundedTransactionId,
)}
>
{transaction.info.orderId}
2022-05-14 23:09:33 +02:00
</a>
2022-03-17 19:00:34 +01:00
}
2022-02-23 19:18:37 +01:00
kind="neutral"
/>
<Part
title={<i18n.Translate>Purchase summary</i18n.Translate>}
text={transaction.info.summary}
2021-11-15 15:18:58 +01:00
kind="neutral"
/>
<Part
title={<i18n.Translate>Details</i18n.Translate>}
text={<RefundDetails transaction={transaction} />}
/>
2021-11-15 15:18:58 +01:00
</TransactionTemplate>
);
}
2021-11-16 17:59:53 +01:00
return <div />;
}
function DeliveryDetails({
date,
location,
}: {
date: TalerProtocolTimestamp | undefined;
location: Location | undefined;
}): VNode {
const { i18n } = useTranslationContext();
return (
<PurchaseDetailsTable>
{location && (
<Fragment>
{location.country && (
<tr>
<td>
<i18n.Translate>Country</i18n.Translate>
</td>
<td>{location.country}</td>
</tr>
)}
{location.address_lines && (
<tr>
<td>
<i18n.Translate>Address lines</i18n.Translate>
</td>
<td>{location.address_lines}</td>
</tr>
)}
{location.building_number && (
<tr>
<td>
<i18n.Translate>Building number</i18n.Translate>
</td>
<td>{location.building_number}</td>
</tr>
)}
{location.building_name && (
<tr>
<td>
<i18n.Translate>Building name</i18n.Translate>
</td>
<td>{location.building_name}</td>
</tr>
)}
{location.street && (
<tr>
<td>
<i18n.Translate>Street</i18n.Translate>
</td>
<td>{location.street}</td>
</tr>
)}
{location.post_code && (
<tr>
<td>
<i18n.Translate>Post code</i18n.Translate>
</td>
<td>{location.post_code}</td>
</tr>
)}
{location.town_location && (
<tr>
<td>
<i18n.Translate>Town location</i18n.Translate>
</td>
<td>{location.town_location}</td>
</tr>
)}
{location.town && (
<tr>
<td>
<i18n.Translate>Town</i18n.Translate>
</td>
<td>{location.town}</td>
</tr>
)}
{location.district && (
<tr>
<td>
<i18n.Translate>District</i18n.Translate>
</td>
<td>{location.district}</td>
</tr>
)}
{location.country_subdivision && (
<tr>
<td>
<i18n.Translate>Country subdivision</i18n.Translate>
</td>
<td>{location.country_subdivision}</td>
</tr>
)}
</Fragment>
)}
{!location || !date ? undefined : (
<tr>
<td colSpan={2}>
<hr />
</td>
</tr>
)}
{date && (
<Fragment>
<tr>
<td>Date</td>
<td>
<Time
timestamp={AbsoluteTime.fromTimestamp(date)}
format="dd MMMM yyyy, HH:mm"
/>
</td>
</tr>
</Fragment>
)}
</PurchaseDetailsTable>
);
}
function PurchaseDetails({
transaction,
}: {
transaction: TransactionPayment;
}): VNode {
const { i18n } = useTranslationContext();
const partialFee = Amounts.sub(
Amounts.parseOrThrow(transaction.amountEffective),
Amounts.parseOrThrow(transaction.amountRaw),
).amount;
const refundRaw = Amounts.parseOrThrow(transaction.totalRefundRaw);
const refundFee = Amounts.sub(
refundRaw,
Amounts.parseOrThrow(transaction.totalRefundEffective),
).amount;
const fee = Amounts.sum([partialFee, refundFee]).amount;
const hasProducts =
transaction.info.products && transaction.info.products.length > 0;
const hasShipping =
transaction.info.delivery_date !== undefined ||
transaction.info.delivery_location !== undefined;
const showLargePic = (): void => {
return;
};
const total = Amounts.sub(
Amounts.parseOrThrow(transaction.amountEffective),
Amounts.parseOrThrow(transaction.totalRefundEffective),
).amount;
return (
<PurchaseDetailsTable>
<tr>
<td>Price</td>
<td>
<Amount value={transaction.amountRaw} />
</td>
</tr>
{Amounts.isNonZero(refundRaw) && (
<tr>
<td>Refunded</td>
<td>
<Amount value={transaction.totalRefundEffective} />
</td>
</tr>
)}
{Amounts.isNonZero(fee) && (
<tr>
<td>Transaction fees</td>
<td>
<Amount value={fee} />
</td>
</tr>
)}
<tr>
<td colSpan={2}>
<hr />
</td>
</tr>
<tr>
<td>Total</td>
<td>
<Amount value={total} />
</td>
</tr>
{hasProducts && (
<tr>
<td colSpan={2}>
<PartCollapsible
big
title={<i18n.Translate>Products</i18n.Translate>}
text={
<ListOfProducts>
{transaction.info.products?.map((p, k) => (
<Row key={k}>
<a href="#" onClick={showLargePic}>
<img src={p.image ? p.image : emptyImg} />
</a>
<div>
{p.quantity && p.quantity > 0 && (
<SmallLightText>
x {p.quantity} {p.unit}
</SmallLightText>
)}
<div>{p.description}</div>
</div>
</Row>
))}
</ListOfProducts>
}
/>
</td>
</tr>
)}
{hasShipping && (
<tr>
<td colSpan={2}>
<PartCollapsible
big
title={<i18n.Translate>Delivery</i18n.Translate>}
text={
<DeliveryDetails
date={transaction.info.delivery_date}
location={transaction.info.delivery_location}
/>
}
/>
</td>
</tr>
)}
</PurchaseDetailsTable>
);
}
function RefundDetails({
transaction,
}: {
transaction: TransactionRefund;
}): VNode {
const { i18n } = useTranslationContext();
const fee = Amounts.sub(
Amounts.parseOrThrow(transaction.amountRaw),
Amounts.parseOrThrow(transaction.amountEffective),
).amount;
return (
<PurchaseDetailsTable>
<tr>
<td>Amount</td>
<td>
<Amount value={transaction.amountRaw} />
</td>
</tr>
{Amounts.isNonZero(fee) && (
<tr>
<td>Transaction fees</td>
<td>
<Amount value={fee} />
</td>
</tr>
)}
<tr>
<td colSpan={2}>
<hr />
</td>
</tr>
<tr>
<td>Total</td>
<td>
<Amount value={transaction.amountEffective} />
</td>
</tr>
</PurchaseDetailsTable>
);
}
function DepositDetails({
transaction,
}: {
transaction: TransactionDeposit;
}): VNode {
const { i18n } = useTranslationContext();
const fee = Amounts.sub(
Amounts.parseOrThrow(transaction.amountRaw),
Amounts.parseOrThrow(transaction.amountEffective),
).amount;
return (
<PurchaseDetailsTable>
<tr>
<td>Amount</td>
<td>
<Amount value={transaction.amountRaw} />
</td>
</tr>
{Amounts.isNonZero(fee) && (
<tr>
<td>Transaction fees</td>
<td>
<Amount value={fee} />
</td>
</tr>
)}
<tr>
<td colSpan={2}>
<hr />
</td>
</tr>
<tr>
<td>Total transfer</td>
<td>
<Amount value={transaction.amountEffective} />
</td>
</tr>
</PurchaseDetailsTable>
);
}
function RefreshDetails({
transaction,
}: {
transaction: TransactionRefresh;
}): VNode {
const { i18n } = useTranslationContext();
const fee = Amounts.sub(
Amounts.parseOrThrow(transaction.amountRaw),
Amounts.parseOrThrow(transaction.amountEffective),
).amount;
return (
<PurchaseDetailsTable>
<tr>
<td>Amount</td>
<td>
<Amount value={transaction.amountRaw} />
</td>
</tr>
<tr>
<td colSpan={2}>
<hr />
</td>
</tr>
<tr>
<td>Transaction fees</td>
<td>
<Amount value={fee} />
</td>
</tr>
</PurchaseDetailsTable>
);
}
function TipDetails({ transaction }: { transaction: TransactionTip }): VNode {
const { i18n } = useTranslationContext();
const fee = Amounts.sub(
Amounts.parseOrThrow(transaction.amountRaw),
Amounts.parseOrThrow(transaction.amountEffective),
).amount;
return (
<PurchaseDetailsTable>
<tr>
<td>Amount</td>
<td>
<Amount value={transaction.amountRaw} />
</td>
</tr>
{Amounts.isNonZero(fee) && (
<tr>
<td>Transaction fees</td>
<td>
<Amount value={fee} />
</td>
</tr>
)}
<tr>
<td colSpan={2}>
<hr />
</td>
</tr>
<tr>
<td>Total</td>
<td>
<Amount value={transaction.amountEffective} />
</td>
</tr>
</PurchaseDetailsTable>
);
}
function WithdrawDetails({
transaction,
}: {
transaction: TransactionWithdrawal;
}): VNode {
const { i18n } = useTranslationContext();
const fee = Amounts.sub(
Amounts.parseOrThrow(transaction.amountRaw),
Amounts.parseOrThrow(transaction.amountEffective),
).amount;
return (
<PurchaseDetailsTable>
<tr>
<td>Withdraw</td>
<td>
<Amount value={transaction.amountRaw} />
</td>
</tr>
{Amounts.isNonZero(fee) && (
<tr>
<td>Transaction fees</td>
<td>
<Amount value={fee} />
</td>
</tr>
)}
<tr>
<td colSpan={2}>
<hr />
</td>
</tr>
<tr>
<td>Total</td>
<td>
<Amount value={transaction.amountEffective} />
</td>
</tr>
</PurchaseDetailsTable>
);
}
function Header({
timestamp,
total,
children,
kind,
type,
}: {
timestamp: TalerProtocolTimestamp;
total: AmountJson;
children: ComponentChildren;
kind: Kind;
type: string;
}): VNode {
return (
<div
style={{
display: "flex",
justifyContent: "space-between",
flexDirection: "row",
}}
>
<div>
<SubTitle>{children}</SubTitle>
<Time
timestamp={AbsoluteTime.fromTimestamp(timestamp)}
format="dd MMMM yyyy, HH:mm"
/>
</div>
<div>
<SubTitle>
<Part
title={type}
text={<Amount value={total} />}
kind={kind}
showSign
/>
</SubTitle>
</div>
</div>
);
}