2022-12-09 13:09:20 +01:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2022 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/>
|
|
|
|
*/
|
|
|
|
|
2022-12-07 20:07:42 +01:00
|
|
|
import { Logger } from "@gnu-taler/taler-util";
|
2022-12-07 15:22:21 +01:00
|
|
|
import { h, VNode } from "preact";
|
|
|
|
import { useEffect } from "preact/hooks";
|
|
|
|
import useSWR from "swr";
|
|
|
|
import { useTranslationContext } from "../../context/translation.js";
|
|
|
|
|
2022-12-07 20:07:42 +01:00
|
|
|
const logger = new Logger("Transactions");
|
2022-12-07 15:22:21 +01:00
|
|
|
/**
|
|
|
|
* Show one page of transactions.
|
|
|
|
*/
|
|
|
|
export function Transactions({
|
|
|
|
pageNumber,
|
|
|
|
accountLabel,
|
|
|
|
balanceValue,
|
2022-12-07 19:44:16 +01:00
|
|
|
}: {
|
|
|
|
pageNumber: number;
|
|
|
|
accountLabel: string;
|
|
|
|
balanceValue?: string;
|
|
|
|
}): VNode {
|
2022-12-07 15:22:21 +01:00
|
|
|
const { i18n } = useTranslationContext();
|
|
|
|
const { data, error, mutate } = useSWR(
|
|
|
|
`access-api/accounts/${accountLabel}/transactions?page=${pageNumber}`,
|
|
|
|
);
|
|
|
|
useEffect(() => {
|
2022-12-07 19:44:16 +01:00
|
|
|
if (balanceValue) {
|
|
|
|
mutate();
|
|
|
|
}
|
|
|
|
}, [balanceValue ?? ""]);
|
2022-12-07 15:22:21 +01:00
|
|
|
if (typeof error !== "undefined") {
|
2022-12-07 20:07:42 +01:00
|
|
|
logger.error("transactions not found error", error);
|
2022-12-07 15:22:21 +01:00
|
|
|
switch (error.status) {
|
|
|
|
case 404: {
|
|
|
|
return <p>Transactions page {pageNumber} was not found.</p>;
|
|
|
|
}
|
|
|
|
case 401: {
|
|
|
|
return <p>Wrong credentials given.</p>;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
return <p>Transaction page {pageNumber} could not be retrieved.</p>;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!data) {
|
2022-12-07 20:07:42 +01:00
|
|
|
logger.trace(`History data of ${accountLabel} not arrived`);
|
2022-12-07 15:22:21 +01:00
|
|
|
return <p>Transactions page loading...</p>;
|
|
|
|
}
|
2022-12-07 20:07:42 +01:00
|
|
|
logger.trace(`History data of ${accountLabel}`, data);
|
2022-12-07 15:22:21 +01:00
|
|
|
return (
|
|
|
|
<div class="results">
|
|
|
|
<table class="pure-table pure-table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{i18n.str`Date`}</th>
|
|
|
|
<th>{i18n.str`Amount`}</th>
|
|
|
|
<th>{i18n.str`Counterpart`}</th>
|
|
|
|
<th>{i18n.str`Subject`}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{data.transactions.map((item: any, idx: number) => {
|
|
|
|
const sign = item.direction == "DBIT" ? "-" : "";
|
|
|
|
const counterpart =
|
|
|
|
item.direction == "DBIT" ? item.creditorIban : item.debtorIban;
|
|
|
|
// Pattern:
|
|
|
|
//
|
|
|
|
// DD/MM YYYY subject -5 EUR
|
|
|
|
// DD/MM YYYY subject 5 EUR
|
|
|
|
const dateRegex = /^([0-9]{4})-([0-9]{2})-([0-9]{1,2})/;
|
|
|
|
const dateParse = dateRegex.exec(item.date);
|
|
|
|
const date =
|
|
|
|
dateParse !== null
|
|
|
|
? `${dateParse[3]}/${dateParse[2]} ${dateParse[1]}`
|
|
|
|
: "date not found";
|
|
|
|
return (
|
|
|
|
<tr key={idx}>
|
|
|
|
<td>{date}</td>
|
|
|
|
<td>
|
|
|
|
{sign}
|
|
|
|
{item.amount} {item.currency}
|
|
|
|
</td>
|
|
|
|
<td>{counterpart}</td>
|
|
|
|
<td>{item.subject}</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|