2022-03-18 15:32:41 +01:00
|
|
|
import {
|
|
|
|
AbsoluteTime,
|
|
|
|
Amounts,
|
|
|
|
NotificationType,
|
|
|
|
Transaction,
|
|
|
|
} from "@gnu-taler/taler-util";
|
2022-03-29 14:58:06 +02:00
|
|
|
import { Fragment, h, JSX, VNode } from "preact";
|
2022-03-29 04:41:07 +02:00
|
|
|
import { useAsyncAsHook } from "../hooks/useAsyncAsHook.js";
|
|
|
|
import { Avatar } from "../mui/Avatar.js";
|
|
|
|
import { Typography } from "../mui/Typography.js";
|
2022-03-29 14:58:06 +02:00
|
|
|
import * as wxApi from "../wxApi.js";
|
2022-03-29 04:41:07 +02:00
|
|
|
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 {
|
|
|
|
goToTransaction: (id: string) => void;
|
|
|
|
}
|
2022-03-11 15:14:27 +01:00
|
|
|
|
2022-03-29 14:58:06 +02:00
|
|
|
export function PendingTransactions({ goToTransaction }: Props): VNode {
|
2022-03-11 15:14:27 +01:00
|
|
|
const state = useAsyncAsHook(wxApi.getTransactions, [
|
|
|
|
NotificationType.WithdrawGroupFinished,
|
|
|
|
]);
|
|
|
|
const transactions =
|
2022-03-11 20:18:26 +01:00
|
|
|
!state || state.hasError
|
|
|
|
? []
|
|
|
|
: state.response.transactions.filter((t) => t.pending);
|
2022-03-11 15:14:27 +01:00
|
|
|
|
2022-03-11 20:18:26 +01:00
|
|
|
if (!state || state.hasError || !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-03-11 20:18:26 +01:00
|
|
|
goToTransaction: (id: string) => void;
|
2022-03-11 15:14:27 +01:00
|
|
|
transactions: Transaction[];
|
2022-03-29 14:58:06 +02:00
|
|
|
}): VNode {
|
2022-03-11 06:17:40 +01:00
|
|
|
return (
|
|
|
|
<Banner
|
|
|
|
title="PENDING OPERATIONS"
|
2022-03-11 15:14:27 +01:00
|
|
|
style={{
|
|
|
|
backgroundColor: "lightcyan",
|
|
|
|
maxHeight: 150,
|
|
|
|
padding: 8,
|
2022-03-11 20:18:26 +01:00
|
|
|
flexGrow: 1,
|
|
|
|
maxWidth: 500,
|
2022-03-11 15:14:27 +01:00
|
|
|
overflowY: transactions.length > 3 ? "scroll" : "hidden",
|
|
|
|
}}
|
2022-03-11 06:17:40 +01:00
|
|
|
elements={transactions.map((t) => {
|
|
|
|
const amount = Amounts.parseOrThrow(t.amountEffective);
|
|
|
|
return {
|
|
|
|
icon: (
|
|
|
|
<Avatar
|
|
|
|
style={{
|
|
|
|
border: "solid blue 1px",
|
|
|
|
color: "blue",
|
|
|
|
boxSizing: "border-box",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{t.type.substring(0, 1)}
|
|
|
|
</Avatar>
|
|
|
|
),
|
2022-03-11 20:18:26 +01:00
|
|
|
action: () => goToTransaction(t.transactionId),
|
2022-03-11 06:17:40 +01:00
|
|
|
description: (
|
2022-04-05 17:16:09 +02:00
|
|
|
<Fragment>
|
|
|
|
<Typography inline bold>
|
2022-03-11 06:17:40 +01:00
|
|
|
{amount.currency} {Amounts.stringifyValue(amount)}
|
2022-04-05 17:16:09 +02:00
|
|
|
</Typography>
|
|
|
|
-
|
2022-03-18 15:32:41 +01:00
|
|
|
<Time
|
|
|
|
timestamp={AbsoluteTime.fromTimestamp(t.timestamp)}
|
|
|
|
format="dd MMMM yyyy"
|
|
|
|
/>
|
2022-04-05 17:16:09 +02:00
|
|
|
</Fragment>
|
2022-03-11 06:17:40 +01:00
|
|
|
),
|
|
|
|
};
|
|
|
|
})}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default PendingTransactions;
|