Skip to content

Commit

Permalink
Merge pull request #9 from xops/fix/url-override
Browse files Browse the repository at this point in the history
fix: url override
  • Loading branch information
shanejonas authored Aug 12, 2021
2 parents 7913df7 + f905f66 commit 2039158
Show file tree
Hide file tree
Showing 4 changed files with 180 additions and 60 deletions.
38 changes: 35 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

178 changes: 129 additions & 49 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
import { AppBar, CssBaseline, Toolbar, Typography, IconButton, Grid, InputBase, Tooltip, CircularProgress } from "@material-ui/core";
import {
AppBar,
CssBaseline,
Toolbar,
Typography,
IconButton,
Grid,
InputBase,
Tooltip,
CircularProgress,
} from "@material-ui/core";
import { ThemeProvider } from "@material-ui/styles";
import Link from "@material-ui/core/Link";
import React, { Dispatch, ChangeEvent, KeyboardEvent, useState, useEffect } from "react";
import React, {
Dispatch,
ChangeEvent,
KeyboardEvent,
useState,
useEffect,
} from "react";
import { Link as RouterLink, Router, Route, Switch } from "react-router-dom";
import useDarkMode from "use-dark-mode";
import "./App.css";
Expand All @@ -22,7 +38,11 @@ import { useTranslation } from "react-i18next";
import LanguageMenu from "./containers/LanguageMenu";
import { createBrowserHistory } from "history";
import ChainDropdown from "./components/ChainDropdown/ChainDropdown";
import { StringParam, QueryParamProvider, useQueryParams } from "use-query-params";
import {
StringParam,
QueryParamProvider,
useQueryParams,
} from "use-query-params";
import { createPreserveQueryHistory } from "./helpers/createPreserveHistory";
import BlockRawContainer from "./containers/BlockRawContainer";
import TransactionRawContainer from "./containers/TransactionRawContainer";
Expand All @@ -32,8 +52,12 @@ import { IChain as Chain } from "./models/chain";
import useChainListStore from "./stores/useChainListStore";
import useEthRPCStore from "./stores/useEthRPCStore";
import AddChain from "./components/AddChain/AddChain";
import { NetworkWifi } from "@material-ui/icons";

const history = createPreserveQueryHistory(createBrowserHistory, ["network", "rpcUrl"])();
const history = createPreserveQueryHistory(createBrowserHistory, [
"network",
"rpcUrl",
])();

function App(props: any) {
const { t } = useTranslation();
Expand All @@ -45,13 +69,23 @@ function App(props: any) {
const [chains, setChains] = useChainListStore<[Chain[], Dispatch<Chain[]>]>();
const [ethRPC, setEthRPCChain] = useEthRPCStore();

const [addChainDialogIsOpen, setAddChainDialogIsOpen] = useState<boolean>(false);
const [addChainDialogIsOpen, setAddChainDialogIsOpen] =
useState<boolean>(false);

// default the selectedChain once chain list loads
useEffect(() => {
if (selectedChain !== undefined) { return; }
if (chains === undefined) { return; }
if (chains.length === 0) { return; }
if (selectedChain !== undefined) {
return;
}
if (chains === undefined) {
return;
}
if (chains.length === 0) {
return;
}
if (query.rpcUrl) {
return;
}

setSelectedChain(chains[0]);

Expand Down Expand Up @@ -80,12 +114,14 @@ function App(props: any) {
}

if (chains && query.network) {
const foundChain = chains.find((chain: Chain) => chain.name === query.network);
const foundChain = chains.find(
(chain: Chain) => chain.name === query.network
);
setSelectedChain(foundChain);
} else {
setSelectedChain(chains[0]);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [chains, query.network]);

// keeps the window.location in sync with selected network
Expand All @@ -102,7 +138,7 @@ function App(props: any) {
search: `?network=${name}`,
});
}
// eslint-disable-next-line react-hooks/exhaustive-deps
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [selectedChain, setQuery]);

// keep selected chain in sync with the current ethrpc instance
Expand All @@ -118,12 +154,16 @@ function App(props: any) {
}
}, [ethRPC]);

useInterval(() => {
if (ethRPC) {
ethRPC.stopBatch();
ethRPC.startBatch();
}
}, 100, true);
useInterval(
() => {
if (ethRPC) {
ethRPC.stopBatch();
ethRPC.startBatch();
}
},
100,
true
);

