import Decimal from "decimal.js"; import { ControllerRenderProps } from "react-hook-form"; import { useTranslation } from "react-i18next"; import { selectedSymbolStore } from "../../../../store"; import { useMarketTicker } from "../../../marketTicker"; import { useOrderPlacingError } from "../../../useOrderPlacingError"; import { useStepValues } from "../../../useStepValues"; import { OcoOrderValues, SellForm } from "../types"; const ControllerStopPrice = ({ render, }: { render: (state: { field: ControllerRenderProps; }) => any; }) => { const { selectedSymbol } = selectedSymbolStore.useState(); const { t } = useTranslation(); const { getPriceError } = useOrderPlacingError(); const { getSymbolMarketTicker } = useMarketTicker(); const market = getSymbolMarketTicker(selectedSymbol?.symbol); const { expectedValue, onChangeValue } = useStepValues( "limit", selectedSymbol?.symbol, true, ); return ( { if ( value && new Decimal(value).greaterThanOrEqualTo(market?.lastPrice || 0) ) { return t("stopPriceShouldBeLessThanLastPrice"); } return getPriceError({ symbol: selectedSymbol?.symbol, price: Number(value), }); }, }, }} render={({ field: { onChange, value, ...rest } }) => render({ field: { value: expectedValue(value), onChange: (_value) => onChange(onChangeValue(_value) || _value), ...rest, }, }) } /> ); }; export { ControllerStopPrice };