import Decimal from "decimal.js"; import { ControllerRenderProps } from "react-hook-form"; import { selectedSymbolStore } from "../../../../store"; import { useOrderPlacingError } from "../../../useOrderPlacingError"; import { useStepSize } from "../../../useStepSize"; import { useStepValues } from "../../../useStepValues"; import { BuyForm, StopLimitOrderValues } from "../types"; const ControllerPrice = ({ render, }: { render: (state: { field: ControllerRenderProps; }) => any; }) => { const { selectedSymbol } = selectedSymbolStore.useState(); const { setValue, getValues, trigger } = BuyForm.useFormContext(); 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: (_value) => { onChange(onChangeValue(_value) || _value); const { amount } = getValues(); setValue( "total", amount && _value ? toTickSize(new Decimal(amount).mul(Number(_value))) : "", ); trigger(["total"]); }, ...rest, }, }) } /> ); }; export { ControllerPrice };