import { useState, useCallback } from 'react'; import type { ErrorSchema, FieldPathList, FieldProps, FormContextType, RJSFSchema, StrictRJSFSchema, } from '@rjsf/utils'; import { asNumber, getDecimalSeparator, getUiOptions, optionsList } from '@rjsf/utils'; // Static matchers for standard '.' separator used during normalization inside handleChange const trailingCharMatcherWithPrefix = /\.([0-9]*0)*$/; const trailingCharMatcher = /[0.]0*$/; /** * The NumberField class has some special handling for dealing with trailing * decimal points and/or zeroes. This logic is designed to allow trailing values * to be visible in the input element, but not be represented in the * corresponding form data. * * The algorithm is as follows: * * 1. When the input value changes the value is cached in the component state * * 2. The value is then normalized, removing trailing decimal points and zeros, * then passed to the "onChange" callback * * 3. When the component is rendered, the formData value is checked against the * value cached in the state. If it matches the cached value, the cached * value is passed to the input instead of the formData value */ function NumberField( props: FieldProps, ) { const { registry, onChange, formData, value: initialValue } = props; const [lastValue, setLastValue] = useState(initialValue); const { StringField } = registry.fields; const separator = getDecimalSeparator(); const escapedSeparator = separator === '.' ? '\\.' : separator; let value = formData; /** Handle the change from the `StringField` to properly convert to a number * * @param value - The current value for the change occurring */ const handleChange = useCallback( (newValue: FieldProps['value'], path: FieldPathList, errorSchema?: ErrorSchema, id?: string) => { // Cache the original value in component state setLastValue(newValue); // Convert locale separator to standard '.' first const standardValue = typeof newValue === 'string' ? newValue.replace(separator, '.') : newValue; // Normalize decimals that don't start with a zero character in advance so // that the rest of the normalization logic is simpler const normalizedValue = `${standardValue}`.startsWith('.') ? `0${standardValue}` : standardValue; // Check that the value is a string (this can happen if the widget used is a //