const isAddress = (q: string): boolean => {
const re = new RegExp(ETHJSONSpec.components.schemas.Address.pattern);
Expand All @@ -141,7 +181,9 @@ function App(props: any) {
};

const handleSearch = async (qry: string | undefined) => {
if (qry === undefined) { return; }
if (qry === undefined) {
return;
}
const q = qry.trim();
if (isAddress(q)) {
history.push(`/address/${q}`);
Expand Down Expand Up @@ -169,7 +211,10 @@ function App(props: any) {
}
}
if (isBlockNumber(q)) {
const block = await ethRPC.eth_getBlockByNumber(`0x${parseInt(q, 10).toString(16)}`, false);
const block = await ethRPC.eth_getBlockByNumber(
`0x${parseInt(q, 10).toString(16)}`,
false
);
if (block) {
history.push(`/block/${block.hash}`);
}
Expand All @@ -195,14 +240,26 @@ function App(props: any) {
<ThemeProvider theme={theme}>
<AppBar position="sticky" color="default" elevation={0}>
<Toolbar>
<Grid justify="space-between" alignItems="center" alignContent="center" container>
<Grid
justify="space-between"
alignItems="center"
alignContent="center"
container
>
<Grid item style={{ marginTop: "8px" }}>
<Link
component={({ className, children }: { children: any, className: string }) => (
component={({
className,
children,
}: {
children: any;
className: string;
}) => (
<RouterLink className={className} to={"/"}>
{children}
</RouterLink>
)}>
)}
>
<Grid container>
<Grid>
<img
Expand All @@ -222,22 +279,20 @@ function App(props: any) {
</Grid>
<Grid item md={6} xs={12}>
<InputBase
placeholder={t("Enter an Address, Transaction Hash or Block Number")}
onKeyDown={
(event: KeyboardEvent<HTMLInputElement>) => {
if (event.keyCode === 13) {
handleSearch(search);
}
placeholder={t(
"Enter an Address, Transaction Hash or Block Number"
)}
onKeyDown={(event: KeyboardEvent<HTMLInputElement>) => {
if (event.keyCode === 13) {
handleSearch(search);
}
}
onChange={
(event: ChangeEvent<HTMLInputElement>) => {
if (event.target.value) {
const {value} = event.target;
setSearch(value as any);
}
}}
onChange={(event: ChangeEvent<HTMLInputElement>) => {
if (event.target.value) {
const { value } = event.target;
setSearch(value as any);
}
}
}}
fullWidth
style={{
background: "rgba(0,0,0,0.1)",
Expand All @@ -248,11 +303,24 @@ function App(props: any) {
/>
</Grid>
<Grid item>
{selectedChain ? <ChainDropdown
chains={chains}
onChange={setSelectedChain}
selected={selectedChain} />
: <CircularProgress />}
{selectedChain ? (
<ChainDropdown
chains={chains}
onChange={setSelectedChain}
selected={selectedChain}
/>
) : (
<>
{query && query.rpcUrl && (
<Tooltip title={query.rpcUrl}>
<IconButton >
<NetworkWifi />
</IconButton>
</Tooltip>
)}
{!query.rpcUrl && <CircularProgress />}
</>
)}
<Tooltip title={t("Add custom chain") as string}>
<IconButton onClick={openAddChainModal}>
<PlaylistAddIcon />
Expand All @@ -261,17 +329,22 @@ function App(props: any) {
<LanguageMenu />
<Tooltip title={t("JSON-RPC API Documentation") as string}>
<IconButton
onClick={() =>
window.open("https://playground.open-rpc.org/?schemaUrl=https://raw.githubusercontent.com/etclabscore/ethereum-json-rpc-specification/master/openrpc.json") //tslint:disable-line
}>
onClick={
() =>
window.open(
"https://playground.open-rpc.org/?schemaUrl=https://raw.githubusercontent.com/etclabscore/ethereum-json-rpc-specification/master/openrpc.json"
) //tslint:disable-line
}
>
<NotesIcon />
</IconButton>
</Tooltip>
<Tooltip title={t("Expedition Github") as string}>
<IconButton
onClick={() =>
window.open("https://github.com/xops/expedition")
}>
}
>
<CodeIcon />
</IconButton>
</Tooltip>
Expand All @@ -294,20 +367,27 @@ function App(props: any) {
<CssBaseline />
<Switch>
<Route path={"/"} component={Dashboard} exact={true} />
<Route path={"/stats/miners"} component={MinerStatsPage} exact={true} />
<Route
path={"/stats/miners"}
component={MinerStatsPage}
exact={true}
/>
<Route path={"/stats/miners/:block"} component={MinerStatsPage} />
<Route path={"/block/:hash/raw"} component={BlockRawContainer} />
<Route path={"/block/:hash"} component={Block} />
<Route path={"/blocks/:number"} component={NodeView} />
<Route path={"/tx/:hash/raw"} component={TransactionRawContainer} />
<Route
path={"/tx/:hash/raw"}
component={TransactionRawContainer}
/>
<Route path={"/tx/:hash"} component={Transaction} />
<Route path={"/address/:address/:block"} component={Address} />
<Route path={"/address/:address"} component={Address} />
</Switch>
</QueryParamProvider>
</div>
</ThemeProvider >
</Router >
</ThemeProvider>
</Router>
);
}

Expand Down
Loading

0 comments on commit 2039158

Please sign in to comment.