4756ae597a
* test: test for market conditions tool tip * fix: failing to click market dropdown
202 lines
5.7 KiB
TypeScript
202 lines
5.7 KiB
TypeScript
import type { ReactNode } from 'react';
|
|
import {
|
|
t,
|
|
getDateTimeFormat,
|
|
addDecimalsFormatNumber,
|
|
} from '@vegaprotocol/react-helpers';
|
|
import { Link } from '@vegaprotocol/ui-toolkit';
|
|
import { MarketTradingMode, AuctionTrigger } from '@vegaprotocol/types';
|
|
import type { Market_market } from '../../pages/markets/__generated__/Market';
|
|
|
|
type MarketDataGridProps = {
|
|
grid: {
|
|
label: string;
|
|
value?: ReactNode;
|
|
isEstimate?: boolean;
|
|
}[];
|
|
};
|
|
|
|
const MarketDataGrid = ({ grid }: MarketDataGridProps) => {
|
|
return (
|
|
<>
|
|
{grid.map(
|
|
({ label, value, isEstimate }, index) =>
|
|
value && (
|
|
<div key={index} className="grid grid-cols-2">
|
|
<span data-testid="tooltip-label">{label}</span>
|
|
<span data-testid="tooltip-value">
|
|
{isEstimate && <span className="ml-[-0.625em]">{'~'}</span>}
|
|
{value}
|
|
</span>
|
|
</div>
|
|
)
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
const formatStake = (value: string, market: Market_market) => {
|
|
const formattedValue = addDecimalsFormatNumber(
|
|
value,
|
|
market.positionDecimalPlaces
|
|
);
|
|
const asset =
|
|
market.tradableInstrument.instrument.product.settlementAsset.symbol;
|
|
return `${formattedValue} ${asset}`;
|
|
};
|
|
|
|
const compileGridData = (market: Market_market) => {
|
|
const grid: MarketDataGridProps['grid'] = [];
|
|
const isLiquidityMonitoringAuction =
|
|
market.tradingMode === MarketTradingMode.MonitoringAuction &&
|
|
market.data?.trigger === AuctionTrigger.Liquidity;
|
|
|
|
if (!market.data) return grid;
|
|
|
|
if (market.data?.auctionStart) {
|
|
grid.push({
|
|
label: t('Auction start'),
|
|
value: getDateTimeFormat().format(new Date(market.data.auctionStart)),
|
|
});
|
|
}
|
|
|
|
if (market.data?.auctionEnd) {
|
|
grid.push({
|
|
label: isLiquidityMonitoringAuction
|
|
? t('Est auction end')
|
|
: t('Auction end'),
|
|
value: getDateTimeFormat().format(new Date(market.data.auctionEnd)),
|
|
isEstimate: isLiquidityMonitoringAuction ? true : false,
|
|
});
|
|
}
|
|
|
|
if (isLiquidityMonitoringAuction && market.data?.targetStake) {
|
|
grid.push({
|
|
label: t('Target liquidity'),
|
|
value: formatStake(market.data.targetStake, market),
|
|
});
|
|
}
|
|
|
|
if (isLiquidityMonitoringAuction && market.data?.suppliedStake) {
|
|
grid.push({
|
|
label: t('Current liquidity'),
|
|
// @TODO: link this to liquidity view when https://github.com/vegaprotocol/frontend-monorepo/issues/491 is done
|
|
value: formatStake(market.data.suppliedStake, market),
|
|
});
|
|
}
|
|
|
|
if (market.data?.indicativePrice) {
|
|
grid.push({
|
|
label: t('Est uncrossing price'),
|
|
value: addDecimalsFormatNumber(
|
|
market.data.indicativePrice,
|
|
market.positionDecimalPlaces
|
|
),
|
|
isEstimate: true,
|
|
});
|
|
}
|
|
|
|
if (market.data?.indicativeVolume) {
|
|
grid.push({
|
|
label: t('Est uncrossing vol'),
|
|
value: addDecimalsFormatNumber(
|
|
market.data.indicativeVolume,
|
|
market.positionDecimalPlaces
|
|
),
|
|
isEstimate: true,
|
|
});
|
|
}
|
|
|
|
return grid;
|
|
};
|
|
|
|
type TradingModeTooltipProps = {
|
|
market: Market_market;
|
|
};
|
|
|
|
export const TradingModeTooltip = ({ market }: TradingModeTooltipProps) => {
|
|
switch (market.tradingMode) {
|
|
case MarketTradingMode.Continuous: {
|
|
return (
|
|
<>
|
|
{t(
|
|
'This is the standard trading mode where trades are executed whenever orders are received.'
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
case MarketTradingMode.OpeningAuction: {
|
|
return (
|
|
<>
|
|
<p className="mb-16">
|
|
<span>
|
|
{t(
|
|
'This new market is in an opening auction to determine a fair mid-price before starting continuous trading.'
|
|
)}
|
|
</span>{' '}
|
|
<Link
|
|
href="https://docs.fairground.vega.xyz/docs/trading-questions/#auctions-what-happens-in-an-opening-auction"
|
|
target="_blank"
|
|
>
|
|
{t('Find out more')}
|
|
</Link>
|
|
</p>
|
|
<MarketDataGrid grid={compileGridData(market)} />
|
|
</>
|
|
);
|
|
}
|
|
case MarketTradingMode.MonitoringAuction: {
|
|
switch (market.data?.trigger) {
|
|
case AuctionTrigger.Liquidity: {
|
|
return (
|
|
<>
|
|
<p data-testid="tooltip-market-info" className="mb-16">
|
|
<span>
|
|
{t(
|
|
'This market is in auction until it reaches sufficient liquidity.'
|
|
)}
|
|
</span>{' '}
|
|
<Link
|
|
href="https://docs.fairground.vega.xyz/docs/trading-questions/#auctions-what-is-a-liquidity-monitoring-auction"
|
|
target="_blank"
|
|
>
|
|
{t('Find out more')}
|
|
</Link>
|
|
</p>
|
|
<MarketDataGrid grid={compileGridData(market)} />
|
|
</>
|
|
);
|
|
}
|
|
case AuctionTrigger.Price: {
|
|
return (
|
|
<>
|
|
<p className="mb-16">
|
|
<span>
|
|
{t('This market is in auction due to high price volatility.')}
|
|
</span>{' '}
|
|
<Link
|
|
href="https://docs.fairground.vega.xyz/docs/trading-questions/#auctions-what-is-a-price-monitoring-auction"
|
|
target="_blank"
|
|
>
|
|
{t('Find out more')}
|
|
</Link>
|
|
</p>
|
|
<MarketDataGrid grid={compileGridData(market)} />
|
|
</>
|
|
);
|
|
}
|
|
default: {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
case MarketTradingMode.NoTrading: {
|
|
return <>{t('No trading enabled for this market.')}</>;
|
|
}
|
|
case MarketTradingMode.BatchAuction:
|
|
default: {
|
|
return null;
|
|
}
|
|
}
|
|
};
|