wallet-core/packages/taler-wallet-webextension/src/components/TransactionItem.tsx

214 lines
6.0 KiB
TypeScript
Raw Normal View History

2021-09-13 18:33:13 +02:00
/*
This file is part of GNU Taler
(C) 2021 Taler Systems S.A.
GNU 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.
GNU 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
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
2021-11-15 15:18:58 +01:00
import {
AmountString,
Timestamp,
Transaction,
TransactionType,
} from "@gnu-taler/taler-util";
2021-11-16 17:59:53 +01:00
import { h, VNode } from "preact";
2021-11-15 15:18:58 +01:00
import imageBank from "../../static/img/ri-bank-line.svg";
import imageHandHeart from "../../static/img/ri-hand-heart-line.svg";
import imageRefresh from "../../static/img/ri-refresh-line.svg";
import imageRefund from "../../static/img/ri-refund-2-line.svg";
import imageShoppingCart from "../../static/img/ri-shopping-cart-line.svg";
2021-08-24 17:00:34 +02:00
import { Pages } from "../NavigationBar";
2021-11-15 15:18:58 +01:00
import {
Column,
ExtraLargeText,
HistoryRow,
SmallLightText,
LargeText,
LightText,
} from "./styled/index";
2021-11-16 17:59:53 +01:00
import { Time } from "./Time";
2021-08-24 17:00:34 +02:00
2021-11-15 15:18:58 +01:00
export function TransactionItem(props: {
tx: Transaction;
multiCurrency: boolean;
2021-11-16 17:59:53 +01:00
}): VNode {
2021-08-24 17:00:34 +02:00
const tx = props.tx;
switch (tx.type) {
case TransactionType.Withdrawal:
return (
<TransactionLayout
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
title={new URL(tx.exchangeBaseUrl).hostname}
timestamp={tx.timestamp}
iconPath={imageBank}
pending={tx.pending}
multiCurrency={props.multiCurrency}
2021-10-15 01:00:39 +02:00
/>
2021-08-24 17:00:34 +02:00
);
case TransactionType.Payment:
return (
<TransactionLayout
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"debit"}
title={tx.info.merchant.name}
2021-10-15 01:00:39 +02:00
subtitle={tx.info.summary}
2021-08-24 17:00:34 +02:00
timestamp={tx.timestamp}
iconPath={imageShoppingCart}
pending={tx.pending}
multiCurrency={props.multiCurrency}
2021-10-15 01:00:39 +02:00
/>
2021-08-24 17:00:34 +02:00
);
case TransactionType.Refund:
return (
<TransactionLayout
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
title={tx.info.merchant.name}
timestamp={tx.timestamp}
iconPath={imageRefund}
pending={tx.pending}
multiCurrency={props.multiCurrency}
2021-10-15 01:00:39 +02:00
/>
2021-08-24 17:00:34 +02:00
);
case TransactionType.Tip:
return (
<TransactionLayout
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
title={new URL(tx.merchantBaseUrl).hostname}
timestamp={tx.timestamp}
iconPath={imageHandHeart}
pending={tx.pending}
multiCurrency={props.multiCurrency}
2021-10-15 01:00:39 +02:00
/>
2021-08-24 17:00:34 +02:00
);
case TransactionType.Refresh:
return (
<TransactionLayout
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
title={new URL(tx.exchangeBaseUrl).hostname}
timestamp={tx.timestamp}
iconPath={imageRefresh}
pending={tx.pending}
multiCurrency={props.multiCurrency}
2021-10-15 01:00:39 +02:00
/>
2021-08-24 17:00:34 +02:00
);
case TransactionType.Deposit:
return (
<TransactionLayout
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"debit"}
title={tx.targetPaytoUri}
timestamp={tx.timestamp}
iconPath={imageRefresh}
pending={tx.pending}
multiCurrency={props.multiCurrency}
2021-10-15 01:00:39 +02:00
/>
2021-08-24 17:00:34 +02:00
);
}
}
2021-11-16 17:59:53 +01:00
function TransactionLayout(props: TransactionLayoutProps): VNode {
2021-08-24 17:00:34 +02:00
return (
2021-11-15 15:18:58 +01:00
<HistoryRow href={Pages.transaction.replace(":tid", props.id)}>
2021-08-24 17:00:34 +02:00
<img src={props.iconPath} />
<Column>
<LargeText>
2021-10-15 01:00:39 +02:00
<div>{props.title}</div>
2021-11-15 15:18:58 +01:00
{props.subtitle && (
<div style={{ color: "gray", fontSize: "medium", marginTop: 5 }}>
{props.subtitle}
</div>
)}
2021-08-24 17:00:34 +02:00
</LargeText>
2021-11-15 15:18:58 +01:00
{props.pending && (
<LightText style={{ marginTop: 5, marginBottom: 5 }}>
Waiting for confirmation
</LightText>
)}
2021-11-16 17:59:53 +01:00
<SmallLightText style={{ marginTop: 5 }}>
<Time timestamp={props.timestamp} format="dd MMM, hh:mm" />
</SmallLightText>
2021-08-24 17:00:34 +02:00
</Column>
<TransactionAmount
pending={props.pending}
amount={props.amount}
multiCurrency={props.multiCurrency}
debitCreditIndicator={props.debitCreditIndicator}
/>
</HistoryRow>
);
}
interface TransactionLayoutProps {
debitCreditIndicator: "debit" | "credit" | "unknown";
amount: AmountString | "unknown";
timestamp: Timestamp;
title: string;
2021-10-15 01:00:39 +02:00
subtitle?: string;
2021-08-24 17:00:34 +02:00
id: string;
iconPath: string;
pending: boolean;
multiCurrency: boolean;
}
interface TransactionAmountProps {
debitCreditIndicator: "debit" | "credit" | "unknown";
amount: AmountString | "unknown";
pending: boolean;
multiCurrency: boolean;
}
2021-11-16 17:59:53 +01:00
function TransactionAmount(props: TransactionAmountProps): VNode {
2021-08-24 17:00:34 +02:00
const [currency, amount] = props.amount.split(":");
let sign: string;
switch (props.debitCreditIndicator) {
case "credit":
sign = "+";
break;
case "debit":
sign = "-";
break;
case "unknown":
sign = "";
}
return (
2021-11-15 15:18:58 +01:00
<Column
style={{
textAlign: "center",
color: props.pending
? "gray"
: sign === "+"
? "darkgreen"
: sign === "-"
? "darkred"
: undefined,
}}
>
2021-08-24 17:00:34 +02:00
<ExtraLargeText>
{sign}
{amount}
</ExtraLargeText>
{props.multiCurrency && <div>{currency}</div>}
2021-09-06 19:55:55 +02:00
{props.pending && <div>PENDING</div>}
2021-08-24 17:00:34 +02:00
</Column>
);
}