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-08-24 17:00:34 +02:00
|
|
|
import { AmountString, Timestamp, Transaction, TransactionType } from '@gnu-taler/taler-util';
|
|
|
|
import { format, formatDistance } from 'date-fns';
|
|
|
|
import { h } from 'preact';
|
|
|
|
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';
|
|
|
|
import { Pages } from "../NavigationBar";
|
2021-09-06 19:55:55 +02:00
|
|
|
import { Column, ExtraLargeText, HistoryRow, SmallLightText, LargeText, LightText } from './styled/index';
|
2021-08-24 17:00:34 +02:00
|
|
|
|
|
|
|
export function TransactionItem(props: { tx: Transaction, multiCurrency: boolean }): JSX.Element {
|
|
|
|
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
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function TransactionLayout(props: TransactionLayoutProps): JSX.Element {
|
|
|
|
const date = new Date(props.timestamp.t_ms);
|
|
|
|
const dateStr = format(date, 'dd MMM, hh:mm')
|
|
|
|
|
|
|
|
return (
|
|
|
|
<HistoryRow href={Pages.transaction.replace(':tid', props.id)}>
|
|
|
|
<img src={props.iconPath} />
|
|
|
|
<Column>
|
|
|
|
<LargeText>
|
2021-10-15 01:00:39 +02:00
|
|
|
<div>{props.title}</div>
|
|
|
|
{props.subtitle && <div style={{color:'gray', fontSize:'medium', marginTop: 5}}>{props.subtitle}</div>}
|
2021-08-24 17:00:34 +02:00
|
|
|
</LargeText>
|
2021-09-06 19:55:55 +02:00
|
|
|
{props.pending &&
|
2021-10-15 01:00:39 +02:00
|
|
|
<LightText style={{ marginTop: 5, marginBottom: 5 }}>Waiting for confirmation</LightText>
|
2021-09-06 19:55:55 +02:00
|
|
|
}
|
2021-10-15 01:00:39 +02:00
|
|
|
<SmallLightText style={{marginTop:5 }}>{dateStr}</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;
|
|
|
|
}
|
|
|
|
|
|
|
|
function TransactionAmount(props: TransactionAmountProps): JSX.Element {
|
|
|
|
const [currency, amount] = props.amount.split(":");
|
|
|
|
let sign: string;
|
|
|
|
switch (props.debitCreditIndicator) {
|
|
|
|
case "credit":
|
|
|
|
sign = "+";
|
|
|
|
break;
|
|
|
|
case "debit":
|
|
|
|
sign = "-";
|
|
|
|
break;
|
|
|
|
case "unknown":
|
|
|
|
sign = "";
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<Column style={{
|
2021-09-06 19:55:55 +02:00
|
|
|
textAlign: 'center',
|
2021-08-24 17:00:34 +02:00
|
|
|
color:
|
|
|
|
props.pending ? "gray" :
|
|
|
|
(sign === '+' ? 'darkgreen' :
|
|
|
|
(sign === '-' ? 'darkred' :
|
|
|
|
undefined))
|
|
|
|
}}>
|
|
|
|
<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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|