07abc2b1eb
* feat: 470 edit orders hook and @vegaprotocol/vegawallet-service-api-client@0.4.14 * fix: 470 add methods for dialog intent and title * fix: #657 rename order-list lib to orders * chore: #657 move hooks to orders lib * chore: #657 vega tx dialog used for order cancellation and order submission * chore: #657 use client subscribe and unsubscribe on reset, refactor vegatxdialog * fix: #657 revert script src=./env-config.js ending * fix: #657 format project.json * Update project.json * fix: #657 cancel all subs and async tasks in useffect cleanup function * feat: #657 styling updates on vega order dialog * fix: #657 rename set dialog open and awaiting confirmation dialog update * fix: #657 updates on cancel order id check * fix: #657 fix vega tx dialog test * fix: #657 fix cypress trading-deal-tciket test * fix: #657 fix data-testid market test * Update libs/orders/README.md Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> * Update libs/wallet/src/vega-order-transaction-dialog/vega-order-transaction-dialog.tsx Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> * Update libs/wallet/src/vega-transaction-dialog/vega-transaction-dialog.tsx Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> * Update libs/wallet/src/vega-order-transaction-dialog/vega-order-transaction-dialog.tsx Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> * Update libs/wallet/src/vega-order-transaction-dialog/vega-order-transaction-dialog.tsx Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> * fix: #657 remove the magic string and use the ordertype enum from types package * fix: #657 guarantee that order.id is present at this point or we need to determine the id of the order * fix: #657 fix translation in dialog * fix: #657 rename wallet types, delete ticket query, set finalized order null in submit * fix: #657 fix deal ticket steps test * fix: #657 remove settings.json * fix: #657 use order submit in orders lib * fix: #463 final modal links to block explorer * fix: #745 long/short instead of buy/sell * fix: #657 use only one vega tx dialog * fix: #657 keep ref of subscription and unsubscribe * fix: #657 hide cancelled orders * fix: #657 sub only when id set * fix: WIP: trying to unsub when order updated * fix: #745 long/short instead of buy/sell * fix: ensure observable defined * fix: #657 remove redundant test * Update libs/orders/src/lib/order-hooks/use-order-submit.ts * fix: failing test due to resizeobserver loop limit exceeded * fix: lint * fix: #657 fix test resize observer loop limit exceeded Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> Co-authored-by: Matthew Russell <mattrussell36@gmail.com> Co-authored-by: Joe <joe@vega.xyz>
251 lines
8.0 KiB
TypeScript
251 lines
8.0 KiB
TypeScript
import classNames from 'classnames';
|
|
import AutoSizer from 'react-virtualized-auto-sizer';
|
|
import type { ReactNode } from 'react';
|
|
import { useState } from 'react';
|
|
import {
|
|
DealTicketContainer,
|
|
MarketInfoContainer,
|
|
} from '@vegaprotocol/deal-ticket';
|
|
import { OrderListContainer } from '@vegaprotocol/orders';
|
|
import { TradesContainer } from '@vegaprotocol/trades';
|
|
import { PositionsContainer } from '@vegaprotocol/positions';
|
|
import { OrderbookContainer } from '@vegaprotocol/market-depth';
|
|
import type { Market_market } from './__generated__/Market';
|
|
import { t } from '@vegaprotocol/react-helpers';
|
|
import { AccountsContainer } from '@vegaprotocol/accounts';
|
|
import { DepthChartContainer } from '@vegaprotocol/market-depth';
|
|
import { CandlesChartContainer } from '@vegaprotocol/candles-chart';
|
|
import { SelectMarketDialog } from '@vegaprotocol/market-list';
|
|
import {
|
|
ArrowDown,
|
|
Tab,
|
|
Tabs,
|
|
PriceCellChange,
|
|
} from '@vegaprotocol/ui-toolkit';
|
|
import type { CandleClose } from '@vegaprotocol/types';
|
|
|
|
const TradingViews = {
|
|
Candles: CandlesChartContainer,
|
|
Depth: DepthChartContainer,
|
|
Ticket: DealTicketContainer,
|
|
Orderbook: OrderbookContainer,
|
|
Orders: OrderListContainer,
|
|
Positions: PositionsContainer,
|
|
Accounts: AccountsContainer,
|
|
Trades: TradesContainer,
|
|
Info: MarketInfoContainer,
|
|
};
|
|
|
|
type TradingView = keyof typeof TradingViews;
|
|
|
|
interface TradeMarketHeaderProps {
|
|
market: Market_market;
|
|
className?: string;
|
|
}
|
|
|
|
export const TradeMarketHeader = ({
|
|
market,
|
|
className,
|
|
}: TradeMarketHeaderProps) => {
|
|
const [open, setOpen] = useState(false);
|
|
const candlesClose: string[] = (market?.candles || [])
|
|
.map((candle) => candle?.close)
|
|
.filter((c): c is CandleClose => c !== null);
|
|
const headerItemClassName = 'whitespace-nowrap flex flex-col';
|
|
const itemClassName =
|
|
'font-sans font-normal mb-0 text-dark/80 dark:text-white/80 text-ui-small';
|
|
const itemValueClassName =
|
|
'capitalize font-sans tracking-tighter text-black dark:text-white text-ui';
|
|
const headerClassName = classNames(
|
|
'w-full p-8 bg-white dark:bg-black',
|
|
className
|
|
);
|
|
return (
|
|
<header className={headerClassName}>
|
|
<SelectMarketDialog dialogOpen={open} setDialogOpen={setOpen} />
|
|
<div className="flex flex-col md:flex-row gap-20 md:gap-64 ml-auto mr-8">
|
|
<button
|
|
onClick={() => setOpen(!open)}
|
|
className="shrink-0 dark:text-vega-yellow text-black text-h5 flex items-center gap-8 px-4 py-0 h-37 hover:bg-black/20 dark:hover:bg-white/20"
|
|
>
|
|
<span className="break-words text-left">{market.name}</span>
|
|
<ArrowDown color="yellow" borderX={8} borderTop={12} />
|
|
</button>
|
|
|
|
<div
|
|
data-testid="market-summary"
|
|
className="flex flex-auto items-start gap-64 overflow-x-auto whitespace-nowrap w-[400px]"
|
|
>
|
|
<div className={headerItemClassName}>
|
|
<span className={itemClassName}>Change (24h)</span>
|
|
<PriceCellChange
|
|
candles={candlesClose}
|
|
decimalPlaces={market.decimalPlaces}
|
|
/>
|
|
</div>
|
|
<div className={headerItemClassName}>
|
|
<span className={itemClassName}>Volume</span>
|
|
<span data-testid="trading-volume" className={itemValueClassName}>
|
|
{market.data && market.data.indicativeVolume !== '0'
|
|
? market.data.indicativeVolume
|
|
: '-'}
|
|
</span>
|
|
</div>
|
|
<div className={headerItemClassName}>
|
|
<span className={itemClassName}>Trading mode</span>
|
|
<span data-testid="trading-mode" className={itemValueClassName}>
|
|
{market.tradingMode}
|
|
</span>
|
|
</div>
|
|
<div className={headerItemClassName}>
|
|
<span className={itemClassName}>State</span>
|
|
<span data-testid="market-state" className={itemValueClassName}>
|
|
{market.state}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
};
|
|
|
|
interface TradeGridProps {
|
|
market: Market_market;
|
|
}
|
|
|
|
export const TradeGrid = ({ market }: TradeGridProps) => {
|
|
const wrapperClasses = classNames(
|
|
'h-full max-h-full',
|
|
'grid gap-4 grid-cols-[1fr_375px_460px] grid-rows-[min-content_1fr_300px]',
|
|
'bg-black-10 dark:bg-white-10',
|
|
'text-ui'
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<div className={wrapperClasses}>
|
|
<TradeMarketHeader
|
|
market={market}
|
|
className="row-start-1 row-end-2 col-start-1 col-end-4"
|
|
/>
|
|
<TradeGridChild className="row-start-2 row-end-3 col-start-1 col-end-2">
|
|
<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>
|
|
<TradeGridChild className="row-start-2 row-end-3 col-start-2 col-end-3">
|
|
<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>
|
|
<TradeGridChild className="row-start-2 row-end-3 col-start-3 col-end-4">
|
|
<Tabs>
|
|
<Tab id="trades" name={t('Trades')}>
|
|
<TradingViews.Trades marketId={market.id} />
|
|
</Tab>
|
|
<Tab id="orderbook" name={t('Orderbook')}>
|
|
<TradingViews.Orderbook marketId={market.id} />
|
|
</Tab>
|
|
</Tabs>
|
|
</TradeGridChild>
|
|
<TradeGridChild className="col-span-3">
|
|
<Tabs>
|
|
<Tab id="orders" name={t('Orders')}>
|
|
<TradingViews.Orders />
|
|
</Tab>
|
|
<Tab id="positions" name={t('Positions')}>
|
|
<TradingViews.Positions />
|
|
</Tab>
|
|
<Tab id="accounts" name={t('Accounts')}>
|
|
<TradingViews.Accounts />
|
|
</Tab>
|
|
</Tabs>
|
|
</TradeGridChild>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
interface TradeGridChildProps {
|
|
children: ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
const TradeGridChild = ({ children, className }: TradeGridChildProps) => {
|
|
const gridChildClasses = classNames('bg-white dark:bg-black', className);
|
|
return (
|
|
<section className={gridChildClasses}>
|
|
<AutoSizer>
|
|
{({ width, height }) => (
|
|
<div style={{ width, height }} className="overflow-auto">
|
|
{children}
|
|
</div>
|
|
)}
|
|
</AutoSizer>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
interface TradePanelsProps {
|
|
market: Market_market;
|
|
}
|
|
|
|
export const TradePanels = ({ market }: TradePanelsProps) => {
|
|
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} />;
|
|
};
|
|
|
|
return (
|
|
<div className="h-full grid grid-rows-[min-content_1fr_min-content]">
|
|
<TradeMarketHeader market={market} />
|
|
<div className="h-full">
|
|
<AutoSizer>
|
|
{({ width, height }) => (
|
|
<div style={{ width, height }}>{renderView()}</div>
|
|
)}
|
|
</AutoSizer>
|
|
</div>
|
|
<div className="flex flex-nowrap gap-4 overflow-x-auto my-4 max-w-full">
|
|
{Object.keys(TradingViews).map((key) => {
|
|
const isActive = view === key;
|
|
const className = classNames('py-4', 'px-12', 'capitalize', {
|
|
'text-black dark:text-vega-yellow': isActive,
|
|
'bg-white dark:bg-black': isActive,
|
|
'text-black dark:text-white': !isActive,
|
|
'bg-black-10 dark:bg-white-10': !isActive,
|
|
});
|
|
return (
|
|
<button
|
|
data-testid={key}
|
|
onClick={() => setView(key as TradingView)}
|
|
className={className}
|
|
key={key}
|
|
>
|
|
{key}
|
|
</button>
|
|
);
|
|
})}
|
|
<div className="bg-black-10 dark:bg-white-10 grow"></div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|