2021-08-19 05:34:47 +02:00
|
|
|
/*
|
|
|
|
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,
|
2021-11-19 18:51:27 +01:00
|
|
|
NotificationType,
|
2021-11-15 15:18:58 +01:00
|
|
|
Transaction,
|
|
|
|
} from "@gnu-taler/taler-util";
|
2021-11-16 17:59:53 +01:00
|
|
|
import { Fragment, h, VNode } from "preact";
|
2021-11-30 21:29:33 +01:00
|
|
|
import { useState } from "preact/hooks";
|
|
|
|
import { ButtonPrimary, DateSeparator } 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";
|
2021-11-19 18:51:27 +01:00
|
|
|
import { useAsyncAsHook } from "../hooks/useAsyncAsHook";
|
2021-11-30 21:29:33 +01:00
|
|
|
import { AddNewActionView } from "../popup/AddNewActionView";
|
2021-08-19 05:34:47 +02:00
|
|
|
import * as wxApi from "../wxApi";
|
|
|
|
|
2021-11-16 17:59:53 +01:00
|
|
|
export function HistoryPage(): VNode {
|
2021-11-19 18:51:27 +01:00
|
|
|
const balance = useAsyncAsHook(wxApi.getBalance);
|
2021-11-15 15:18:58 +01:00
|
|
|
const balanceWithoutError = balance?.hasError
|
|
|
|
? []
|
|
|
|
: balance?.response.balances || [];
|
2021-08-19 05:34:47 +02:00
|
|
|
|
2021-11-19 18:51:27 +01:00
|
|
|
const transactionQuery = useAsyncAsHook(wxApi.getTransactions, [
|
|
|
|
NotificationType.WithdrawGroupFinished,
|
|
|
|
]);
|
2021-08-19 05:34:47 +02:00
|
|
|
|
2021-11-30 21:29:33 +01:00
|
|
|
const [addingAction, setAddingAction] = useState(false);
|
|
|
|
|
|
|
|
if (addingAction) {
|
|
|
|
return <AddNewActionView onCancel={() => setAddingAction(false)} />;
|
|
|
|
}
|
|
|
|
|
2021-11-19 18:51:27 +01:00
|
|
|
if (!transactionQuery) {
|
2021-08-19 05:34:47 +02:00
|
|
|
return <div>Loading ...</div>;
|
|
|
|
}
|
2021-11-19 18:51:27 +01:00
|
|
|
if (transactionQuery.hasError) {
|
|
|
|
return <div>There was an error loading the transactions.</div>;
|
|
|
|
}
|
2021-08-19 05:34:47 +02:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<HistoryView
|
|
|
|
balances={balanceWithoutError}
|
2021-11-19 18:51:27 +01:00
|
|
|
list={[...transactionQuery.response.transactions].reverse()}
|
2021-11-30 21:29:33 +01:00
|
|
|
onAddNewAction={() => setAddingAction(true)}
|
2021-11-15 15:18:58 +01:00
|
|
|
/>
|
|
|
|
);
|
2021-08-19 05:34:47 +02:00
|
|
|
}
|
|
|
|
|
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-08-19 05:34:47 +02:00
|
|
|
}
|
|
|
|
|
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,
|
2021-11-30 21:29:33 +01:00
|
|
|
onAddNewAction,
|
2021-11-15 15:18:58 +01:00
|
|
|
}: {
|
|
|
|
list: Transaction[];
|
|
|
|
balances: Balance[];
|
2021-11-30 21:29:33 +01:00
|
|
|
onAddNewAction: () => void;
|
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);
|
|
|
|
}
|
|
|
|
|
2021-08-19 05:34:47 +02:00
|
|
|
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 (
|
2021-11-19 18:51:27 +01:00
|
|
|
<Fragment>
|
2021-11-30 21:29:33 +01:00
|
|
|
<header>
|
|
|
|
{balances.length > 0 ? (
|
|
|
|
<Fragment>
|
|
|
|
{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 }}>
|
|
|
|
{balances.map((b, i) => (
|
|
|
|
<li key={i}>{b.available}</li>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</Fragment>
|
|
|
|
) : (
|
|
|
|
<div />
|
|
|
|
)}
|
|
|
|
<div>
|
|
|
|
<ButtonPrimary onClick={onAddNewAction}>
|
|
|
|
<b>+</b>
|
|
|
|
</ButtonPrimary>
|
|
|
|
</div>
|
|
|
|
</header>
|
2021-11-15 15:18:58 +01:00
|
|
|
<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>
|
2021-11-19 18:51:27 +01:00
|
|
|
</Fragment>
|
2021-11-15 15:18:58 +01:00
|
|
|
);
|
2021-08-19 05:34:47 +02:00
|
|
|
}
|