import React, { useState } from 'react'; import { useRouter } from 'next/router'; import { makeStyles } from '@mui/core/styles'; import Typography from '@mui/core/Typography'; import Box from '@mui/core/Box'; import Grid from '@mui/core/Grid'; import Paper from '@mui/core/Paper'; import TotalAssetsPie from '../components/TotalAssetsPie'; import TotalAssetSummary from '../components/TotalAssetsSummary'; import TotalAssetDetails from '../components/TotalAssetsDetails'; import TradingVolumePanel from '../components/TradingVolumePanel'; import ExchangeSessionTabPanel from '../components/ExchangeSessionTabPanel'; import DashboardLayout from '../layouts/DashboardLayout'; import { queryAssets, querySessions } from '../api/bbgo'; import { ChainId, Config, DAppProvider } from '@usedapp/core'; const useStyles = makeStyles((theme) => ({ totalAssetsSummary: { margin: theme.spacing(2), padding: theme.spacing(2), }, grid: { flexGrow: 1, }, control: { padding: theme.spacing(2), }, })); const config: Config = { readOnlyChainId: ChainId.Mainnet, readOnlyUrls: { [ChainId.Mainnet]: 'https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161', }, }; // props are pageProps passed from _app.tsx export default function Home() { const classes = useStyles(); const router = useRouter(); const [assets, setAssets] = useState({}); const [sessions, setSessions] = React.useState([]); React.useEffect(() => { querySessions((sessions) => { if (sessions && sessions.length > 0) { setSessions(sessions); queryAssets(setAssets); } else { router.push('/setup'); } }).catch((err) => { console.error(err); }); }, [router]); if (sessions.length == 0) { return ( Loading ); } console.log('index: assets', assets); return ( Total Assets
); }