Use new redux tradeFormInputs object for TradingForm input display values (#144)
* Redux slice for TradeFormInputs * Move sideEffects from TradeForm to hook in Trade
This commit is contained in:
@@ -5,7 +5,7 @@ import { createSelector } from 'reselect';
|
||||
|
||||
import { TradeInputField } from '@/constants/abacus';
|
||||
import { TradeTypes } from '@/constants/trade';
|
||||
import { STRING_KEYS } from '@/constants/localization';
|
||||
import { STRING_KEYS, StringKey } from '@/constants/localization';
|
||||
import { useStringGetter } from '@/hooks';
|
||||
import { layoutMixins } from '@/styles/layoutMixins';
|
||||
|
||||
@@ -30,7 +30,8 @@ const useTradeTypeOptions = () => {
|
||||
const allTradeTypeItems = typeOptions?.toArray()?.map(({ type, stringKey }) => ({
|
||||
value: type,
|
||||
label: stringGetter({
|
||||
key: type === TradeTypes.TAKE_PROFIT ? STRING_KEYS.TAKE_PROFIT_LIMIT : stringKey,
|
||||
key:
|
||||
type === TradeTypes.TAKE_PROFIT ? STRING_KEYS.TAKE_PROFIT_LIMIT : (stringKey as StringKey),
|
||||
}),
|
||||
}));
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { type FormEvent, useState, Ref, useCallback } from 'react';
|
||||
import { type FormEvent, useState, Ref, useCallback, useEffect } from 'react';
|
||||
import styled, { AnyStyledComponent, css } from 'styled-components';
|
||||
import { shallowEqual, useSelector } from 'react-redux';
|
||||
import { shallowEqual, useDispatch, useSelector } from 'react-redux';
|
||||
import type { NumberFormatValues, SourceInfo } from 'react-number-format';
|
||||
|
||||
import { AlertType } from '@/constants/alerts';
|
||||
@@ -37,7 +37,8 @@ import { WithTooltip } from '@/components/WithTooltip';
|
||||
|
||||
import { Orderbook } from '@/views/tables/Orderbook';
|
||||
|
||||
import { getCurrentInput, useTradeFormData } from '@/state/inputsSelectors';
|
||||
import { setTradeFormInputs } from '@/state/inputs';
|
||||
import { getCurrentInput, getTradeFormInputs, useTradeFormData } from '@/state/inputsSelectors';
|
||||
import { getCurrentMarketConfig } from '@/state/perpetualsSelectors';
|
||||
|
||||
import abacusStateManager from '@/lib/abacus';
|
||||
@@ -80,6 +81,7 @@ export const TradeForm = ({
|
||||
const [placeOrderError, setPlaceOrderError] = useState<string>();
|
||||
const [showOrderbook, setShowOrderbook] = useState(false);
|
||||
|
||||
const dispatch = useDispatch();
|
||||
const stringGetter = useStringGetter();
|
||||
const { placeOrder } = useSubaccount();
|
||||
|
||||
@@ -98,18 +100,21 @@ export const TradeForm = ({
|
||||
tradeErrors,
|
||||
} = useTradeFormData();
|
||||
|
||||
const { limitPrice, triggerPrice, trailingPercent } = price || {};
|
||||
const currentInput = useSelector(getCurrentInput);
|
||||
const { tickSizeDecimals, stepSizeDecimals } =
|
||||
useSelector(getCurrentMarketConfig, shallowEqual) || {};
|
||||
|
||||
const tradeFormInputValues = useSelector(getTradeFormInputs, shallowEqual);
|
||||
const { limitPriceInput, triggerPriceInput, trailingPercentInput } = tradeFormInputValues;
|
||||
|
||||
const needsAdvancedOptions =
|
||||
needsGoodUntil || timeInForceOptions || executionOptions || needsPostOnly || needsReduceOnly;
|
||||
|
||||
const tradeFormInputs: TradeBoxInputConfig[] = [];
|
||||
|
||||
const isInputFilled =
|
||||
Object.values(price || {}).some((val) => val != null) ||
|
||||
Object.values(tradeFormInputValues).some((val) => val !== '') ||
|
||||
Object.values(price || {}).some((val) => !!val) ||
|
||||
[size?.size, size?.usdcSize, size?.leverage].some((val) => val != null);
|
||||
|
||||
const hasInputErrors =
|
||||
@@ -197,13 +202,10 @@ export const TradeForm = ({
|
||||
<Tag>USD</Tag>
|
||||
</>
|
||||
),
|
||||
onChange: ({ floatValue }: NumberFormatValues) => {
|
||||
abacusStateManager.setTradeValue({
|
||||
value: floatValue,
|
||||
field: TradeInputField.triggerPrice,
|
||||
});
|
||||
onChange: ({ value }: NumberFormatValues) => {
|
||||
dispatch(setTradeFormInputs({ triggerPriceInput: value }));
|
||||
},
|
||||
value: triggerPrice ?? '',
|
||||
value: triggerPriceInput ?? '',
|
||||
decimals: tickSizeDecimals || USD_DECIMALS,
|
||||
});
|
||||
}
|
||||
@@ -220,10 +222,10 @@ export const TradeForm = ({
|
||||
<Tag>USD</Tag>
|
||||
</>
|
||||
),
|
||||
onChange: ({ floatValue }: NumberFormatValues) => {
|
||||
abacusStateManager.setTradeValue({ value: floatValue, field: TradeInputField.limitPrice });
|
||||
onChange: ({ value }: NumberFormatValues) => {
|
||||
dispatch(setTradeFormInputs({ limitPriceInput: value }));
|
||||
},
|
||||
value: limitPrice ?? '',
|
||||
value: limitPriceInput,
|
||||
decimals: tickSizeDecimals || USD_DECIMALS,
|
||||
});
|
||||
}
|
||||
@@ -237,13 +239,10 @@ export const TradeForm = ({
|
||||
{stringGetter({ key: STRING_KEYS.TRAILING_PERCENT })}
|
||||
</WithTooltip>
|
||||
),
|
||||
onChange: ({ floatValue }: NumberFormatValues) => {
|
||||
abacusStateManager.setTradeValue({
|
||||
value: floatValue,
|
||||
field: TradeInputField.trailingPercent,
|
||||
});
|
||||
onChange: ({ value }: NumberFormatValues) => {
|
||||
dispatch(setTradeFormInputs({ trailingPercentInput: value }));
|
||||
},
|
||||
value: trailingPercent ?? '',
|
||||
value: trailingPercentInput ?? '',
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -30,8 +30,8 @@ import { getSelectedOrderSide, hasPositionSideChanged } from '@/lib/tradeData';
|
||||
import { LeverageSlider } from './LeverageSlider';
|
||||
|
||||
type ElementProps = {
|
||||
leverageInputValue: Nullable<number>;
|
||||
setLeverageInputValue: Dispatch<SetStateAction<Nullable<number>>>;
|
||||
leverageInputValue: string;
|
||||
setLeverageInputValue: (value: string) => void;
|
||||
};
|
||||
|
||||
export const MarketLeverageInput = ({
|
||||
@@ -66,7 +66,7 @@ export const MarketLeverageInput = ({
|
||||
const newLeverage = MustBigNumber(floatValue).toFixed();
|
||||
|
||||
if (value === '' || newLeverage === 'NaN' || !floatValue) {
|
||||
setLeverageInputValue(null);
|
||||
setLeverageInputValue('');
|
||||
abacusStateManager.setTradeValue({
|
||||
value: null,
|
||||
field: TradeInputField.leverage,
|
||||
@@ -84,7 +84,7 @@ export const MarketLeverageInput = ({
|
||||
? newLeverageBN.abs().negated()
|
||||
: newLeverageBN.abs();
|
||||
|
||||
setLeverageInputValue(newLeverageSignedBN.toNumber());
|
||||
setLeverageInputValue(newLeverageSignedBN.toString());
|
||||
|
||||
abacusStateManager.setTradeValue({
|
||||
value: newLeverageSignedBN.toFixed(LEVERAGE_DECIMALS),
|
||||
@@ -98,11 +98,11 @@ export const MarketLeverageInput = ({
|
||||
if (leveragePosition === PositionSide.None) return;
|
||||
|
||||
const inputValue = leverageInputValue || currentLeverage;
|
||||
const newInputValue = MustBigNumber(inputValue).negated().toNumber();
|
||||
const newInputValue = MustBigNumber(inputValue).negated().toFixed(LEVERAGE_DECIMALS);
|
||||
|
||||
setLeverageInputValue(newInputValue);
|
||||
abacusStateManager.setTradeValue({
|
||||
value: newInputValue.toFixed(LEVERAGE_DECIMALS),
|
||||
value: newInputValue,
|
||||
field: TradeInputField.leverage,
|
||||
});
|
||||
};
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { useEffect, useState } from 'react';
|
||||
import { shallowEqual, useSelector } from 'react-redux';
|
||||
import { shallowEqual, useDispatch, useSelector } from 'react-redux';
|
||||
import styled, { AnyStyledComponent } from 'styled-components';
|
||||
|
||||
import { TradeInputField } from '@/constants/abacus';
|
||||
@@ -20,8 +20,13 @@ import { Icon, IconName } from '@/components/Icon';
|
||||
import { ToggleButton } from '@/components/ToggleButton';
|
||||
|
||||
import { getCurrentMarketAssetData } from '@/state/assetsSelectors';
|
||||
import { setTradeFormInputs } from '@/state/inputs';
|
||||
|
||||
import { getInputTradeSizeData, getInputTradeOptions } from '@/state/inputsSelectors';
|
||||
import {
|
||||
getInputTradeSizeData,
|
||||
getInputTradeOptions,
|
||||
getTradeFormInputs,
|
||||
} from '@/state/inputsSelectors';
|
||||
|
||||
import { getCurrentMarketConfig } from '@/state/perpetualsSelectors';
|
||||
|
||||
@@ -31,12 +36,8 @@ import { MustBigNumber } from '@/lib/numbers';
|
||||
import { MarketLeverageInput } from './MarketLeverageInput';
|
||||
|
||||
export const TradeSizeInputs = () => {
|
||||
const [sizeInputValue, setSizeInputValue] = useState<number | null>();
|
||||
const [usdcInputValue, setUsdcInputValue] = useState<number | null>();
|
||||
const [leverageInputValue, setLeverageInputValue] = useState<number | null>();
|
||||
|
||||
const [showUSDCInputOnTablet, setShowUSDCInputOnTablet] = useState(false);
|
||||
|
||||
const dispatch = useDispatch();
|
||||
const stringGetter = useStringGetter();
|
||||
const { isTablet } = useBreakpoints();
|
||||
|
||||
@@ -50,24 +51,27 @@ export const TradeSizeInputs = () => {
|
||||
const { needsLeverage } = currentTradeInputOptions || {};
|
||||
const decimals = stepSizeDecimals || TOKEN_DECIMALS;
|
||||
|
||||
const { amountInput, usdAmountInput, leverageInput } = useSelector(
|
||||
getTradeFormInputs,
|
||||
shallowEqual
|
||||
);
|
||||
|
||||
// Update State variables if their inputs are not being source of calculations
|
||||
// Or if they have been reset to null
|
||||
useEffect(() => {
|
||||
if (lastEditedInput !== TradeSizeInput.Size || size == null) {
|
||||
// Abacus size already respects step size
|
||||
// using .toFixed to prevent trailing zeros and exponential notation
|
||||
setSizeInputValue(size);
|
||||
dispatch(setTradeFormInputs({ amountInput: size ? size.toString() : '' }));
|
||||
}
|
||||
if (lastEditedInput !== TradeSizeInput.Usdc || usdcSize == null) {
|
||||
setUsdcInputValue(usdcSize);
|
||||
dispatch(setTradeFormInputs({ usdAmountInput: usdcSize ? usdcSize.toString() : '' }));
|
||||
}
|
||||
if (lastEditedInput !== TradeSizeInput.Leverage || leverage == null) {
|
||||
setLeverageInputValue(leverage);
|
||||
dispatch(setTradeFormInputs({ leverageInput: leverage ? leverage.toString() : '' }));
|
||||
}
|
||||
}, [size, usdcSize, leverage, lastEditedInput]);
|
||||
|
||||
const onSizeInput = ({ value, floatValue }: { value: string; floatValue?: number }) => {
|
||||
setSizeInputValue(floatValue);
|
||||
dispatch(setTradeFormInputs({ amountInput: value }));
|
||||
const newAmount = MustBigNumber(floatValue).toFixed(decimals);
|
||||
|
||||
abacusStateManager.setTradeValue({
|
||||
@@ -77,7 +81,7 @@ export const TradeSizeInputs = () => {
|
||||
};
|
||||
|
||||
const onUSDCInput = ({ value, floatValue }: { value: string; floatValue?: number }) => {
|
||||
setUsdcInputValue(floatValue);
|
||||
dispatch(setTradeFormInputs({ usdAmountInput: value }));
|
||||
const newUsdcAmount = MustBigNumber(floatValue).toFixed();
|
||||
|
||||
abacusStateManager.setTradeValue({
|
||||
@@ -113,7 +117,7 @@ export const TradeSizeInputs = () => {
|
||||
}
|
||||
slotRight={isTablet && inputToggleButton}
|
||||
type={InputType.Number}
|
||||
value={sizeInputValue || ''}
|
||||
value={amountInput || ''}
|
||||
/>
|
||||
);
|
||||
|
||||
@@ -122,7 +126,7 @@ export const TradeSizeInputs = () => {
|
||||
id="trade-usdc"
|
||||
onInput={onUSDCInput}
|
||||
type={InputType.Currency}
|
||||
value={usdcInputValue || ''}
|
||||
value={usdAmountInput || ''}
|
||||
decimals={tickSizeDecimals || USD_DECIMALS}
|
||||
label={
|
||||
<>
|
||||
@@ -153,8 +157,10 @@ export const TradeSizeInputs = () => {
|
||||
|
||||
{needsLeverage && (
|
||||
<MarketLeverageInput
|
||||
leverageInputValue={leverageInputValue}
|
||||
setLeverageInputValue={setLeverageInputValue}
|
||||
leverageInputValue={leverageInput}
|
||||
setLeverageInputValue={(value: string) =>
|
||||
dispatch(setTradeFormInputs({ leverageInput: value }))
|
||||
}
|
||||
/>
|
||||
)}
|
||||
</Styled.Column>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { useCallback, useEffect, useMemo, useState } from 'react';
|
||||
import { shallowEqual, useSelector } from 'react-redux';
|
||||
import { shallowEqual, useDispatch, useSelector } from 'react-redux';
|
||||
import styled, { type AnyStyledComponent, css, keyframes } from 'styled-components';
|
||||
|
||||
import { OrderSide } from '@dydxprotocol/v4-client-js';
|
||||
@@ -9,13 +9,13 @@ import { STRING_KEYS } from '@/constants/localization';
|
||||
import { useBreakpoints, useStringGetter } from '@/hooks';
|
||||
|
||||
import { calculateCanViewAccount } from '@/state/accountCalculators';
|
||||
import { setTradeFormInputs } from '@/state/inputs';
|
||||
|
||||
import { getSubaccountOpenOrdersBySideAndPrice } from '@/state/accountSelectors';
|
||||
import { getCurrentMarketAssetData } from '@/state/assetsSelectors';
|
||||
import { getCurrentMarketConfig, getCurrentMarketOrderbook } from '@/state/perpetualsSelectors';
|
||||
import { getCurrentInput } from '@/state/inputsSelectors';
|
||||
|
||||
import abacusStateManager from '@/lib/abacus';
|
||||
import { MustBigNumber } from '@/lib/numbers';
|
||||
|
||||
import { Details } from '@/components/Details';
|
||||
@@ -208,7 +208,6 @@ const OrderbookTable = ({
|
||||
// Style props
|
||||
histogramSide={histogramSide}
|
||||
hideHeader={hideHeader}
|
||||
withFocusStickyRows
|
||||
style={{
|
||||
'--histogram-range': histogramRange,
|
||||
}}
|
||||
@@ -223,11 +222,12 @@ export const Orderbook = ({
|
||||
maxRowsPerSide = ORDERBOOK_MAX_ROWS_PER_SIDE,
|
||||
hideHeader = false,
|
||||
}: ElementProps & StyleProps) => {
|
||||
const dispatch = useDispatch();
|
||||
const stringGetter = useStringGetter();
|
||||
const { isTablet } = useBreakpoints();
|
||||
|
||||
const currentInput = useSelector(getCurrentInput);
|
||||
const { symbol = '' } = useSelector(getCurrentMarketAssetData, shallowEqual) ?? {};
|
||||
const { id = '' } = useSelector(getCurrentMarketAssetData, shallowEqual) ?? {};
|
||||
const { stepSizeDecimals, tickSizeDecimals } =
|
||||
useSelector(getCurrentMarketConfig, shallowEqual) ?? {};
|
||||
|
||||
@@ -274,18 +274,16 @@ export const Orderbook = ({
|
||||
|
||||
const onRowAction = useCallback(
|
||||
(key: string, row: RowData) => {
|
||||
if (currentInput === 'trade' && key !== 'spread' && row?.price)
|
||||
abacusStateManager.setTradeValue({
|
||||
value: row?.price,
|
||||
field: TradeInputField.limitPrice,
|
||||
});
|
||||
if (currentInput === 'trade' && key !== 'spread' && row?.price) {
|
||||
dispatch(setTradeFormInputs({ limitPriceInput: row?.price?.toString() }));
|
||||
}
|
||||
},
|
||||
[currentInput]
|
||||
);
|
||||
|
||||
const orderbookTableProps = {
|
||||
showMineColumn,
|
||||
symbol,
|
||||
symbol: id,
|
||||
stepSizeDecimals,
|
||||
tickSizeDecimals,
|
||||
histogramRange,
|
||||
@@ -510,17 +508,21 @@ Styled.OrderbookTable = styled(OrderbookTradesTable)<StyleProps>`
|
||||
content: '';
|
||||
}
|
||||
|
||||
&:not(:active):is(:focus-visible, :focus-within) {
|
||||
${orderbookMixins.scrollSnapItem}
|
||||
z-index: 2;
|
||||
${({ withFocusStickyRows }) =>
|
||||
withFocusStickyRows &&
|
||||
css`
|
||||
&:not(:active):is(:focus-visible, :focus-within) {
|
||||
${orderbookMixins.scrollSnapItem}
|
||||
z-index: 2;
|
||||
|
||||
&[data-side='bid'] {
|
||||
top: calc(var(--stickyArea-totalInsetTop) + var(--orderbook-spreadRowHeight));
|
||||
}
|
||||
&[data-side='ask'] {
|
||||
bottom: calc(var(--stickyArea-totalInsetBottom) + var(--orderbook-spreadRowHeight));
|
||||
}
|
||||
}
|
||||
&[data-side='bid'] {
|
||||
top: calc(var(--stickyArea-totalInsetTop) + var(--orderbook-spreadRowHeight));
|
||||
}
|
||||
&[data-side='ask'] {
|
||||
bottom: calc(var(--stickyArea-totalInsetBottom) + var(--orderbook-spreadRowHeight));
|
||||
}
|
||||
}
|
||||
`}
|
||||
}
|
||||
|
||||
${Styled.HorizontalLayout} & {
|
||||
|
||||
Reference in New Issue
Block a user