/*
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
*/
import {
AmountString,
Timestamp,
Transaction,
TransactionType,
} from "@gnu-taler/taler-util";
import { h, VNode } 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";
import {
Column,
ExtraLargeText,
HistoryRow,
SmallLightText,
LargeText,
LightText,
} from "./styled";
import { Time } from "./Time";
export function TransactionItem(props: {
tx: Transaction;
multiCurrency: boolean;
}): VNode {
const tx = props.tx;
switch (tx.type) {
case TransactionType.Withdrawal:
return (
);
case TransactionType.Payment:
return (
);
case TransactionType.Refund:
return (
);
case TransactionType.Tip:
return (
);
case TransactionType.Refresh:
return (
);
case TransactionType.Deposit:
return (
);
}
}
function TransactionLayout(props: TransactionLayoutProps): VNode {
return (