be3b416176
* fix: dont use localstorage for navigation, remove query params for tabs * chore: lint * fix: revert to using url rather than data test id * chore: lint * chore: remove arrow down ref from markets page object
68 lines
1.8 KiB
TypeScript
68 lines
1.8 KiB
TypeScript
import { gql, useQuery } from '@apollo/client';
|
|
import { MarketTradingMode } from '@vegaprotocol/types';
|
|
import { AsyncRenderer } from '@vegaprotocol/ui-toolkit';
|
|
import sortBy from 'lodash/sortBy';
|
|
import { useRouter } from 'next/router';
|
|
import { useEffect } from 'react';
|
|
import { useGlobalStore } from '../stores';
|
|
import type { MarketsLanding } from './__generated__/MarketsLanding';
|
|
|
|
const MARKETS_QUERY = gql`
|
|
query MarketsLanding {
|
|
markets {
|
|
id
|
|
tradingMode
|
|
marketTimestamps {
|
|
open
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
const marketList = ({ markets }: MarketsLanding) =>
|
|
sortBy(
|
|
markets?.filter(
|
|
({ marketTimestamps, tradingMode }) =>
|
|
marketTimestamps.open && tradingMode === MarketTradingMode.Continuous
|
|
) || [],
|
|
'marketTimestamps.open',
|
|
'id'
|
|
);
|
|
|
|
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 continuous mode(i.e. not in auction).
|
|
const { data, error, loading } = useQuery<MarketsLanding>(MARKETS_QUERY);
|
|
const setLandingDialog = useGlobalStore((state) => state.setLandingDialog);
|
|
|
|
useEffect(() => {
|
|
if (data) {
|
|
const marketId = marketList(data)[0]?.id;
|
|
|
|
// If a default market is found, go to it with the landing dialog open
|
|
if (marketId) {
|
|
setLandingDialog(true);
|
|
replace(`/markets/${marketId}`);
|
|
}
|
|
// Fallback to the markets list page
|
|
else {
|
|
replace('/markets');
|
|
}
|
|
}
|
|
}, [data, replace, setLandingDialog]);
|
|
|
|
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;
|