feat: market list mega dropdown (rich popover) (#889)
* feat: use MarketList query only
* fix: remove Market.ts from index
* feat: 30 refactor dialog, market list, change query
* feat: #30 add indicativeVolume, total fees, tooltip, large dialog, tooltip accepts html description
* fix: #30 total fees display in tooltip
* fix: #30 toggle title on dialog open
* fix: #30 fix order, price, high, low utils
* fix: #30 fix test for market utils
* feat: #30 add popover with markets to select
* feat: #30 storybook popover
* feat: #30 remove border on trigger and add some other classes
* fix: #30 fix format check with format:write
* feat: #30 add tooltip on taker fee
* feat: #30 add tooltip on taker fee
* fix: #30 format on select market list
* fix: #30 remove unknown cast in test mock data
* fix: #30 show markets where you have open positions
* fix: #30 double check if open positions
* fix: #30 dialog has only small/large sizes
* feat: #30 add border on trigger and change padding and no wrap
* fix: #30 if fees or factors are not found
* fix: #30 remove markets.cy tests as markets page is now gone
* fix #30 remove view full market list test
* fix: #30 add rotating arrow on market title
* fix: #30 add ease-in-out on popover
* fix: #30 add ease-in-out on popover
* fix: #30 align select a market table
* fix: #30 select a market title
* fix: #30 select a market title
* fix: #30 fix any validateDOMnesting issues
* fix: #30 show loading market data
* fix: #30 add list of header columns
* fix: #30 add list of header columns
* fix: #30 small refactoring after review
* fix: #30 update bold undreline class names
* fix: #30 add large-mobile size
* feat: #30 refactor select markets tables to render array of columns
* fix: #30 remove size from select market dialog
* fix: #30 add extra file for columns
* fix: #30 update formtting
* fix: #30 make sure popup closes on same market navigation
* fix: rename market-utils, add calcCandle methods, store market id on select
* fix: useMemo ondata and marketPositionData + orderbook stories fix
* feat: #30 add open volume positions
* fix: add market summary back
* fix: update formatting
* fix: use currentcolor on arrow
* fix: create all markets page
* fix: add overflow-y auto
* fix: enlarge select market to get started dialog
* fix: revert markets container
* fix: use query to fix flickering on position markets
* fix: edit unordered list in tooltips
* fix: fix tooltip table
* fix: fix home.cy.ts
* chore: skip /markets tests
2022-08-11 11:56:35 +00:00
|
|
|
import 'allotment/dist/style.css';
|
2022-06-22 19:08:12 +00:00
|
|
|
import {
|
|
|
|
DealTicketContainer,
|
|
|
|
MarketInfoContainer,
|
|
|
|
} from '@vegaprotocol/deal-ticket';
|
feat: market list mega dropdown (rich popover) (#889)
* feat: use MarketList query only
* fix: remove Market.ts from index
* feat: 30 refactor dialog, market list, change query
* feat: #30 add indicativeVolume, total fees, tooltip, large dialog, tooltip accepts html description
* fix: #30 total fees display in tooltip
* fix: #30 toggle title on dialog open
* fix: #30 fix order, price, high, low utils
* fix: #30 fix test for market utils
* feat: #30 add popover with markets to select
* feat: #30 storybook popover
* feat: #30 remove border on trigger and add some other classes
* fix: #30 fix format check with format:write
* feat: #30 add tooltip on taker fee
* feat: #30 add tooltip on taker fee
* fix: #30 format on select market list
* fix: #30 remove unknown cast in test mock data
* fix: #30 show markets where you have open positions
* fix: #30 double check if open positions
* fix: #30 dialog has only small/large sizes
* feat: #30 add border on trigger and change padding and no wrap
* fix: #30 if fees or factors are not found
* fix: #30 remove markets.cy tests as markets page is now gone
* fix #30 remove view full market list test
* fix: #30 add rotating arrow on market title
* fix: #30 add ease-in-out on popover
* fix: #30 add ease-in-out on popover
* fix: #30 align select a market table
* fix: #30 select a market title
* fix: #30 select a market title
* fix: #30 fix any validateDOMnesting issues
* fix: #30 show loading market data
* fix: #30 add list of header columns
* fix: #30 add list of header columns
* fix: #30 small refactoring after review
* fix: #30 update bold undreline class names
* fix: #30 add large-mobile size
* feat: #30 refactor select markets tables to render array of columns
* fix: #30 remove size from select market dialog
* fix: #30 add extra file for columns
* fix: #30 update formtting
* fix: #30 make sure popup closes on same market navigation
* fix: rename market-utils, add calcCandle methods, store market id on select
* fix: useMemo ondata and marketPositionData + orderbook stories fix
* feat: #30 add open volume positions
* fix: add market summary back
* fix: update formatting
* fix: use currentcolor on arrow
* fix: create all markets page
* fix: add overflow-y auto
* fix: enlarge select market to get started dialog
* fix: revert markets container
* fix: use query to fix flickering on position markets
* fix: edit unordered list in tooltips
* fix: fix tooltip table
* fix: fix home.cy.ts
* chore: skip /markets tests
2022-08-11 11:56:35 +00:00
|
|
|
import { OrderbookContainer } from '@vegaprotocol/market-depth';
|
|
|
|
import { SelectMarketPopover } from '@vegaprotocol/market-list';
|
2022-07-13 14:23:46 +00:00
|
|
|
import { OrderListContainer } from '@vegaprotocol/orders';
|
2022-08-19 08:03:31 +00:00
|
|
|
import { FillsContainer } from '@vegaprotocol/fills';
|
2022-03-29 22:52:51 +00:00
|
|
|
import { PositionsContainer } from '@vegaprotocol/positions';
|
2022-08-25 14:21:28 +00:00
|
|
|
import {
|
|
|
|
addDecimalsFormatNumber,
|
|
|
|
getDateFormat,
|
|
|
|
t,
|
|
|
|
} from '@vegaprotocol/react-helpers';
|
feat: market list mega dropdown (rich popover) (#889)
* feat: use MarketList query only
* fix: remove Market.ts from index
* feat: 30 refactor dialog, market list, change query
* feat: #30 add indicativeVolume, total fees, tooltip, large dialog, tooltip accepts html description
* fix: #30 total fees display in tooltip
* fix: #30 toggle title on dialog open
* fix: #30 fix order, price, high, low utils
* fix: #30 fix test for market utils
* feat: #30 add popover with markets to select
* feat: #30 storybook popover
* feat: #30 remove border on trigger and add some other classes
* fix: #30 fix format check with format:write
* feat: #30 add tooltip on taker fee
* feat: #30 add tooltip on taker fee
* fix: #30 format on select market list
* fix: #30 remove unknown cast in test mock data
* fix: #30 show markets where you have open positions
* fix: #30 double check if open positions
* fix: #30 dialog has only small/large sizes
* feat: #30 add border on trigger and change padding and no wrap
* fix: #30 if fees or factors are not found
* fix: #30 remove markets.cy tests as markets page is now gone
* fix #30 remove view full market list test
* fix: #30 add rotating arrow on market title
* fix: #30 add ease-in-out on popover
* fix: #30 add ease-in-out on popover
* fix: #30 align select a market table
* fix: #30 select a market title
* fix: #30 select a market title
* fix: #30 fix any validateDOMnesting issues
* fix: #30 show loading market data
* fix: #30 add list of header columns
* fix: #30 add list of header columns
* fix: #30 small refactoring after review
* fix: #30 update bold undreline class names
* fix: #30 add large-mobile size
* feat: #30 refactor select markets tables to render array of columns
* fix: #30 remove size from select market dialog
* fix: #30 add extra file for columns
* fix: #30 update formtting
* fix: #30 make sure popup closes on same market navigation
* fix: rename market-utils, add calcCandle methods, store market id on select
* fix: useMemo ondata and marketPositionData + orderbook stories fix
* feat: #30 add open volume positions
* fix: add market summary back
* fix: update formatting
* fix: use currentcolor on arrow
* fix: create all markets page
* fix: add overflow-y auto
* fix: enlarge select market to get started dialog
* fix: revert markets container
* fix: use query to fix flickering on position markets
* fix: edit unordered list in tooltips
* fix: fix tooltip table
* fix: fix home.cy.ts
* chore: skip /markets tests
2022-08-11 11:56:35 +00:00
|
|
|
import { TradesContainer } from '@vegaprotocol/trades';
|
2022-08-23 17:24:33 +00:00
|
|
|
import {
|
|
|
|
AuctionTrigger,
|
|
|
|
AuctionTriggerMapping,
|
|
|
|
MarketTradingMode,
|
|
|
|
MarketTradingModeMapping,
|
|
|
|
} from '@vegaprotocol/types';
|
2022-08-31 04:35:46 +00:00
|
|
|
import { LayoutPriority } from 'allotment';
|
feat: market list mega dropdown (rich popover) (#889)
* feat: use MarketList query only
* fix: remove Market.ts from index
* feat: 30 refactor dialog, market list, change query
* feat: #30 add indicativeVolume, total fees, tooltip, large dialog, tooltip accepts html description
* fix: #30 total fees display in tooltip
* fix: #30 toggle title on dialog open
* fix: #30 fix order, price, high, low utils
* fix: #30 fix test for market utils
* feat: #30 add popover with markets to select
* feat: #30 storybook popover
* feat: #30 remove border on trigger and add some other classes
* fix: #30 fix format check with format:write
* feat: #30 add tooltip on taker fee
* feat: #30 add tooltip on taker fee
* fix: #30 format on select market list
* fix: #30 remove unknown cast in test mock data
* fix: #30 show markets where you have open positions
* fix: #30 double check if open positions
* fix: #30 dialog has only small/large sizes
* feat: #30 add border on trigger and change padding and no wrap
* fix: #30 if fees or factors are not found
* fix: #30 remove markets.cy tests as markets page is now gone
* fix #30 remove view full market list test
* fix: #30 add rotating arrow on market title
* fix: #30 add ease-in-out on popover
* fix: #30 add ease-in-out on popover
* fix: #30 align select a market table
* fix: #30 select a market title
* fix: #30 select a market title
* fix: #30 fix any validateDOMnesting issues
* fix: #30 show loading market data
* fix: #30 add list of header columns
* fix: #30 add list of header columns
* fix: #30 small refactoring after review
* fix: #30 update bold undreline class names
* fix: #30 add large-mobile size
* feat: #30 refactor select markets tables to render array of columns
* fix: #30 remove size from select market dialog
* fix: #30 add extra file for columns
* fix: #30 update formtting
* fix: #30 make sure popup closes on same market navigation
* fix: rename market-utils, add calcCandle methods, store market id on select
* fix: useMemo ondata and marketPositionData + orderbook stories fix
* feat: #30 add open volume positions
* fix: add market summary back
* fix: update formatting
* fix: use currentcolor on arrow
* fix: create all markets page
* fix: add overflow-y auto
* fix: enlarge select market to get started dialog
* fix: revert markets container
* fix: use query to fix flickering on position markets
* fix: edit unordered list in tooltips
* fix: fix tooltip table
* fix: fix home.cy.ts
* chore: skip /markets tests
2022-08-11 11:56:35 +00:00
|
|
|
import classNames from 'classnames';
|
|
|
|
import AutoSizer from 'react-virtualized-auto-sizer';
|
2022-08-25 14:21:28 +00:00
|
|
|
import { useState } from 'react';
|
feat: market list mega dropdown (rich popover) (#889)
* feat: use MarketList query only
* fix: remove Market.ts from index
* feat: 30 refactor dialog, market list, change query
* feat: #30 add indicativeVolume, total fees, tooltip, large dialog, tooltip accepts html description
* fix: #30 total fees display in tooltip
* fix: #30 toggle title on dialog open
* fix: #30 fix order, price, high, low utils
* fix: #30 fix test for market utils
* feat: #30 add popover with markets to select
* feat: #30 storybook popover
* feat: #30 remove border on trigger and add some other classes
* fix: #30 fix format check with format:write
* feat: #30 add tooltip on taker fee
* feat: #30 add tooltip on taker fee
* fix: #30 format on select market list
* fix: #30 remove unknown cast in test mock data
* fix: #30 show markets where you have open positions
* fix: #30 double check if open positions
* fix: #30 dialog has only small/large sizes
* feat: #30 add border on trigger and change padding and no wrap
* fix: #30 if fees or factors are not found
* fix: #30 remove markets.cy tests as markets page is now gone
* fix #30 remove view full market list test
* fix: #30 add rotating arrow on market title
* fix: #30 add ease-in-out on popover
* fix: #30 add ease-in-out on popover
* fix: #30 align select a market table
* fix: #30 select a market title
* fix: #30 select a market title
* fix: #30 fix any validateDOMnesting issues
* fix: #30 show loading market data
* fix: #30 add list of header columns
* fix: #30 add list of header columns
* fix: #30 small refactoring after review
* fix: #30 update bold undreline class names
* fix: #30 add large-mobile size
* feat: #30 refactor select markets tables to render array of columns
* fix: #30 remove size from select market dialog
* fix: #30 add extra file for columns
* fix: #30 update formtting
* fix: #30 make sure popup closes on same market navigation
* fix: rename market-utils, add calcCandle methods, store market id on select
* fix: useMemo ondata and marketPositionData + orderbook stories fix
* feat: #30 add open volume positions
* fix: add market summary back
* fix: update formatting
* fix: use currentcolor on arrow
* fix: create all markets page
* fix: add overflow-y auto
* fix: enlarge select market to get started dialog
* fix: revert markets container
* fix: use query to fix flickering on position markets
* fix: edit unordered list in tooltips
* fix: fix tooltip table
* fix: fix home.cy.ts
* chore: skip /markets tests
2022-08-11 11:56:35 +00:00
|
|
|
import type { ReactNode } from 'react';
|
|
|
|
import type { Market_market } from './__generated__/Market';
|
|
|
|
import type { CandleClose } from '@vegaprotocol/types';
|
|
|
|
import { useGlobalStore } from '../../stores';
|
2022-04-07 13:41:57 +00:00
|
|
|
import { AccountsContainer } from '@vegaprotocol/accounts';
|
2022-04-26 15:26:28 +00:00
|
|
|
import { DepthChartContainer } from '@vegaprotocol/market-depth';
|
2022-04-25 17:34:07 +00:00
|
|
|
import { CandlesChartContainer } from '@vegaprotocol/candles-chart';
|
2022-08-26 15:39:40 +00:00
|
|
|
import { useAssetDetailsDialogStore } from '@vegaprotocol/assets';
|
2022-08-25 14:21:28 +00:00
|
|
|
import { useEnvironment } from '@vegaprotocol/environment';
|
2022-06-17 14:56:42 +00:00
|
|
|
import {
|
2022-06-24 03:16:01 +00:00
|
|
|
Tab,
|
|
|
|
Tabs,
|
2022-06-17 14:56:42 +00:00
|
|
|
PriceCellChange,
|
2022-08-25 14:21:28 +00:00
|
|
|
Link,
|
2022-08-08 10:19:57 +00:00
|
|
|
Tooltip,
|
2022-08-31 04:35:46 +00:00
|
|
|
ResizableGrid,
|
|
|
|
ButtonLink,
|
|
|
|
ResizableGridPanel,
|
2022-06-17 14:56:42 +00:00
|
|
|
} from '@vegaprotocol/ui-toolkit';
|
2022-08-08 10:19:57 +00:00
|
|
|
import { TradingModeTooltip } from '../../components/trading-mode-tooltip';
|
Feat/63 Deal ticket (#82)
* scaffold dealticket package, remove trading views from react-helpers
* add deal ticket component, add intent utils, expand dialog and form group styles
* add splash component, show market not found message if market doesnt exist
* tidy up error handling
* add handleError method for vega tx hook
* add better testname for provider test, flesh out tests a bit more for deal ticket
* Add unit tests for useVegaTransaction and useOrderSubmit hooks
* add wrapper component for order dialog styles
* add vega styled loader to ui toolkit and use in order dialog
* add title prop to order dialog
* split limit and market tickets into own files
* add button radio component
* revert dialog styles
* move splash component to ui-toolkit, add story
* convert intent to enum
* Make button always type=button unless type prop is passed
* inline filter logic for tif selector
* add date-fns, add datetime to helpers
* add order types to wallet package, make price undefined if order type is market
* use enums in deal ticket logic
* tidy up order state by moving submit and transaction hooks out of deal ticket
* add comment for dialog styles
* remove decimal from price input
* add types package, delete old generated types from trading project
* rename types package to graphql
* update generate command to point to correct locations
* fix use order submit test
* use intent shadow helper
* remove date-fns and format manually, update submit button error to use input-error
* remove stray console.log
2022-03-17 19:35:46 +00:00
|
|
|
|
|
|
|
const TradingViews = {
|
2022-04-25 17:34:07 +00:00
|
|
|
Candles: CandlesChartContainer,
|
|
|
|
Depth: DepthChartContainer,
|
2022-03-28 19:34:45 +00:00
|
|
|
Ticket: DealTicketContainer,
|
2022-07-14 16:03:17 +00:00
|
|
|
Info: MarketInfoContainer,
|
2022-04-26 15:26:28 +00:00
|
|
|
Orderbook: OrderbookContainer,
|
2022-04-07 13:41:57 +00:00
|
|
|
Trades: TradesContainer,
|
2022-07-14 16:03:17 +00:00
|
|
|
Positions: PositionsContainer,
|
|
|
|
Orders: OrderListContainer,
|
|
|
|
Collateral: AccountsContainer,
|
2022-08-19 08:03:31 +00:00
|
|
|
Fills: FillsContainer,
|
Feat/63 Deal ticket (#82)
* scaffold dealticket package, remove trading views from react-helpers
* add deal ticket component, add intent utils, expand dialog and form group styles
* add splash component, show market not found message if market doesnt exist
* tidy up error handling
* add handleError method for vega tx hook
* add better testname for provider test, flesh out tests a bit more for deal ticket
* Add unit tests for useVegaTransaction and useOrderSubmit hooks
* add wrapper component for order dialog styles
* add vega styled loader to ui toolkit and use in order dialog
* add title prop to order dialog
* split limit and market tickets into own files
* add button radio component
* revert dialog styles
* move splash component to ui-toolkit, add story
* convert intent to enum
* Make button always type=button unless type prop is passed
* inline filter logic for tif selector
* add date-fns, add datetime to helpers
* add order types to wallet package, make price undefined if order type is market
* use enums in deal ticket logic
* tidy up order state by moving submit and transaction hooks out of deal ticket
* add comment for dialog styles
* remove decimal from price input
* add types package, delete old generated types from trading project
* rename types package to graphql
* update generate command to point to correct locations
* fix use order submit test
* use intent shadow helper
* remove date-fns and format manually, update submit button error to use input-error
* remove stray console.log
2022-03-17 19:35:46 +00:00
|
|
|
};
|
2022-03-02 02:08:42 +00:00
|
|
|
|
2022-03-28 19:34:45 +00:00
|
|
|
type TradingView = keyof typeof TradingViews;
|
|
|
|
|
2022-08-25 14:21:28 +00:00
|
|
|
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 (
|
|
|
|
<>
|
2022-09-01 12:24:16 +00:00
|
|
|
<p data-testid="expiry-tool-tip" className="mb-2">
|
2022-08-25 14:21:28 +00:00
|
|
|
{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;
|
|
|
|
};
|
|
|
|
|
2022-06-20 23:52:25 +00:00
|
|
|
interface TradeMarketHeaderProps {
|
2022-03-02 02:08:42 +00:00
|
|
|
market: Market_market;
|
|
|
|
}
|
|
|
|
|
2022-08-31 04:35:46 +00:00
|
|
|
export const TradeMarketHeader = ({ market }: TradeMarketHeaderProps) => {
|
2022-08-25 14:21:28 +00:00
|
|
|
const { VEGA_EXPLORER_URL } = useEnvironment();
|
2022-08-17 14:10:01 +00:00
|
|
|
const { setAssetDetailsDialogOpen, setAssetDetailsDialogSymbol } =
|
|
|
|
useAssetDetailsDialogStore();
|
2022-06-06 16:19:56 +00:00
|
|
|
const candlesClose: string[] = (market?.candles || [])
|
|
|
|
.map((candle) => candle?.close)
|
|
|
|
.filter((c): c is CandleClose => c !== null);
|
2022-08-17 14:10:01 +00:00
|
|
|
const symbol =
|
|
|
|
market.tradableInstrument.instrument.product?.settlementAsset?.symbol;
|
2022-08-31 04:35:46 +00:00
|
|
|
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';
|
feat: market list mega dropdown (rich popover) (#889)
* feat: use MarketList query only
* fix: remove Market.ts from index
* feat: 30 refactor dialog, market list, change query
* feat: #30 add indicativeVolume, total fees, tooltip, large dialog, tooltip accepts html description
* fix: #30 total fees display in tooltip
* fix: #30 toggle title on dialog open
* fix: #30 fix order, price, high, low utils
* fix: #30 fix test for market utils
* feat: #30 add popover with markets to select
* feat: #30 storybook popover
* feat: #30 remove border on trigger and add some other classes
* fix: #30 fix format check with format:write
* feat: #30 add tooltip on taker fee
* feat: #30 add tooltip on taker fee
* fix: #30 format on select market list
* fix: #30 remove unknown cast in test mock data
* fix: #30 show markets where you have open positions
* fix: #30 double check if open positions
* fix: #30 dialog has only small/large sizes
* feat: #30 add border on trigger and change padding and no wrap
* fix: #30 if fees or factors are not found
* fix: #30 remove markets.cy tests as markets page is now gone
* fix #30 remove view full market list test
* fix: #30 add rotating arrow on market title
* fix: #30 add ease-in-out on popover
* fix: #30 add ease-in-out on popover
* fix: #30 align select a market table
* fix: #30 select a market title
* fix: #30 select a market title
* fix: #30 fix any validateDOMnesting issues
* fix: #30 show loading market data
* fix: #30 add list of header columns
* fix: #30 add list of header columns
* fix: #30 small refactoring after review
* fix: #30 update bold undreline class names
* fix: #30 add large-mobile size
* feat: #30 refactor select markets tables to render array of columns
* fix: #30 remove size from select market dialog
* fix: #30 add extra file for columns
* fix: #30 update formtting
* fix: #30 make sure popup closes on same market navigation
* fix: rename market-utils, add calcCandle methods, store market id on select
* fix: useMemo ondata and marketPositionData + orderbook stories fix
* feat: #30 add open volume positions
* fix: add market summary back
* fix: update formatting
* fix: use currentcolor on arrow
* fix: create all markets page
* fix: add overflow-y auto
* fix: enlarge select market to get started dialog
* fix: revert markets container
* fix: use query to fix flickering on position markets
* fix: edit unordered list in tooltips
* fix: fix tooltip table
* fix: fix home.cy.ts
* chore: skip /markets tests
2022-08-11 11:56:35 +00:00
|
|
|
|
|
|
|
const store = useGlobalStore();
|
|
|
|
const onSelect = (marketId: string) => {
|
|
|
|
if (marketId && store.marketId !== marketId) {
|
|
|
|
store.setMarketId(marketId);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-08-25 14:21:28 +00:00
|
|
|
const hasExpiry = market.marketTimestamps.close !== null;
|
|
|
|
|
2022-06-06 16:19:56 +00:00
|
|
|
return (
|
2022-08-31 04:35:46 +00:00
|
|
|
<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.name} onSelect={onSelect} />
|
|
|
|
</div>
|
2022-06-29 12:57:42 +00:00
|
|
|
<div
|
|
|
|
data-testid="market-summary"
|
2022-08-31 04:35:46 +00:00
|
|
|
className="flex flex-nowrap items-start xl:flex-1 w-full overflow-x-auto text-xs "
|
2022-06-29 12:57:42 +00:00
|
|
|
>
|
2022-08-31 04:35:46 +00:00
|
|
|
<div className={itemClass}>
|
|
|
|
<div className={itemHeading}>{t('Expiry')}</div>
|
|
|
|
<Tooltip
|
|
|
|
align="start"
|
|
|
|
description={
|
|
|
|
<ExpiryTooltipContent
|
|
|
|
market={market}
|
|
|
|
explorerUrl={VEGA_EXPLORER_URL}
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<div
|
2022-08-25 14:21:28 +00:00
|
|
|
data-testid="trading-expiry"
|
2022-08-31 04:35:46 +00:00
|
|
|
className={classNames({
|
2022-08-25 14:21:28 +00:00
|
|
|
'underline decoration-dashed': !hasExpiry,
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
<ExpiryLabel market={market} />
|
2022-08-31 04:35:46 +00:00
|
|
|
</div>
|
|
|
|
</Tooltip>
|
|
|
|
</div>
|
|
|
|
<div className={itemClass}>
|
|
|
|
<div className={itemHeading}>{t('Change (24h)')}</div>
|
2022-06-06 16:19:56 +00:00
|
|
|
<PriceCellChange
|
|
|
|
candles={candlesClose}
|
|
|
|
decimalPlaces={market.decimalPlaces}
|
|
|
|
/>
|
|
|
|
</div>
|
2022-08-31 04:35:46 +00:00
|
|
|
<div className={itemClass}>
|
|
|
|
<div className={itemHeading}>{t('Volume')}</div>
|
|
|
|
<div data-testid="trading-volume">
|
2022-06-06 16:19:56 +00:00
|
|
|
{market.data && market.data.indicativeVolume !== '0'
|
2022-07-16 13:31:47 +00:00
|
|
|
? addDecimalsFormatNumber(
|
|
|
|
market.data.indicativeVolume,
|
|
|
|
market.positionDecimalPlaces
|
|
|
|
)
|
2022-06-06 16:19:56 +00:00
|
|
|
: '-'}
|
2022-08-31 04:35:46 +00:00
|
|
|
</div>
|
2022-06-06 16:19:56 +00:00
|
|
|
</div>
|
2022-08-31 04:35:46 +00:00
|
|
|
|
|
|
|
<div className={itemClass}>
|
|
|
|
<div className={itemHeading}>{t('Trading mode')}</div>
|
|
|
|
<Tooltip
|
|
|
|
align="start"
|
|
|
|
description={<TradingModeTooltip market={market} />}
|
|
|
|
>
|
|
|
|
<div data-testid="trading-mode">
|
2022-08-22 22:50:13 +00:00
|
|
|
{market.tradingMode ===
|
|
|
|
MarketTradingMode.TRADING_MODE_MONITORING_AUCTION &&
|
2022-08-08 10:19:57 +00:00
|
|
|
market.data?.trigger &&
|
2022-08-22 22:50:13 +00:00
|
|
|
market.data.trigger !==
|
|
|
|
AuctionTrigger.AUCTION_TRIGGER_UNSPECIFIED
|
2022-08-23 17:24:33 +00:00
|
|
|
? `${MarketTradingModeMapping[market.tradingMode]}
|
|
|
|
- ${AuctionTriggerMapping[market.data.trigger]}`
|
|
|
|
: MarketTradingModeMapping[market.tradingMode]}
|
2022-08-31 04:35:46 +00:00
|
|
|
</div>
|
|
|
|
</Tooltip>
|
|
|
|
</div>
|
|
|
|
<div className={itemClass}>
|
|
|
|
<div className={itemHeading}>{t('Price')}</div>
|
|
|
|
<div data-testid="mark-price">
|
2022-07-21 09:57:30 +00:00
|
|
|
{market.data && market.data.markPrice !== '0'
|
|
|
|
? addDecimalsFormatNumber(
|
|
|
|
market.data.markPrice,
|
|
|
|
market.decimalPlaces
|
|
|
|
)
|
|
|
|
: '-'}
|
2022-08-31 04:35:46 +00:00
|
|
|
</div>
|
2022-07-21 09:57:30 +00:00
|
|
|
</div>
|
2022-08-17 14:10:01 +00:00
|
|
|
{symbol && (
|
2022-08-31 04:35:46 +00:00
|
|
|
<div className={itemClass}>
|
|
|
|
<div className={itemHeading}>{t('Settlement asset')}</div>
|
|
|
|
<div data-testid="trading-mode">
|
|
|
|
<ButtonLink
|
2022-08-17 14:10:01 +00:00
|
|
|
onClick={() => {
|
|
|
|
setAssetDetailsDialogOpen(true);
|
|
|
|
setAssetDetailsDialogSymbol(symbol);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{symbol}
|
2022-08-31 04:35:46 +00:00
|
|
|
</ButtonLink>
|
|
|
|
</div>
|
2022-07-21 09:57:30 +00:00
|
|
|
</div>
|
|
|
|
)}
|
2022-06-06 16:19:56 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-06-20 23:52:25 +00:00
|
|
|
interface TradeGridProps {
|
|
|
|
market: Market_market;
|
|
|
|
}
|
|
|
|
|
2022-03-02 02:08:42 +00:00
|
|
|
export const TradeGrid = ({ market }: TradeGridProps) => {
|
|
|
|
return (
|
2022-08-31 04:35:46 +00:00
|
|
|
<div className="h-full grid grid-rows-[min-content_1fr]">
|
|
|
|
<TradeMarketHeader market={market} />
|
|
|
|
<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} />
|
|
|
|
</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>
|
2022-03-02 02:08:42 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
interface TradeGridChildProps {
|
|
|
|
children: ReactNode;
|
|
|
|
}
|
|
|
|
|
2022-08-31 04:35:46 +00:00
|
|
|
const TradeGridChild = ({ children }: TradeGridChildProps) => {
|
2022-03-02 02:08:42 +00:00
|
|
|
return (
|
2022-08-31 04:35:46 +00:00
|
|
|
<section className="h-full">
|
2022-03-02 02:08:42 +00:00
|
|
|
<AutoSizer>
|
|
|
|
{({ width, height }) => (
|
|
|
|
<div style={{ width, height }} className="overflow-auto">
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</AutoSizer>
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
interface TradePanelsProps {
|
|
|
|
market: Market_market;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const TradePanels = ({ market }: TradePanelsProps) => {
|
2022-04-25 17:34:07 +00:00
|
|
|
const [view, setView] = useState<TradingView>('Candles');
|
2022-03-02 02:08:42 +00:00
|
|
|
|
|
|
|
const renderView = () => {
|
2022-03-02 19:20:23 +00:00
|
|
|
const Component = TradingViews[view];
|
2022-03-02 02:08:42 +00:00
|
|
|
|
|
|
|
if (!Component) {
|
|
|
|
throw new Error(`No component for view: ${view}`);
|
|
|
|
}
|
|
|
|
|
2022-03-29 22:52:51 +00:00
|
|
|
return <Component marketId={market.id} />;
|
2022-03-02 02:08:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="h-full grid grid-rows-[min-content_1fr_min-content]">
|
2022-06-06 16:19:56 +00:00
|
|
|
<TradeMarketHeader market={market} />
|
2022-03-02 02:08:42 +00:00
|
|
|
<div className="h-full">
|
|
|
|
<AutoSizer>
|
|
|
|
{({ width, height }) => (
|
|
|
|
<div style={{ width, height }}>{renderView()}</div>
|
|
|
|
)}
|
|
|
|
</AutoSizer>
|
|
|
|
</div>
|
2022-08-31 04:35:46 +00:00
|
|
|
<div className="flex flex-nowrap overflow-x-auto max-w-full border-t border-neutral-300 dark:border-neutral-700">
|
2022-03-28 19:34:45 +00:00
|
|
|
{Object.keys(TradingViews).map((key) => {
|
2022-03-09 16:59:48 +00:00
|
|
|
const isActive = view === key;
|
2022-08-31 04:35:46 +00:00
|
|
|
const className = classNames('p-4 min-w-[100px] capitalize', {
|
2022-03-09 16:59:48 +00:00
|
|
|
'text-black dark:text-vega-yellow': isActive,
|
2022-08-31 04:35:46 +00:00
|
|
|
'bg-neutral-200 dark:bg-neutral-800': isActive,
|
2022-03-09 16:59:48 +00:00
|
|
|
});
|
2022-03-02 02:08:42 +00:00
|
|
|
return (
|
|
|
|
<button
|
Test/deal ticket tests (#161)
* scaffold dealticket package, remove trading views from react-helpers
* add deal ticket component, add intent utils, expand dialog and form group styles
* add splash component, show market not found message if market doesnt exist
* tidy up error handling
* add handleError method for vega tx hook
* add better testname for provider test, flesh out tests a bit more for deal ticket
* Add unit tests for useVegaTransaction and useOrderSubmit hooks
* add wrapper component for order dialog styles
* add vega styled loader to ui toolkit and use in order dialog
* add title prop to order dialog
* split limit and market tickets into own files
* add button radio component
* revert dialog styles
* move splash component to ui-toolkit, add story
* convert intent to enum
* Make button always type=button unless type prop is passed
* inline filter logic for tif selector
* add date-fns, add datetime to helpers
* add order types to wallet package, make price undefined if order type is market
* use enums in deal ticket logic
* tidy up order state by moving submit and transaction hooks out of deal ticket
* add comment for dialog styles
* remove decimal from price input
* add types package, delete old generated types from trading project
* rename types package to graphql
* update generate command to point to correct locations
* fix use order submit test
* BDD and navigation tests passing
* Remove commented steps
* Steps up to placing order
* Date picker and date-fns update
* Vega connector wallet tests
* Passing up to request sent, updated date picker
* Tests for sell orders and errors
* Update market feature
* Fix failing tests
* Update wallet login
* Readded tx hash assertion and remaining tests
* Add CI wallet import
* Update .github/workflows/cypress.yml
Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com>
* Resolved PR comments
* Fix yaml error
* Attempt to fix failing tests in CI
* Run Cypress in Chrome
* Add reload if public key error displayed
* Fix wallet name
* Add force click and waits
* Increase timeout for deal ticket page
* Removed network list from yaml and using input error id
* Increase timeout to 8 seconds
* Re add deleted test id
Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com>
2022-04-04 15:11:27 +00:00
|
|
|
data-testid={key}
|
2022-03-28 19:34:45 +00:00
|
|
|
onClick={() => setView(key as TradingView)}
|
2022-03-02 02:08:42 +00:00
|
|
|
className={className}
|
|
|
|
key={key}
|
|
|
|
>
|
|
|
|
{key}
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|