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

134 lines
3.6 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 {
AmountString,
Balance,
Transaction,
TransactionsResponse,
} from "@gnu-taler/taler-util";
2021-11-16 17:59:53 +01:00
import { Fragment, h, VNode } from "preact";
import { useEffect, useState } from "preact/hooks";
2021-08-24 17:00:34 +02:00
import { DateSeparator, WalletBox } from "../components/styled";
2021-11-16 17:59:53 +01:00
import { Time } from "../components/Time";
2021-08-24 17:00:34 +02:00
import { TransactionItem } from "../components/TransactionItem";
import { useBalances } from "../hooks/useBalances";
import * as wxApi from "../wxApi";
2021-11-16 17:59:53 +01:00
export function HistoryPage(): VNode {
const [transactions, setTransactions] = useState<
TransactionsResponse | undefined
>(undefined);
2021-11-15 15:18:58 +01:00
const balance = useBalances();
const balanceWithoutError = balance?.hasError
? []
: balance?.response.balances || [];
useEffect(() => {
const fetchData = async (): Promise<void> => {
const res = await wxApi.getTransactions();
setTransactions(res);
};
fetchData();
}, []);
if (!transactions) {
return <div>Loading ...</div>;
}
2021-11-15 15:18:58 +01:00
return (
<HistoryView
balances={balanceWithoutError}
list={[...transactions.transactions].reverse()}
/>
);
}
2021-11-16 17:59:53 +01:00
function amountToString(c: AmountString): string {
2021-11-15 15:18:58 +01:00
const idx = c.indexOf(":");
return `${c.substring(idx + 1)} ${c.substring(0, idx)}`;
}
2021-11-16 17:59:53 +01:00
const term = 1000 * 60 * 60 * 24;
function normalizeToDay(x: number): number {
return Math.round(x / term) * term;
}
2021-11-15 15:18:58 +01:00
export function HistoryView({
list,
balances,
}: {
list: Transaction[];
balances: Balance[];
2021-11-16 17:59:53 +01:00
}): VNode {
const byDate = list.reduce((rv, x) => {
2021-11-15 15:18:58 +01:00
const theDate =
2021-11-16 17:59:53 +01:00
x.timestamp.t_ms === "never" ? 0 : normalizeToDay(x.timestamp.t_ms);
if (theDate) {
(rv[theDate] = rv[theDate] || []).push(x);
}
return rv;
}, {} as { [x: string]: Transaction[] });
2021-11-15 15:18:58 +01:00
const multiCurrency = balances.length > 1;
2021-08-24 17:00:34 +02:00
2021-11-15 15:18:58 +01:00
return (
<WalletBox noPadding>
{balances.length > 0 && (
<header>
{balances.length === 1 && (
<div class="title">
Balance: <span>{amountToString(balances[0].available)}</span>
</div>
)}
{balances.length > 1 && (
<div class="title">
Balance:{" "}
<ul style={{ margin: 0 }}>
2021-11-16 17:59:53 +01:00
{balances.map((b, i) => (
<li key={i}>{b.available}</li>
2021-11-15 15:18:58 +01:00
))}
</ul>
</div>
)}
</header>
)}
<section>
{Object.keys(byDate).map((d, i) => {
return (
<Fragment key={i}>
2021-11-16 17:59:53 +01:00
<DateSeparator>
<Time
timestamp={{ t_ms: Number.parseInt(d, 10) }}
format="dd MMMM yyyy"
/>
</DateSeparator>
2021-11-15 15:18:58 +01:00
{byDate[d].map((tx, i) => (
<TransactionItem
key={i}
tx={tx}
multiCurrency={multiCurrency}
/>
))}
</Fragment>
);
})}
</section>
</WalletBox>
);
}