9941c9bfaa
* fix: deposits tests, also convert to basic cypress * add new home tests which test redirect to trading page and markets page * chore: replace portfolio page feature with raw cypress * chore: replace market page feature with raw cypress tests * chore: replace home page tests with global.ts for wallet connections * chore: add raw cypress withdrawals tests with mocks * fix: complete withdrawals prompt and add assertion for it * chore: remove unnecessary cypress envs now that we are mocking assets * chore: ignore lint errors temporarily * chore: add mock for deposit page query, add wait for mocked queries to resolve * fix: order of waiting for withdraw page query * fix: validate vega wallet connection * chore: remove rest of page objects and convert trading page feature to regular cypress * fix: assertion on transaction dialog after withdrawal * chore: split withdraw and withdrawals pages into separate files * chore: split trading tests into own files, connect wallet once for deal ticket * feat: convert home page tests to raw cypress
154 lines
3.5 KiB
TypeScript
154 lines
3.5 KiB
TypeScript
import { gql } from '@apollo/client';
|
|
import { Splash } from '@vegaprotocol/ui-toolkit';
|
|
import { useRouter } from 'next/router';
|
|
import React, { useEffect, useState } from 'react';
|
|
import debounce from 'lodash/debounce';
|
|
import { PageQueryContainer } from '../../components/page-query-container';
|
|
import { TradeGrid, TradePanels } from './trade-grid';
|
|
import { t } from '@vegaprotocol/react-helpers';
|
|
import { useGlobalStore } from '../../stores';
|
|
import { LandingDialog } from '@vegaprotocol/market-list';
|
|
import type { Market, MarketVariables } from './__generated__/Market';
|
|
import { Interval } from '@vegaprotocol/types';
|
|
|
|
// Top level page query
|
|
const MARKET_QUERY = gql`
|
|
query Market($marketId: ID!, $interval: Interval!, $since: String!) {
|
|
market(id: $marketId) {
|
|
id
|
|
name
|
|
tradingMode
|
|
state
|
|
decimalPlaces
|
|
data {
|
|
market {
|
|
id
|
|
}
|
|
markPrice
|
|
indicativeVolume
|
|
bestBidVolume
|
|
bestOfferVolume
|
|
bestStaticBidVolume
|
|
bestStaticOfferVolume
|
|
indicativeVolume
|
|
}
|
|
tradableInstrument {
|
|
instrument {
|
|
name
|
|
code
|
|
metadata {
|
|
tags
|
|
}
|
|
}
|
|
}
|
|
marketTimestamps {
|
|
open
|
|
close
|
|
}
|
|
candles(interval: $interval, since: $since) {
|
|
open
|
|
close
|
|
volume
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
const MarketPage = ({ id }: { id?: string }) => {
|
|
const { query } = useRouter();
|
|
const { w } = useWindowSize();
|
|
const store = useGlobalStore();
|
|
|
|
// Default to first marketId query item if found
|
|
const marketId =
|
|
id || (Array.isArray(query.marketId) ? query.marketId[0] : query.marketId);
|
|
|
|
// Cache timestamp for yesterday to prevent full unmount of market page when
|
|
// a rerender occurs
|
|
const [yTimestamp] = useState(() => {
|
|
const yesterday = Math.round(new Date().getTime() / 1000) - 24 * 3600;
|
|
return new Date(yesterday * 1000).toISOString();
|
|
});
|
|
|
|
if (!marketId) {
|
|
return (
|
|
<Splash>
|
|
<p>{t('Not found')}</p>
|
|
</Splash>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<PageQueryContainer<Market, MarketVariables>
|
|
query={MARKET_QUERY}
|
|
options={{
|
|
variables: {
|
|
marketId,
|
|
interval: Interval.I1H,
|
|
since: yTimestamp,
|
|
},
|
|
fetchPolicy: 'network-only',
|
|
}}
|
|
render={({ market }) => {
|
|
if (!market) {
|
|
return <Splash>{t('Market not found')}</Splash>;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{w > 960 ? (
|
|
<TradeGrid market={market} />
|
|
) : (
|
|
<TradePanels market={market} />
|
|
)}
|
|
<LandingDialog
|
|
open={store.landingDialog}
|
|
setOpen={(isOpen) => store.setLandingDialog(isOpen)}
|
|
/>
|
|
</>
|
|
);
|
|
}}
|
|
/>
|
|
);
|
|
};
|
|
|
|
MarketPage.getInitialProps = () => ({
|
|
page: 'market',
|
|
});
|
|
|
|
export default MarketPage;
|
|
|
|
const useWindowSize = () => {
|
|
const [windowSize, setWindowSize] = useState(() => {
|
|
if (typeof window !== 'undefined') {
|
|
return {
|
|
w: window.innerWidth,
|
|
h: window.innerHeight,
|
|
};
|
|
}
|
|
|
|
// Something sensible for server rendered page
|
|
return {
|
|
w: 1200,
|
|
h: 900,
|
|
};
|
|
});
|
|
|
|
useEffect(() => {
|
|
const handleResize = debounce(({ target }) => {
|
|
setWindowSize({
|
|
w: target.innerWidth,
|
|
h: target.innerHeight,
|
|
});
|
|
}, 300);
|
|
|
|
window.addEventListener('resize', handleResize);
|
|
|
|
return () => {
|
|
window.removeEventListener('resize', handleResize);
|
|
};
|
|
}, []);
|
|
|
|
return windowSize;
|
|
};
|