40527e9bc8
* chore: combine data instead of providing three lists in marketListProvider * chore: move markets-libs lib queries to .graphql files * chore: fix markets queries names in e2e tests * chore: add missing variables to simple market list candles query * chore: fix trading home e2e * chore: change liquidity-provision-dashboard serve port to allow parell e2e tests
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import { marketsWithDataProvider } from '@vegaprotocol/market-list';
|
|
import {
|
|
addDecimalsFormatNumber,
|
|
titlefy,
|
|
useDataProvider,
|
|
} from '@vegaprotocol/react-helpers';
|
|
import { AsyncRenderer } from '@vegaprotocol/ui-toolkit';
|
|
import { useRouter } from 'next/router';
|
|
import { useEffect } from 'react';
|
|
import { useGlobalStore } from '../stores';
|
|
|
|
export function Index() {
|
|
const { replace } = useRouter();
|
|
// The default market selected in the platform behind the overlay
|
|
// should be the oldest market that is currently trading in us mode(i.e. not in auction).
|
|
const { data, error, loading } = useDataProvider({
|
|
dataProvider: marketsWithDataProvider,
|
|
});
|
|
const { riskNoticeDialog, update } = useGlobalStore((store) => ({
|
|
riskNoticeDialog: store.riskNoticeDialog,
|
|
update: store.update,
|
|
}));
|
|
|
|
useEffect(() => {
|
|
update({ landingDialog: true });
|
|
|
|
if (data) {
|
|
const marketId = data[0]?.id;
|
|
const marketName = data[0]?.tradableInstrument.instrument.name;
|
|
const marketPrice = data[0]?.data?.markPrice
|
|
? addDecimalsFormatNumber(
|
|
data[0]?.data?.markPrice,
|
|
data[0]?.decimalPlaces
|
|
)
|
|
: null;
|
|
const pageTitle = titlefy([marketName, marketPrice]);
|
|
|
|
if (marketId) {
|
|
replace(`/markets/${marketId}`);
|
|
update({ marketId, pageTitle });
|
|
}
|
|
// Fallback to the markets list page
|
|
else {
|
|
replace('/markets');
|
|
}
|
|
}
|
|
}, [data, replace, riskNoticeDialog, update]);
|
|
|
|
return (
|
|
<AsyncRenderer data={data} loading={loading} error={error}>
|
|
{/* Render a loading and error state but we will redirect if markets are found */}
|
|
{null}
|
|
</AsyncRenderer>
|
|
);
|
|
}
|
|
|
|
Index.getInitialProps = () => ({
|
|
page: 'home',
|
|
});
|
|
|
|
export default Index;
|