2021-07-29 18:09:28 +00:00
|
|
|
import React, { useState, useEffect, useContext } from "react";
|
|
|
|
import { ethers } from "ethers";
|
2021-07-29 18:53:52 +00:00
|
|
|
import { Transition } from "@headlessui/react";
|
2021-07-29 18:09:28 +00:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
2021-07-30 02:05:23 +00:00
|
|
|
import {
|
|
|
|
faBurn,
|
|
|
|
faCoins,
|
|
|
|
faCube,
|
|
|
|
faGasPump,
|
|
|
|
} from "@fortawesome/free-solid-svg-icons";
|
2021-07-29 18:09:28 +00:00
|
|
|
import BlockRecord from "./BlockRecord";
|
|
|
|
import { ExtendedBlock, readBlock } from "../useErigonHooks";
|
|
|
|
import { RuntimeContext } from "../useRuntime";
|
|
|
|
|
2021-07-29 18:53:52 +00:00
|
|
|
const MAX_BLOCK_HISTORY = 20;
|
2021-07-29 18:09:28 +00:00
|
|
|
|
|
|
|
type BlocksProps = {
|
|
|
|
latestBlock: ethers.providers.Block;
|
|
|
|
};
|
|
|
|
|
|
|
|
const Blocks: React.FC<BlocksProps> = ({ latestBlock }) => {
|
|
|
|
const { provider } = useContext(RuntimeContext);
|
|
|
|
const [blocks, setBlock] = useState<ExtendedBlock[]>([]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (!provider) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const _readBlock = async () => {
|
|
|
|
const extBlock = await readBlock(provider, latestBlock.number.toString());
|
|
|
|
setBlock((_blocks) => {
|
|
|
|
if (_blocks.length > 0 && latestBlock.number === _blocks[0].number) {
|
|
|
|
return _blocks;
|
|
|
|
}
|
2021-07-29 18:53:52 +00:00
|
|
|
return [extBlock, ..._blocks].slice(0, MAX_BLOCK_HISTORY + 1);
|
2021-07-29 18:09:28 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
_readBlock();
|
|
|
|
}, [provider, latestBlock]);
|
|
|
|
|
|
|
|
return (
|
2021-07-30 01:56:06 +00:00
|
|
|
<div className="w-full mb-auto">
|
2021-07-29 18:09:28 +00:00
|
|
|
<div className="m-10 divide-y-2">
|
|
|
|
<div className="grid grid-cols-8 px-3 py-2">
|
2021-07-30 02:05:23 +00:00
|
|
|
<div className="flex space-x-1 items-baseline">
|
|
|
|
<span className="text-gray-500">
|
|
|
|
<FontAwesomeIcon icon={faCube} />
|
|
|
|
</span>
|
|
|
|
<span>Block</span>
|
|
|
|
</div>
|
2021-07-29 18:09:28 +00:00
|
|
|
<div className="text-right flex space-x-1 justify-end items-baseline">
|
|
|
|
<span className="text-gray-500">
|
|
|
|
<FontAwesomeIcon icon={faGasPump} />
|
|
|
|
</span>
|
|
|
|
<span>Gas used</span>
|
|
|
|
</div>
|
2021-07-30 02:05:23 +00:00
|
|
|
<div className="text-right">Gas target</div>
|
|
|
|
<div className="text-right">Base fee</div>
|
|
|
|
<div className="text-right col-span-2 flex space-x-1 justify-end items-baseline">
|
|
|
|
<span className="text-yellow-400">
|
|
|
|
<FontAwesomeIcon icon={faCoins} />
|
|
|
|
</span>
|
|
|
|
<span>Rewards</span>
|
|
|
|
</div>
|
2021-07-29 18:09:28 +00:00
|
|
|
<div className="text-right flex space-x-1 justify-end items-baseline">
|
|
|
|
<span className="text-orange-500">
|
|
|
|
<FontAwesomeIcon icon={faBurn} />
|
|
|
|
</span>
|
|
|
|
<span>Burnt fees</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-29 18:53:52 +00:00
|
|
|
<div className="grid grid-cols-8 px-3 py-3 animate-pulse items-center">
|
|
|
|
<div>
|
|
|
|
<div className="w-20 h-4 bg-gray-200 rounded-md"></div>
|
|
|
|
</div>
|
|
|
|
<div className="justify-self-end">
|
|
|
|
<div className="w-20 h-4 bg-gray-200 rounded-md"></div>
|
|
|
|
</div>
|
|
|
|
<div className="justify-self-end">
|
2021-07-30 02:05:23 +00:00
|
|
|
<div className="w-20 h-4 bg-gray-200 rounded-md"></div>
|
2021-07-29 18:53:52 +00:00
|
|
|
</div>
|
|
|
|
<div className="justify-self-end">
|
2021-07-30 02:05:23 +00:00
|
|
|
<div className="w-10 h-4 bg-gray-200 rounded-md"></div>
|
2021-07-29 18:53:52 +00:00
|
|
|
</div>
|
|
|
|
<div className="justify-self-end col-span-2">
|
|
|
|
<div className="w-56 h-4 bg-gray-200 rounded-md"></div>
|
|
|
|
</div>
|
2021-07-30 02:05:23 +00:00
|
|
|
<div className="justify-self-end">
|
|
|
|
<div className="w-36 h-4 bg-gray-200 rounded-md"></div>
|
|
|
|
</div>
|
2021-07-29 18:53:52 +00:00
|
|
|
</div>
|
|
|
|
{blocks.map((b, i) => (
|
|
|
|
<Transition
|
|
|
|
key={b.hash}
|
|
|
|
show={i < MAX_BLOCK_HISTORY}
|
|
|
|
appear
|
|
|
|
enter="transition transform ease-out duration-500"
|
|
|
|
enterFrom="opacity-0 -translate-y-10"
|
|
|
|
enterTo="opacity-100 translate-y-0"
|
|
|
|
leave="transition transform ease-out duration-1000"
|
|
|
|
leaveFrom="opacity-100 translate-y-0"
|
|
|
|
leaveTo="opacity-0 translate-y-10"
|
|
|
|
>
|
|
|
|
<BlockRecord block={b} />
|
|
|
|
</Transition>
|
2021-07-29 18:09:28 +00:00
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default React.memo(Blocks);
|