wallet-core/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx

152 lines
4.2 KiB
TypeScript
Raw Normal View History

2022-06-06 17:06:25 +02: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-03-18 15:32:41 +01:00
import {
AbsoluteTime,
Amounts,
2023-01-13 20:09:33 +01:00
ExtendedStatus,
2022-03-18 15:32:41 +01:00
NotificationType,
Transaction,
} from "@gnu-taler/taler-util";
2022-10-25 17:23:08 +02:00
import { WalletApiOperation } from "@gnu-taler/taler-wallet-core";
import { Fragment, h, JSX, VNode } from "preact";
2022-04-26 03:37:41 +02:00
import { useEffect } from "preact/hooks";
import { useBackendContext } from "../context/backend.js";
2022-09-13 16:07:39 +02:00
import { useTranslationContext } from "../context/translation.js";
2022-04-26 04:07:31 +02:00
import { useAsyncAsHook } from "../hooks/useAsyncAsHook.js";
2022-03-29 04:41:07 +02:00
import { Avatar } from "../mui/Avatar.js";
2023-01-04 15:24:58 +01:00
import { Grid } from "../mui/Grid.js";
2022-03-29 04:41:07 +02:00
import { Typography } from "../mui/Typography.js";
import Banner from "./Banner.js";
import { Time } from "./Time.js";
2022-03-11 06:17:40 +01:00
2022-03-11 20:18:26 +01:00
interface Props extends JSX.HTMLAttributes {
2022-06-02 17:20:36 +02:00
goToTransaction: (id: string) => Promise<void>;
2022-03-11 20:18:26 +01:00
}
2022-03-11 15:14:27 +01:00
2023-01-04 15:24:58 +01:00
/**
* this cache will save the tx from the previous render
*/
const cache = { tx: [] as Transaction[] };
export function PendingTransactions({ goToTransaction }: Props): VNode {
const api = useBackendContext();
2022-10-25 17:23:08 +02:00
const state = useAsyncAsHook(() =>
api.wallet.call(WalletApiOperation.GetTransactions, {}),
2022-10-25 17:23:08 +02:00
);
2022-04-26 03:37:41 +02:00
useEffect(() => {
return api.listener.onUpdateNotification(
2022-06-09 19:16:28 +02:00
[NotificationType.WithdrawGroupFinished],
2022-10-25 17:23:08 +02:00
state?.retry,
2022-06-09 19:16:28 +02:00
);
2022-04-26 03:37:41 +02:00
});
2022-03-11 15:14:27 +01:00
const transactions =
2022-03-11 20:18:26 +01:00
!state || state.hasError
2023-01-04 15:24:58 +01:00
? cache.tx
2023-01-13 20:09:33 +01:00
: state.response.transactions.filter(
(t) => t.extendedStatus === ExtendedStatus.Pending,
);
2022-03-11 15:14:27 +01:00
2023-01-10 15:50:43 +01:00
if (state && !state.hasError) {
cache.tx = transactions;
}
2023-01-04 15:24:58 +01:00
if (!transactions.length) {
2022-03-11 15:14:27 +01:00
return <Fragment />;
}
2022-03-11 20:18:26 +01:00
return (
<PendingTransactionsView
goToTransaction={goToTransaction}
transactions={transactions}
/>
);
2022-03-11 06:17:40 +01:00
}
2022-03-11 15:14:27 +01:00
export function PendingTransactionsView({
transactions,
2022-03-11 20:18:26 +01:00
goToTransaction,
2022-03-11 15:14:27 +01:00
}: {
2022-06-02 17:20:36 +02:00
goToTransaction: (id: string) => Promise<void>;
2022-03-11 15:14:27 +01:00
transactions: Transaction[];
}): VNode {
2022-09-13 16:07:39 +02:00
const { i18n } = useTranslationContext();
2022-03-11 06:17:40 +01:00
return (
2023-01-04 15:24:58 +01:00
<div
2022-03-11 15:14:27 +01:00
style={{
backgroundColor: "lightcyan",
2023-01-04 15:24:58 +01:00
display: "flex",
justifyContent: "center",
2022-03-11 15:14:27 +01:00
}}
2023-01-04 15:24:58 +01:00
>
<Banner
2023-01-09 12:38:48 +01:00
titleHead={i18n.str`PENDING OPERATIONS`}
2023-01-04 15:24:58 +01:00
style={{
backgroundColor: "lightcyan",
maxHeight: 150,
padding: 8,
flexGrow: 1,
maxWidth: 500,
overflowY: transactions.length > 3 ? "scroll" : "hidden",
}}
>
{transactions.map((t, i) => {
const amount = Amounts.parseOrThrow(t.amountEffective);
return (
<Grid
container
item
xs={1}
key={i}
wrap="nowrap"
role="button"
spacing={1}
alignItems="center"
onClick={() => {
goToTransaction(t.transactionId);
2022-03-11 06:17:40 +01:00
}}
>
2023-01-04 15:24:58 +01:00
<Grid item xs={"auto"}>
<Avatar
style={{
border: "solid blue 1px",
color: "blue",
boxSizing: "border-box",
}}
>
{t.type.substring(0, 1)}
</Avatar>
</Grid>
<Grid item>
<Typography inline bold>
{amount.currency} {Amounts.stringifyValue(amount)}
</Typography>
&nbsp;-&nbsp;
<Time
timestamp={AbsoluteTime.fromTimestamp(t.timestamp)}
format="dd MMMM yyyy"
/>
</Grid>
</Grid>
);
})}
</Banner>
</div>
2022-03-11 06:17:40 +01:00
);
}
export default PendingTransactions;