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 {
|
2022-01-10 20:04:53 +01:00
|
|
|
Amounts,
|
2021-11-15 15:18:58 +01:00
|
|
|
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";
|
2022-01-10 20:04:53 +01:00
|
|
|
import { Loading } from "../components/Loading";
|
2022-01-20 17:13:53 +01:00
|
|
|
import { LoadingError } from "../components/LoadingError";
|
2022-01-10 20:04:53 +01:00
|
|
|
import {
|
|
|
|
ButtonBoxPrimary,
|
|
|
|
ButtonBoxWarning,
|
|
|
|
ButtonPrimary,
|
2022-01-24 18:12:12 +01:00
|
|
|
CenteredBoldText,
|
|
|
|
CenteredText,
|
2022-01-10 20:04:53 +01:00
|
|
|
DateSeparator,
|
|
|
|
NiceSelect,
|
|
|
|
WarningBox,
|
|
|
|
} 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";
|
2022-03-14 19:20:32 +01:00
|
|
|
import { useTranslationContext } from "../context/translation";
|
2021-11-19 18:51:27 +01:00
|
|
|
import { useAsyncAsHook } from "../hooks/useAsyncAsHook";
|
2022-02-18 20:54:15 +01:00
|
|
|
import { NoBalanceHelp } from "../popup/NoBalanceHelp";
|
2021-08-19 05:34:47 +02:00
|
|
|
import * as wxApi from "../wxApi";
|
|
|
|
|
2022-01-10 20:04:53 +01:00
|
|
|
interface Props {
|
|
|
|
currency?: string;
|
|
|
|
goToWalletDeposit: (currency: string) => void;
|
|
|
|
goToWalletManualWithdraw: (currency?: string) => void;
|
|
|
|
}
|
|
|
|
export function HistoryPage({
|
|
|
|
currency,
|
|
|
|
goToWalletManualWithdraw,
|
|
|
|
goToWalletDeposit,
|
|
|
|
}: Props): VNode {
|
2022-03-14 19:20:32 +01:00
|
|
|
const { i18n } = useTranslationContext();
|
2022-03-15 14:35:00 +01:00
|
|
|
const state = useAsyncAsHook(
|
|
|
|
async () => ({
|
|
|
|
b: await wxApi.getBalance(),
|
|
|
|
tx: await wxApi.getTransactions(),
|
|
|
|
}),
|
|
|
|
[NotificationType.WithdrawGroupFinished],
|
|
|
|
);
|
2021-08-19 05:34:47 +02:00
|
|
|
|
2022-03-15 14:35:00 +01:00
|
|
|
if (!state) {
|
2022-01-10 20:04:53 +01:00
|
|
|
return <Loading />;
|
2021-11-30 21:29:33 +01:00
|
|
|
}
|
|
|
|
|
2022-03-15 14:35:00 +01:00
|
|
|
if (state.hasError) {
|
2022-01-10 20:04:53 +01:00
|
|
|
return (
|
2022-01-20 17:13:53 +01:00
|
|
|
<LoadingError
|
2022-02-23 19:44:14 +01:00
|
|
|
title={
|
|
|
|
<i18n.Translate>
|
|
|
|
Could not load the list of transactions
|
|
|
|
</i18n.Translate>
|
|
|
|
}
|
2022-03-15 14:35:00 +01:00
|
|
|
error={state}
|
2022-01-20 17:13:53 +01:00
|
|
|
/>
|
2022-01-10 20:04:53 +01:00
|
|
|
);
|
2021-11-19 18:51:27 +01:00
|
|
|
}
|
2021-08-19 05:34:47 +02:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<HistoryView
|
2022-03-15 14:35:00 +01:00
|
|
|
balances={state.response.b.balances}
|
2022-01-10 20:04:53 +01:00
|
|
|
defaultCurrency={currency}
|
|
|
|
goToWalletManualWithdraw={goToWalletManualWithdraw}
|
|
|
|
goToWalletDeposit={goToWalletDeposit}
|
2022-03-15 14:35:00 +01:00
|
|
|
transactions={[...state.response.tx.transactions].reverse()}
|
2021-11-15 15:18:58 +01:00
|
|
|
/>
|
|
|
|
);
|
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({
|
2022-01-10 20:04:53 +01:00
|
|
|
defaultCurrency,
|
|
|
|
transactions,
|
2021-11-15 15:18:58 +01:00
|
|
|
balances,
|
2022-01-10 20:04:53 +01:00
|
|
|
goToWalletManualWithdraw,
|
|
|
|
goToWalletDeposit,
|
2021-11-15 15:18:58 +01:00
|
|
|
}: {
|
2022-01-10 20:04:53 +01:00
|
|
|
goToWalletDeposit: (currency: string) => void;
|
|
|
|
goToWalletManualWithdraw: (currency?: string) => void;
|
|
|
|
defaultCurrency?: string;
|
|
|
|
transactions: Transaction[];
|
2021-11-15 15:18:58 +01:00
|
|
|
balances: Balance[];
|
2021-11-16 17:59:53 +01:00
|
|
|
}): VNode {
|
2022-03-14 19:20:32 +01:00
|
|
|
const { i18n } = useTranslationContext();
|
2022-01-10 20:04:53 +01:00
|
|
|
const currencies = balances.map((b) => b.available.split(":")[0]);
|
2021-11-16 17:59:53 +01:00
|
|
|
|
2022-01-10 20:04:53 +01:00
|
|
|
const defaultCurrencyIndex = currencies.findIndex(
|
|
|
|
(c) => c === defaultCurrency,
|
|
|
|
);
|
|
|
|
const [currencyIndex, setCurrencyIndex] = useState(
|
|
|
|
defaultCurrencyIndex === -1 ? 0 : defaultCurrencyIndex,
|
|
|
|
);
|
|
|
|
const selectedCurrency =
|
|
|
|
currencies.length > 0 ? currencies[currencyIndex] : undefined;
|
|
|
|
|
|
|
|
const currencyAmount = balances[currencyIndex]
|
|
|
|
? Amounts.jsonifyAmount(balances[currencyIndex].available)
|
|
|
|
: undefined;
|
|
|
|
|
|
|
|
const byDate = transactions
|
|
|
|
.filter((t) => t.amountRaw.split(":")[0] === selectedCurrency)
|
|
|
|
.reduce((rv, x) => {
|
|
|
|
const theDate =
|
2022-03-18 15:32:41 +01:00
|
|
|
x.timestamp.t_s === "never" ? 0 : normalizeToDay(x.timestamp.t_s * 1000);
|
2022-01-10 20:04:53 +01:00
|
|
|
if (theDate) {
|
|
|
|
(rv[theDate] = rv[theDate] || []).push(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}, {} as { [x: string]: Transaction[] });
|
|
|
|
const datesWithTransaction = Object.keys(byDate);
|
2021-08-19 05:34:47 +02:00
|
|
|
|
2022-01-10 20:04:53 +01:00
|
|
|
if (balances.length === 0 || !selectedCurrency) {
|
|
|
|
return (
|
2022-02-18 20:54:15 +01:00
|
|
|
<NoBalanceHelp goToWalletManualWithdraw={goToWalletManualWithdraw} />
|
2022-01-10 20:04:53 +01:00
|
|
|
);
|
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
2021-11-19 18:51:27 +01:00
|
|
|
<Fragment>
|
2022-01-10 20:04:53 +01:00
|
|
|
<section>
|
2022-01-24 18:12:12 +01:00
|
|
|
<div
|
2022-01-10 20:04:53 +01:00
|
|
|
style={{
|
|
|
|
display: "flex",
|
2022-01-24 18:12:12 +01:00
|
|
|
flexWrap: "wrap",
|
2022-01-10 20:04:53 +01:00
|
|
|
alignItems: "center",
|
2022-01-24 18:12:12 +01:00
|
|
|
justifyContent: "space-between",
|
2022-01-10 20:04:53 +01:00
|
|
|
}}
|
|
|
|
>
|
2022-01-24 18:12:12 +01:00
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
width: "fit-content",
|
|
|
|
display: "flex",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{currencies.length === 1 ? (
|
|
|
|
<CenteredText style={{ fontSize: "x-large", margin: 8 }}>
|
|
|
|
{selectedCurrency}
|
|
|
|
</CenteredText>
|
|
|
|
) : (
|
|
|
|
<NiceSelect>
|
|
|
|
<select
|
|
|
|
style={{
|
|
|
|
fontSize: "x-large",
|
|
|
|
}}
|
|
|
|
value={currencyIndex}
|
|
|
|
onChange={(e) => {
|
|
|
|
setCurrencyIndex(Number(e.currentTarget.value));
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{currencies.map((currency, index) => {
|
|
|
|
return (
|
|
|
|
<option value={index} key={currency}>
|
|
|
|
{currency}
|
|
|
|
</option>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</select>
|
|
|
|
</NiceSelect>
|
|
|
|
)}
|
|
|
|
{currencyAmount && (
|
|
|
|
<CenteredBoldText
|
|
|
|
style={{
|
|
|
|
display: "inline-block",
|
|
|
|
fontSize: "x-large",
|
|
|
|
margin: 8,
|
2022-01-10 20:04:53 +01:00
|
|
|
}}
|
|
|
|
>
|
2022-01-24 18:12:12 +01:00
|
|
|
{Amounts.stringifyValue(currencyAmount)}
|
|
|
|
</CenteredBoldText>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<ButtonPrimary
|
|
|
|
style={{ marginLeft: 0, marginTop: 8 }}
|
|
|
|
onClick={() => goToWalletManualWithdraw(selectedCurrency)}
|
2022-01-10 20:04:53 +01:00
|
|
|
>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Withdraw</i18n.Translate>
|
2022-01-24 18:12:12 +01:00
|
|
|
</ButtonPrimary>
|
|
|
|
{currencyAmount && Amounts.isNonZero(currencyAmount) && (
|
|
|
|
<ButtonBoxPrimary
|
|
|
|
style={{ marginLeft: 0, marginTop: 8 }}
|
|
|
|
onClick={() => goToWalletDeposit(selectedCurrency)}
|
|
|
|
>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Deposit</i18n.Translate>
|
2022-01-24 18:12:12 +01:00
|
|
|
</ButtonBoxPrimary>
|
|
|
|
)}
|
|
|
|
</div>
|
2021-11-30 21:29:33 +01:00
|
|
|
</div>
|
2021-11-15 15:18:58 +01:00
|
|
|
</section>
|
2022-01-10 20:04:53 +01:00
|
|
|
{datesWithTransaction.length === 0 ? (
|
2022-02-23 19:18:37 +01:00
|
|
|
<section>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>There is no history for this currency</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</section>
|
2022-01-10 20:04:53 +01:00
|
|
|
) : (
|
|
|
|
<section>
|
|
|
|
{datesWithTransaction.map((d, i) => {
|
|
|
|
return (
|
|
|
|
<Fragment key={i}>
|
|
|
|
<DateSeparator>
|
|
|
|
<Time
|
|
|
|
timestamp={{ t_ms: Number.parseInt(d, 10) }}
|
|
|
|
format="dd MMMM yyyy"
|
|
|
|
/>
|
|
|
|
</DateSeparator>
|
|
|
|
{byDate[d].map((tx, i) => (
|
2022-01-24 18:12:12 +01:00
|
|
|
<TransactionItem key={i} tx={tx} />
|
2022-01-10 20:04:53 +01:00
|
|
|
))}
|
|
|
|
</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
|
|
|
}
|