import {
  AbsoluteTime,
  Amounts,
  NotificationType,
  Transaction,
} from "@gnu-taler/taler-util";
import { Fragment, h, JSX, VNode } from "preact";
import { useEffect } from "preact/hooks";
import { useAsyncAsHook } from "../hooks/useAsyncAsHook.js";
import { Avatar } from "../mui/Avatar.js";
import { Typography } from "../mui/Typography.js";
import * as wxApi from "../wxApi.js";
import Banner from "./Banner.js";
import { Time } from "./Time.js";
interface Props extends JSX.HTMLAttributes {
  goToTransaction: (id: string) => void;
}
export function PendingTransactions({ goToTransaction }: Props): VNode {
  const state = useAsyncAsHook(wxApi.getTransactions);
  useEffect(() => {
    wxApi.onUpdateNotification([NotificationType.WithdrawGroupFinished], () => {
      state?.retry();
    });
  });
  const transactions =
    !state || state.hasError
      ? []
      : state.response.transactions.filter((t) => t.pending);
  if (!state || state.hasError || !transactions.length) {
    return ;
  }
  return (
    
  );
}
export function PendingTransactionsView({
  transactions,
  goToTransaction,
}: {
  goToTransaction: (id: string) => void;
  transactions: Transaction[];
}): VNode {
  return (
     3 ? "scroll" : "hidden",
      }}
      elements={transactions.map((t) => {
        const amount = Amounts.parseOrThrow(t.amountEffective);
        return {
          icon: (
            
              {t.type.substring(0, 1)}
            
          ),
          action: () => goToTransaction(t.transactionId),
          description: (
            
              
                {amount.currency} {Amounts.stringifyValue(amount)}
              
               - 
              
            
          ),
        };
      })}
    />
  );
}
export default PendingTransactions;