import Decimal from "decimal.js"; import { ControllerRenderProps } from "react-hook-form"; import { useTranslation } from "react-i18next"; import { selectedSymbolStore } from "../../../../store"; import { useOrderPlacingError } from "../../../useOrderPlacingError"; import { useStepSize } from "../../../useStepSize"; import { useStepValues } from "../../../useStepValues"; import { OcoOrderValues, SellForm } from "../types"; const ControllerLimit = ({ render, }: { render: (state: { field: ControllerRenderProps; }) => any; }) => { const { t } = useTranslation(); const { setValue: sellSetValue, getValues } = SellForm.useFormContext(); const { selectedSymbol } = selectedSymbolStore.useState(); const { toTickSize } = useStepSize(selectedSymbol?.symbol, "limit"); const { getPriceError } = useOrderPlacingError(); const { expectedValue, onChangeValue } = useStepValues( "limit", selectedSymbol?.symbol, true, ); return ( { return getPriceError({ symbol: selectedSymbol?.symbol, price: Number(value), }); }, }, }} render={({ field: { onChange, value, ...rest } }) => render({ field: { value: expectedValue(value), onChange: (limit) => { const { amount, price } = getValues(); if (limit && amount) { const stopPriceTotal = toTickSize( new Decimal(amount).mul(Number(price)), ); const limitTotal = toTickSize( new Decimal(amount).mul(Number(limit)), ); if (Number(stopPriceTotal) > Number(limitTotal)) { sellSetValue("total", stopPriceTotal); } else { sellSetValue("total", limitTotal); } } else { sellSetValue("total", ""); } onChange(onChangeValue(limit) || limit); }, ...rest, }, }) } /> ); }; export { ControllerLimit };