import React, { useContext, useEffect, useMemo, useState } from "react"; import { BlockTag } from "@ethersproject/providers"; import ContentFrame from "../ContentFrame"; import InfoRow from "../components/InfoRow"; import TransactionValue from "../components/TransactionValue"; import ETH2USDValue from "../components/ETH2USDValue"; import TransactionAddress from "../components/TransactionAddress"; import Copy from "../components/Copy"; import TransactionLink from "../components/TransactionLink"; import PendingResults from "../search/PendingResults"; import ResultHeader from "../search/ResultHeader"; import { SearchController } from "../search/search"; import TransactionItem from "../search/TransactionItem"; import UndefinedPageControl from "../search/UndefinedPageControl"; import { useFeeToggler } from "../search/useFeeToggler"; import { SelectionContext, useSelection } from "../useSelection"; import { useMultipleETHUSDOracle } from "../usePriceOracle"; import { RuntimeContext } from "../useRuntime"; import { useParams, useSearchParams } from "react-router-dom"; import { ChecksummedAddress, ProcessedTransaction } from "../types"; import { useAddressBalance, useContractCreator } from "../useErigonHooks"; import { BlockNumberContext } from "../useBlockTagContext"; type AddressTransactionResultsProps = { address: ChecksummedAddress; }; const AddressTransactionResults: React.FC = ({ address, }) => { const { provider } = useContext(RuntimeContext); const selectionCtx = useSelection(); const [feeDisplay, feeDisplayToggler] = useFeeToggler(); const { addressOrName, direction } = useParams(); if (addressOrName === undefined) { throw new Error("addressOrName couldn't be undefined here"); } const [searchParams] = useSearchParams(); const hash = searchParams.get("h"); const [controller, setController] = useState(); useEffect(() => { if (!provider || !address) { return; } const readFirstPage = async () => { const _controller = await SearchController.firstPage(provider, address); setController(_controller); }; const readMiddlePage = async (next: boolean) => { const _controller = await SearchController.middlePage( provider, address, hash!, next ); setController(_controller); }; const readLastPage = async () => { const _controller = await SearchController.lastPage(provider, address); setController(_controller); }; const prevPage = async () => { const _controller = await controller!.prevPage(provider, hash!); setController(_controller); }; const nextPage = async () => { const _controller = await controller!.nextPage(provider, hash!); setController(_controller); }; // Page load from scratch if (direction === "first" || direction === undefined) { if (!controller?.isFirst || controller.address !== address) { readFirstPage(); } } else if (direction === "prev") { if (controller && controller.address === address) { prevPage(); } else { readMiddlePage(false); } } else if (direction === "next") { if (controller && controller.address === address) { nextPage(); } else { readMiddlePage(true); } } else if (direction === "last") { if (!controller?.isLast || controller.address !== address) { readLastPage(); } } }, [provider, address, direction, hash, controller]); const page = useMemo(() => controller?.getPage(), [controller]); // Extract block number from all txs on current page // TODO: dedup blockTags const blockTags: BlockTag[] = useMemo(() => { if (!page) { return ["latest"]; } const blockTags: BlockTag[] = page.map((t) => t.blockNumber); blockTags.push("latest"); return blockTags; }, [page]); const priceMap = useMultipleETHUSDOracle(provider, blockTags); const balance = useAddressBalance(provider, address); const creator = useContractCreator(provider, address); return ( {balance && (
{!balance.isZero() && priceMap["latest"] !== undefined && ( )}
)} {creator && (
)}
{page ? ( <> {page.map((tx) => ( ))} ) : ( )}
); }; type NavBarProps = { address: ChecksummedAddress; page: ProcessedTransaction[] | undefined; controller: SearchController | undefined; }; const NavBar: React.FC = ({ address, page, controller }) => (
{page === undefined ? ( <>Waiting for search results... ) : ( <>{page.length} transactions on this page )}
); export default AddressTransactionResults;