From 649cc61280dd25ec390b1d60b242fc70b0d7abd7 Mon Sep 17 00:00:00 2001 From: Matthew Russell Date: Fri, 24 Feb 2023 13:31:42 -0800 Subject: [PATCH] chore(trading): fix formatting for volume cells in book (#3006) --- libs/market-depth/src/lib/orderbook-row.tsx | 11 ++--- .../src/lib/grid/numeric-cell.spec.tsx | 2 - .../src/lib/grid/price-flash-cell.spec.tsx | 2 - .../src/lib/grid/vol-cell.spec.tsx | 49 +++++++++++++++++++ libs/react-helpers/src/lib/grid/vol-cell.tsx | 13 ++--- 5 files changed, 61 insertions(+), 16 deletions(-) create mode 100644 libs/react-helpers/src/lib/grid/vol-cell.spec.tsx diff --git a/libs/market-depth/src/lib/orderbook-row.tsx b/libs/market-depth/src/lib/orderbook-row.tsx index 192a61e77..c82fd9f0c 100644 --- a/libs/market-depth/src/lib/orderbook-row.tsx +++ b/libs/market-depth/src/lib/orderbook-row.tsx @@ -1,11 +1,10 @@ import React from 'react'; import { PriceCell, - Vol, + VolCell, CumulativeVol, addDecimalsFormatNumber, VolumeType, - addDecimal, } from '@vegaprotocol/react-helpers'; interface OrderbookRowProps { @@ -42,17 +41,17 @@ export const OrderbookRow = React.memo( }: OrderbookRowProps) => { return ( <> - - diff --git a/libs/react-helpers/src/lib/grid/numeric-cell.spec.tsx b/libs/react-helpers/src/lib/grid/numeric-cell.spec.tsx index 77c431e19..12f2db077 100644 --- a/libs/react-helpers/src/lib/grid/numeric-cell.spec.tsx +++ b/libs/react-helpers/src/lib/grid/numeric-cell.spec.tsx @@ -1,6 +1,4 @@ import { render, screen } from '@testing-library/react'; -import '@testing-library/jest-dom/extend-expect'; - import { NumericCell } from './numeric-cell'; describe('NumericCell', () => { diff --git a/libs/react-helpers/src/lib/grid/price-flash-cell.spec.tsx b/libs/react-helpers/src/lib/grid/price-flash-cell.spec.tsx index 58619348d..1402c631b 100644 --- a/libs/react-helpers/src/lib/grid/price-flash-cell.spec.tsx +++ b/libs/react-helpers/src/lib/grid/price-flash-cell.spec.tsx @@ -1,6 +1,4 @@ import { render, screen } from '@testing-library/react'; -import '@testing-library/jest-dom/extend-expect'; - import { PriceFlashCell } from './price-flash-cell'; describe('', () => { diff --git a/libs/react-helpers/src/lib/grid/vol-cell.spec.tsx b/libs/react-helpers/src/lib/grid/vol-cell.spec.tsx new file mode 100644 index 000000000..9c3965c77 --- /dev/null +++ b/libs/react-helpers/src/lib/grid/vol-cell.spec.tsx @@ -0,0 +1,49 @@ +import { render, screen } from '@testing-library/react'; +import { VolCell, VolumeType } from './vol-cell'; +import * as tailwind from '@vegaprotocol/tailwindcss-config'; + +describe('VolCell', () => { + const significantPart = '12,345'; + const decimalPart = '67'; + const props = { + value: 1234567, + valueFormatted: `${significantPart}.${decimalPart}`, + type: VolumeType.ask, + testId: 'cell', + }; + + it('Displays formatted value', () => { + render(); + expect(screen.getByTestId(props.testId)).toHaveTextContent( + props.valueFormatted + ); + expect(screen.getByText(decimalPart)).toBeInTheDocument(); + expect(screen.getByText(decimalPart)).toHaveClass('opacity-60'); + }); + + it('Displays 0', () => { + render(); + expect(screen.getByTestId(props.testId)).toHaveTextContent('0.00'); + }); + + it('Displays - if value is not a number', () => { + render(); + expect(screen.getByTestId(props.testId)).toHaveTextContent('-'); + }); + + it('renders bid volume bar', () => { + render(); + expect(screen.getByTestId('vol-bar')).toHaveClass('left-0'); // renders bid bars from the left + expect(screen.getByTestId('vol-bar')).toHaveStyle({ + backgroundColor: tailwind.theme.colors.vega.green.DEFAULT, + }); + }); + + it('renders ask volume bar', () => { + render(); + expect(screen.getByTestId('vol-bar')).toHaveClass('right-0'); // renders ask bars from the right + expect(screen.getByTestId('vol-bar')).toHaveStyle({ + backgroundColor: tailwind.theme.colors.vega.pink.DEFAULT, + }); + }); +}); diff --git a/libs/react-helpers/src/lib/grid/vol-cell.tsx b/libs/react-helpers/src/lib/grid/vol-cell.tsx index b464c9c69..6bdd8a54c 100644 --- a/libs/react-helpers/src/lib/grid/vol-cell.tsx +++ b/libs/react-helpers/src/lib/grid/vol-cell.tsx @@ -8,7 +8,7 @@ export enum VolumeType { bid, ask, } -export interface VolProps { +export interface VolCellProps { value: number | bigint | null | undefined; valueFormatted: string; relativeValue?: number; @@ -17,20 +17,21 @@ export interface VolProps { } export interface IVolCellProps extends ICellRendererParams { value: number | bigint | null | undefined; - valueFormatted: Omit; + valueFormatted: Omit; } export const BID_COLOR = tailwind.theme.colors.vega.green.DEFAULT; export const ASK_COLOR = tailwind.theme.colors.vega.pink.DEFAULT; -export const Vol = React.memo( - ({ value, valueFormatted, relativeValue, type, testId }: VolProps) => { +export const VolCell = React.memo( + ({ value, valueFormatted, relativeValue, type, testId }: VolCellProps) => { if ((!value && value !== 0) || isNaN(Number(value))) { - return
-
; + return
-
; } return (