d85c5d7c1f
* feat(#473): add positions metrics data provider * feat(#473) add positions stats * feat(#473) add positions stats * feat(#473): add positions stats * feat(#473): add positions stats * feat(#473): position metrics, test and refactoring * feat(#473): add unit tests to positions table * feat(#473): fix spelling, order positions by updated at desc * feat(#473): protect from division by 0 * feat(#473): fix trading positions e2e tests * feat(#473): fix e2e data mocks * feat(#473): post code review clean up * feat(#993): dependencies handling in data provider * feat(#993): fix e2e tests data mocks * feat(#993): remove position metrics mocks, add market data market id * feat: #994 add price monitoring bounds and candles update interface * fix: move best bid price to diff section * feat(#993): add missing mocks, fix combine function * fix: add insurance pool and calc volume 24h * feat: display some oracle min info, asset id, insurance pool, move open interest and 24hVol * fix: add market-info.cy.ts case * fix: remove # from numbered price monitoring settings * fix: add insurance pool test * fix: format 24hvol * feat(#993): set loading initially to true, add unit tests * feat(#993): cleanup, add comments * feat(#993): remove undefined from client type * fix: remove indicativeVolume and oracleSpecBinding from market info * feat(#993): cosmetic changes * fix: add oracleSpecBinding back * Update libs/deal-ticket/src/components/info-market.tsx Co-authored-by: botond <105208209+notbot00@users.noreply.github.com> * feat: add initial queries * fix: memo yesterday's timestamp * fix: add back info * fix: update query * fix: add view full oracle details link and update mappings * fix: regen code, make link reactnode, fix index.ts * feat: add liquidity lib, refactor info market * fix: remove liquidity query from deal-ticket * feat:(#993): pass informaton about update callback cause * fix: small ui tweaks * fix: display in grid * feat: navigate to oracle by termination id * feat: #491 add use liquidity provision merging * fix: remove logs, add extra check on my liquidity provision * fix: type number trivially inferred from a number literal, remove type annotation * fix: cypress tests and formatting for market info * Update libs/deal-ticket/src/components/market-info/info-market.tsx * fix: use position decimal places for stake and market value proxy * fix: #491 use size/position decimal places for obligation, supplied and commitment amount * fix: add size component and use decimal places * fix: update readme liquidity * fix: #491 add correct asset decimal formatters * Update libs/deal-ticket/src/components/market-info/tooltip-mapping.tsx Co-authored-by: candida-d <62548908+candida-d@users.noreply.github.com> * fix: make link instead of button to open liquidity * fix: #491 add liquidity page, link to trading mode tooltip, tabs hidden or choose active * fix: remove LP dialog, use only link to page * fix: add market id in LP view * fix: follow trade grid design * fix: add one line tabs , remove link styling, remove any, add value formatters * fix: remove falsy check LP undefined * fix: keep date formatter in LP table * fix: add generic type market info, hooks in body function * fix: revert number formatters * fix: use one param only in network params query * fix: use network param in web3 lib * fix: move lp container to trading app * fix: remove resizable panel * feat: add header component, remove isEstimate * chore: remove unnecessary type cast * fix: fix build with children map clone element * chore: lint * fix: move use network params to react helpers * fix: add const for LP tabs * fix: fix formatting on LP page * fix: only show tilde for liquidity monitoring auction end date * fix: market id being rendered twice in market info * chore: fix lint * fix: types for generate withdraw form query * chore: fix intermittent failing withdrawal test * Update libs/deal-ticket/src/components/market-info/info-market.tsx * fix: route to LP and update selected market * fix: add market-info lib * fix: add tooltips to header stat * fix: add overflow-y on div within auto sizer * fix: fix merge conflicts * fix: size and dialog * fix: format target stake and supplied stake * fix: add tooltips ag-grid and fix decimals * fix: overflow on both axes auto-sizer * fix: remove symbol, add to commitment * fix: update tooltips and headers after demo * fix: network switcher background * fix: remove any from market info * fix: integration test * fix: remove e2e test for risk factors for now until grpc error sorted * fix: get liquidity panel by test-id * fix: fix market-info.cy.ts test * fix: liquidity test * f ix: fix link data test id Co-authored-by: Bartłomiej Głownia <bglownia@gmail.com> Co-authored-by: botond <105208209+notbot00@users.noreply.github.com> Co-authored-by: candida-d <62548908+candida-d@users.noreply.github.com> Co-authored-by: Matthew Russell <mattrussell36@gmail.com> Co-authored-by: Joe <joe@vega.xyz>
420 lines
13 KiB
TypeScript
420 lines
13 KiB
TypeScript
import { DealTicketContainer } from '@vegaprotocol/deal-ticket';
|
|
import { MarketInfoContainer } from '@vegaprotocol/market-info';
|
|
import { OrderbookContainer } from '@vegaprotocol/market-depth';
|
|
import { OrderListContainer } from '@vegaprotocol/orders';
|
|
import { FillsContainer } from '@vegaprotocol/fills';
|
|
import { PositionsContainer } from '@vegaprotocol/positions';
|
|
import { TradesContainer } from '@vegaprotocol/trades';
|
|
import { LayoutPriority } from 'allotment';
|
|
import classNames from 'classnames';
|
|
import AutoSizer from 'react-virtualized-auto-sizer';
|
|
import { useState } from 'react';
|
|
import type { ReactNode } from 'react';
|
|
import type { Market_market } from './__generated__/Market';
|
|
import { AccountsContainer } from '@vegaprotocol/accounts';
|
|
import { DepthChartContainer } from '@vegaprotocol/market-depth';
|
|
import { CandlesChartContainer } from '@vegaprotocol/candles-chart';
|
|
import {
|
|
Tab,
|
|
Tabs,
|
|
ResizableGrid,
|
|
ResizableGridPanel,
|
|
ButtonLink,
|
|
Tooltip,
|
|
PriceCellChange,
|
|
Link,
|
|
} from '@vegaprotocol/ui-toolkit';
|
|
import {
|
|
addDecimalsFormatNumber,
|
|
getDateFormat,
|
|
t,
|
|
} from '@vegaprotocol/react-helpers';
|
|
import { SelectMarketPopover } from '@vegaprotocol/market-list';
|
|
import { useAssetDetailsDialogStore } from '@vegaprotocol/assets';
|
|
import { useEnvironment } from '@vegaprotocol/environment';
|
|
import type { CandleClose } from '@vegaprotocol/types';
|
|
import {
|
|
AuctionTrigger,
|
|
AuctionTriggerMapping,
|
|
MarketTradingMode,
|
|
MarketTradingModeMapping,
|
|
} from '@vegaprotocol/types';
|
|
import { TradingModeTooltip } from '../../components/trading-mode-tooltip';
|
|
import { useRouter } from 'next/router';
|
|
|
|
const TradingViews = {
|
|
Candles: CandlesChartContainer,
|
|
Depth: DepthChartContainer,
|
|
Ticket: DealTicketContainer,
|
|
Info: MarketInfoContainer,
|
|
Orderbook: OrderbookContainer,
|
|
Trades: TradesContainer,
|
|
Positions: PositionsContainer,
|
|
Orders: OrderListContainer,
|
|
Collateral: AccountsContainer,
|
|
Fills: FillsContainer,
|
|
};
|
|
|
|
type TradingView = keyof typeof TradingViews;
|
|
|
|
type ExpiryLabelProps = {
|
|
market: Market_market;
|
|
};
|
|
|
|
const ExpiryLabel = ({ market }: ExpiryLabelProps) => {
|
|
if (market.marketTimestamps.close === null) {
|
|
return <>{t('Not time-based')}</>;
|
|
}
|
|
|
|
const closeDate = new Date(market.marketTimestamps.close);
|
|
const isExpired = Date.now() - closeDate.valueOf() > 0;
|
|
const expiryDate = getDateFormat().format(closeDate);
|
|
|
|
return <>{`${isExpired ? `${t('Expired')} ` : ''} ${expiryDate}`}</>;
|
|
};
|
|
|
|
type ExpiryTooltipContentProps = {
|
|
market: Market_market;
|
|
explorerUrl?: string;
|
|
};
|
|
|
|
const ExpiryTooltipContent = ({
|
|
market,
|
|
explorerUrl,
|
|
}: ExpiryTooltipContentProps) => {
|
|
if (market.marketTimestamps.close === null) {
|
|
const oracleId =
|
|
market.tradableInstrument.instrument.product
|
|
.oracleSpecForTradingTermination?.id;
|
|
|
|
return (
|
|
<>
|
|
<p data-testid="expiry-tool-tip" className="mb-2">
|
|
{t(
|
|
'This market expires when triggered by its oracle, not on a set date.'
|
|
)}
|
|
</p>
|
|
{explorerUrl && oracleId && (
|
|
<Link href={`${explorerUrl}/oracles#${oracleId}`} target="_blank">
|
|
{t('View oracle specification')}
|
|
</Link>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
interface TradeMarketHeaderProps {
|
|
market: Market_market;
|
|
onSelect: (marketId: string) => void;
|
|
}
|
|
|
|
export const TradeMarketHeader = ({
|
|
market,
|
|
onSelect,
|
|
}: TradeMarketHeaderProps) => {
|
|
const { VEGA_EXPLORER_URL } = useEnvironment();
|
|
const { setAssetDetailsDialogOpen, setAssetDetailsDialogSymbol } =
|
|
useAssetDetailsDialogStore();
|
|
|
|
const candlesClose: string[] = (market?.candles || [])
|
|
.map((candle) => candle?.close)
|
|
.filter((c): c is CandleClose => c !== null);
|
|
const hasExpiry = market.marketTimestamps.close !== null;
|
|
const symbol =
|
|
market.tradableInstrument.instrument.product?.settlementAsset?.symbol;
|
|
|
|
const itemClass =
|
|
'min-w-min w-[120px] whitespace-nowrap pb-3 px-4 border-l border-neutral-300 dark:border-neutral-700';
|
|
const itemHeading = 'text-neutral-400';
|
|
const { push } = useRouter();
|
|
|
|
return (
|
|
<header className="w-screen xl:px-4 pt-4 border-b border-neutral-300 dark:border-neutral-700">
|
|
<div className="xl:flex xl:gap-4 items-start">
|
|
<div className="px-4 mb-2 xl:mb-0">
|
|
<SelectMarketPopover
|
|
marketName={market.tradableInstrument.instrument.name}
|
|
onSelect={onSelect}
|
|
/>
|
|
</div>
|
|
<div
|
|
data-testid="market-summary"
|
|
className="flex flex-nowrap items-start xl:flex-1 w-full overflow-x-auto text-xs "
|
|
>
|
|
<div className={itemClass}>
|
|
<div className={itemHeading}>{t('Expiry')}</div>
|
|
<Tooltip
|
|
align="start"
|
|
description={
|
|
<ExpiryTooltipContent
|
|
market={market}
|
|
explorerUrl={VEGA_EXPLORER_URL}
|
|
/>
|
|
}
|
|
>
|
|
<div
|
|
data-testid="trading-expiry"
|
|
className={classNames({
|
|
'underline decoration-dashed': !hasExpiry,
|
|
})}
|
|
>
|
|
<ExpiryLabel market={market} />
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
<div className={itemClass}>
|
|
<div className={itemHeading}>{t('Change (24h)')}</div>
|
|
<PriceCellChange
|
|
candles={candlesClose}
|
|
decimalPlaces={market.decimalPlaces}
|
|
/>
|
|
</div>
|
|
<div className={itemClass}>
|
|
<div className={itemHeading}>{t('Volume')}</div>
|
|
<div data-testid="trading-volume">
|
|
{market.data && market.data.indicativeVolume !== '0'
|
|
? addDecimalsFormatNumber(
|
|
market.data.indicativeVolume,
|
|
market.positionDecimalPlaces
|
|
)
|
|
: '-'}
|
|
</div>
|
|
</div>
|
|
|
|
<div className={itemClass}>
|
|
<div className={itemHeading}>{t('Trading mode')}</div>
|
|
<Tooltip
|
|
align="start"
|
|
description={
|
|
<TradingModeTooltip
|
|
market={market}
|
|
onSelect={(marketId: string) => {
|
|
onSelect(marketId);
|
|
push(`/liquidity/${marketId}`);
|
|
}}
|
|
/>
|
|
}
|
|
>
|
|
<div data-testid="trading-mode">
|
|
{market.tradingMode ===
|
|
MarketTradingMode.TRADING_MODE_MONITORING_AUCTION &&
|
|
market.data?.trigger &&
|
|
market.data.trigger !==
|
|
AuctionTrigger.AUCTION_TRIGGER_UNSPECIFIED
|
|
? `${MarketTradingModeMapping[market.tradingMode]}
|
|
- ${AuctionTriggerMapping[market.data.trigger]}`
|
|
: MarketTradingModeMapping[market.tradingMode]}
|
|
</div>
|
|
</Tooltip>
|
|
</div>
|
|
<div className={itemClass}>
|
|
<div className={itemHeading}>{t('Price')}</div>
|
|
<div data-testid="mark-price">
|
|
{market.data && market.data.markPrice !== '0'
|
|
? addDecimalsFormatNumber(
|
|
market.data.markPrice,
|
|
market.decimalPlaces
|
|
)
|
|
: '-'}
|
|
</div>
|
|
</div>
|
|
{symbol && (
|
|
<div className={itemClass}>
|
|
<div className={itemHeading}>{t('Settlement asset')}</div>
|
|
<div data-testid="trading-mode">
|
|
<ButtonLink
|
|
onClick={() => {
|
|
setAssetDetailsDialogOpen(true);
|
|
setAssetDetailsDialogSymbol(symbol);
|
|
}}
|
|
>
|
|
{symbol}
|
|
</ButtonLink>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
};
|
|
|
|
interface TradeGridProps {
|
|
market: Market_market;
|
|
onSelect: (marketId: string) => void;
|
|
}
|
|
|
|
export const TradeGrid = ({ market, onSelect }: TradeGridProps) => {
|
|
const { push } = useRouter();
|
|
return (
|
|
<div className="h-full grid grid-rows-[min-content_1fr]">
|
|
<TradeMarketHeader market={market} onSelect={onSelect} />
|
|
<ResizableGrid vertical={true}>
|
|
<ResizableGridPanel minSize={75} priority={LayoutPriority.High}>
|
|
<ResizableGrid proportionalLayout={false} minSize={200}>
|
|
<ResizableGridPanel
|
|
priority={LayoutPriority.High}
|
|
minSize={200}
|
|
preferredSize="50%"
|
|
>
|
|
<TradeGridChild>
|
|
<Tabs>
|
|
<Tab id="candles" name={t('Candles')}>
|
|
<TradingViews.Candles marketId={market.id} />
|
|
</Tab>
|
|
<Tab id="depth" name={t('Depth')}>
|
|
<TradingViews.Depth marketId={market.id} />
|
|
</Tab>
|
|
</Tabs>
|
|
</TradeGridChild>
|
|
</ResizableGridPanel>
|
|
<ResizableGridPanel
|
|
priority={LayoutPriority.Low}
|
|
preferredSize="25%"
|
|
minSize={300}
|
|
>
|
|
<TradeGridChild>
|
|
<Tabs>
|
|
<Tab id="ticket" name={t('Ticket')}>
|
|
<TradingViews.Ticket marketId={market.id} />
|
|
</Tab>
|
|
<Tab id="info" name={t('Info')}>
|
|
<TradingViews.Info
|
|
marketId={market.id}
|
|
onSelect={(id: string) => {
|
|
onSelect(id);
|
|
push(`/liquidity/${id}`);
|
|
}}
|
|
/>
|
|
</Tab>
|
|
</Tabs>
|
|
</TradeGridChild>
|
|
</ResizableGridPanel>
|
|
<ResizableGridPanel
|
|
priority={LayoutPriority.Low}
|
|
preferredSize="25%"
|
|
minSize={200}
|
|
>
|
|
<TradeGridChild>
|
|
<Tabs>
|
|
<Tab id="orderbook" name={t('Orderbook')}>
|
|
<TradingViews.Orderbook marketId={market.id} />
|
|
</Tab>
|
|
<Tab id="trades" name={t('Trades')}>
|
|
<TradingViews.Trades marketId={market.id} />
|
|
</Tab>
|
|
</Tabs>
|
|
</TradeGridChild>
|
|
</ResizableGridPanel>
|
|
</ResizableGrid>
|
|
</ResizableGridPanel>
|
|
<ResizableGridPanel
|
|
priority={LayoutPriority.Low}
|
|
preferredSize="33%"
|
|
minSize={50}
|
|
>
|
|
<TradeGridChild>
|
|
<Tabs>
|
|
<Tab id="positions" name={t('Positions')}>
|
|
<TradingViews.Positions />
|
|
</Tab>
|
|
<Tab id="orders" name={t('Orders')}>
|
|
<TradingViews.Orders />
|
|
</Tab>
|
|
<Tab id="fills" name={t('Fills')}>
|
|
<TradingViews.Fills />
|
|
</Tab>
|
|
<Tab id="accounts" name={t('Collateral')}>
|
|
<TradingViews.Collateral />
|
|
</Tab>
|
|
</Tabs>
|
|
</TradeGridChild>
|
|
</ResizableGridPanel>
|
|
</ResizableGrid>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
interface TradeGridChildProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
const TradeGridChild = ({ children }: TradeGridChildProps) => {
|
|
return (
|
|
<section className="h-full">
|
|
<AutoSizer>
|
|
{({ width, height }) => (
|
|
<div style={{ width, height }} className="overflow-auto">
|
|
{children}
|
|
</div>
|
|
)}
|
|
</AutoSizer>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
interface TradePanelsProps {
|
|
market: Market_market;
|
|
onSelect: (marketId: string) => void;
|
|
}
|
|
|
|
export const TradePanels = ({ market, onSelect }: TradePanelsProps) => {
|
|
const { push } = useRouter();
|
|
const [view, setView] = useState<TradingView>('Candles');
|
|
|
|
const renderView = () => {
|
|
const Component = TradingViews[view];
|
|
|
|
if (!Component) {
|
|
throw new Error(`No component for view: ${view}`);
|
|
}
|
|
|
|
return (
|
|
<Component
|
|
marketId={market.id}
|
|
onSelect={(id: string) => {
|
|
onSelect(id);
|
|
push(`/liquidity/${id}`);
|
|
}}
|
|
/>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className="h-full grid grid-rows-[min-content_1fr_min-content]">
|
|
<TradeMarketHeader market={market} onSelect={onSelect} />
|
|
<div className="h-full">
|
|
<AutoSizer>
|
|
{({ width, height }) => (
|
|
<div style={{ width, height }} className="overflow-auto">
|
|
{renderView()}
|
|
</div>
|
|
)}
|
|
</AutoSizer>
|
|
</div>
|
|
<div className="flex flex-nowrap overflow-x-auto max-w-full border-t border-neutral-300 dark:border-neutral-700">
|
|
{Object.keys(TradingViews).map((key) => {
|
|
const isActive = view === key;
|
|
const className = classNames('p-4 min-w-[100px] capitalize', {
|
|
'text-black dark:text-vega-yellow': isActive,
|
|
'bg-neutral-200 dark:bg-neutral-800': isActive,
|
|
});
|
|
return (
|
|
<button
|
|
data-testid={key}
|
|
onClick={() => setView(key as TradingView)}
|
|
className={className}
|
|
key={key}
|
|
>
|
|
{key}
|
|
</button>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|