2021-07-01 18:21:40 +00:00
|
|
|
import React, { useState, useEffect, useMemo } from "react";
|
|
|
|
import { useParams, useLocation, useHistory } from "react-router-dom";
|
2021-07-02 19:05:18 +00:00
|
|
|
import { ethers } from "ethers";
|
2021-07-01 18:21:40 +00:00
|
|
|
import queryString from "query-string";
|
|
|
|
import Blockies from "react-blockies";
|
|
|
|
import StandardFrame from "./StandardFrame";
|
|
|
|
import StandardSubtitle from "./StandardSubtitle";
|
|
|
|
import Copy from "./components/Copy";
|
|
|
|
import ContentFrame from "./ContentFrame";
|
|
|
|
import UndefinedPageControl from "./search/UndefinedPageControl";
|
|
|
|
import ResultHeader from "./search/ResultHeader";
|
|
|
|
import PendingResults from "./search/PendingResults";
|
|
|
|
import TransactionItem from "./search/TransactionItem";
|
|
|
|
import { SearchController } from "./search/search";
|
|
|
|
import { useFeeToggler } from "./search/useFeeToggler";
|
2021-07-02 19:05:18 +00:00
|
|
|
import { provider } from "./ethersconfig";
|
2021-07-01 18:21:40 +00:00
|
|
|
|
|
|
|
type BlockParams = {
|
2021-07-02 19:05:18 +00:00
|
|
|
addressOrName: string;
|
2021-07-01 18:21:40 +00:00
|
|
|
direction?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
type PageParams = {
|
|
|
|
p?: number;
|
|
|
|
};
|
|
|
|
|
|
|
|
const AddressTransactions: React.FC = () => {
|
|
|
|
const params = useParams<BlockParams>();
|
|
|
|
const location = useLocation<PageParams>();
|
|
|
|
const history = useHistory();
|
|
|
|
const qs = queryString.parse(location.search);
|
|
|
|
let hash: string | undefined;
|
|
|
|
if (qs.h) {
|
|
|
|
hash = qs.h as string;
|
|
|
|
}
|
|
|
|
|
2021-07-02 19:05:18 +00:00
|
|
|
const [checksummedAddress, setChecksummedAddress] = useState<string>();
|
|
|
|
const [isENS, setENS] = useState<boolean>();
|
2021-07-02 19:20:50 +00:00
|
|
|
const [error, setError] = useState<boolean>();
|
2021-07-02 19:05:18 +00:00
|
|
|
|
|
|
|
// If it looks like it is an ENS name, try to resolve it
|
|
|
|
useEffect(() => {
|
|
|
|
if (ethers.utils.isAddress(params.addressOrName)) {
|
|
|
|
// Normalize to checksummed address
|
|
|
|
setChecksummedAddress(ethers.utils.getAddress(params.addressOrName));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const resolveName = async () => {
|
|
|
|
const resolvedAddress = await provider.resolveName(params.addressOrName);
|
|
|
|
if (resolvedAddress !== null) {
|
|
|
|
setENS(true);
|
|
|
|
setChecksummedAddress(resolvedAddress);
|
2021-07-02 19:20:50 +00:00
|
|
|
setError(false);
|
|
|
|
} else {
|
|
|
|
setError(true);
|
2021-07-02 19:05:18 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
resolveName();
|
|
|
|
}, [params.addressOrName]);
|
|
|
|
|
|
|
|
// Request came with a non-checksummed address; fix the URL
|
|
|
|
if (
|
|
|
|
!isENS &&
|
|
|
|
checksummedAddress &&
|
|
|
|
params.addressOrName !== checksummedAddress
|
|
|
|
) {
|
2021-07-01 18:21:40 +00:00
|
|
|
history.replace(
|
|
|
|
`/address/${checksummedAddress}${
|
|
|
|
params.direction ? "/" + params.direction : ""
|
|
|
|
}${location.search}`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const [controller, setController] = useState<SearchController>();
|
|
|
|
useEffect(() => {
|
2021-07-02 19:05:18 +00:00
|
|
|
if (!checksummedAddress) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-01 18:21:40 +00:00
|
|
|
const readFirstPage = async () => {
|
|
|
|
const _controller = await SearchController.firstPage(checksummedAddress);
|
|
|
|
setController(_controller);
|
|
|
|
};
|
|
|
|
const readMiddlePage = async (next: boolean) => {
|
|
|
|
const _controller = await SearchController.middlePage(
|
|
|
|
checksummedAddress,
|
|
|
|
hash!,
|
|
|
|
next
|
|
|
|
);
|
|
|
|
setController(_controller);
|
|
|
|
};
|
|
|
|
const readLastPage = async () => {
|
|
|
|
const _controller = await SearchController.lastPage(checksummedAddress);
|
|
|
|
setController(_controller);
|
|
|
|
};
|
|
|
|
const prevPage = async () => {
|
|
|
|
const _controller = await controller!.prevPage(hash!);
|
|
|
|
setController(_controller);
|
|
|
|
};
|
|
|
|
const nextPage = async () => {
|
|
|
|
const _controller = await controller!.nextPage(hash!);
|
|
|
|
setController(_controller);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Page load from scratch
|
|
|
|
if (params.direction === "first" || params.direction === undefined) {
|
|
|
|
if (!controller?.isFirst || controller.address !== checksummedAddress) {
|
|
|
|
readFirstPage();
|
|
|
|
}
|
|
|
|
} else if (params.direction === "prev") {
|
|
|
|
if (controller && controller.address === checksummedAddress) {
|
|
|
|
prevPage();
|
|
|
|
} else {
|
|
|
|
readMiddlePage(false);
|
|
|
|
}
|
|
|
|
} else if (params.direction === "next") {
|
|
|
|
if (controller && controller.address === checksummedAddress) {
|
|
|
|
nextPage();
|
|
|
|
} else {
|
|
|
|
readMiddlePage(true);
|
|
|
|
}
|
|
|
|
} else if (params.direction === "last") {
|
|
|
|
if (!controller?.isLast || controller.address !== checksummedAddress) {
|
|
|
|
readLastPage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, [checksummedAddress, params.direction, hash, controller]);
|
|
|
|
|
|
|
|
const page = useMemo(() => controller?.getPage(), [controller]);
|
|
|
|
|
2021-07-02 19:05:18 +00:00
|
|
|
document.title = `Address ${params.addressOrName} | Otterscan`;
|
2021-07-01 18:21:40 +00:00
|
|
|
|
|
|
|
const [feeDisplay, feeDisplayToggler] = useFeeToggler();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<StandardFrame>
|
2021-07-02 19:20:50 +00:00
|
|
|
{error ? (
|
|
|
|
<span className="text-base">
|
|
|
|
"{params.addressOrName}" is not an ETH address or ENS name.
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
checksummedAddress && (
|
2021-07-01 18:21:40 +00:00
|
|
|
<>
|
2021-07-02 19:20:50 +00:00
|
|
|
<StandardSubtitle>
|
|
|
|
<div className="flex space-x-2 items-baseline">
|
|
|
|
<Blockies
|
|
|
|
className="self-center rounded"
|
|
|
|
seed={checksummedAddress.toLowerCase()}
|
|
|
|
scale={3}
|
|
|
|
/>
|
|
|
|
<span>Address</span>
|
|
|
|
<span className="font-address text-base text-gray-500">
|
|
|
|
{checksummedAddress}
|
|
|
|
</span>
|
|
|
|
<Copy value={checksummedAddress} rounded />
|
|
|
|
{isENS && (
|
|
|
|
<span className="rounded-lg px-2 py-1 bg-gray-200 text-gray-500 text-xs">
|
|
|
|
ENS: {params.addressOrName}
|
|
|
|
</span>
|
2021-07-01 18:21:40 +00:00
|
|
|
)}
|
|
|
|
</div>
|
2021-07-02 19:20:50 +00:00
|
|
|
</StandardSubtitle>
|
|
|
|
<ContentFrame>
|
|
|
|
<div className="flex justify-between items-baseline py-3">
|
|
|
|
<div className="text-sm text-gray-500">
|
|
|
|
{page === undefined ? (
|
|
|
|
<>Waiting for search results...</>
|
|
|
|
) : (
|
|
|
|
<>{page.length} transactions on this page</>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<UndefinedPageControl
|
|
|
|
address={params.addressOrName}
|
|
|
|
isFirst={controller?.isFirst}
|
|
|
|
isLast={controller?.isLast}
|
|
|
|
prevHash={page ? page[0].hash : ""}
|
|
|
|
nextHash={page ? page[page.length - 1].hash : ""}
|
|
|
|
disabled={controller === undefined}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<ResultHeader
|
|
|
|
feeDisplay={feeDisplay}
|
|
|
|
feeDisplayToggler={feeDisplayToggler}
|
2021-07-01 18:21:40 +00:00
|
|
|
/>
|
2021-07-02 19:20:50 +00:00
|
|
|
{controller ? (
|
|
|
|
<>
|
|
|
|
{controller.getPage().map((tx) => (
|
|
|
|
<TransactionItem
|
|
|
|
key={tx.hash}
|
|
|
|
tx={tx}
|
|
|
|
selectedAddress={checksummedAddress}
|
|
|
|
feeDisplay={feeDisplay}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
<div className="flex justify-between items-baseline py-3">
|
|
|
|
<div className="text-sm text-gray-500">
|
|
|
|
{page !== undefined && (
|
|
|
|
<>{page.length} transactions on this page</>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<UndefinedPageControl
|
|
|
|
address={params.addressOrName}
|
|
|
|
isFirst={controller.isFirst}
|
|
|
|
isLast={controller.isLast}
|
|
|
|
prevHash={page ? page[0].hash : ""}
|
|
|
|
nextHash={page ? page[page.length - 1].hash : ""}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
) : (
|
|
|
|
<PendingResults />
|
|
|
|
)}
|
|
|
|
</ContentFrame>
|
2021-07-01 18:21:40 +00:00
|
|
|
</>
|
2021-07-02 19:20:50 +00:00
|
|
|
)
|
|
|
|
)}
|
2021-07-01 18:21:40 +00:00
|
|
|
</StandardFrame>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default React.memo(AddressTransactions);
|