react-code-dataset / react-instantsearch /packages /react-instantsearch-hooks-web /src /ui /RangeInput.tsx
| import React, { useState } from 'react'; | |
| import { cx } from './lib/cx'; | |
| import type { useRange } from 'react-instantsearch-hooks'; | |
| type RangeRenderState = ReturnType<typeof useRange>; | |
| export type RangeInputProps = Omit<React.ComponentProps<'div'>, 'onSubmit'> & | |
| Pick<RangeRenderState, 'range' | 'start'> & { | |
| classNames?: Partial<RangeInputClassNames>; | |
| disabled: boolean; | |
| onSubmit: RangeRenderState['refine']; | |
| step?: number; | |
| translations: RangeInputTranslations; | |
| }; | |
| export type RangeInputClassNames = { | |
| /** | |
| * Class names to apply to the root element | |
| */ | |
| root: string; | |
| /** | |
| * Class names to apply to the root element when there are no refinements possible | |
| */ | |
| noRefinementRoot: string; | |
| /** | |
| * Class names to apply to the form element | |
| */ | |
| form: string; | |
| /** | |
| * Class names to apply to each label element | |
| */ | |
| label: string; | |
| /** | |
| * Class names to apply to each input element | |
| */ | |
| input: string; | |
| /** | |
| * Class names to apply to the minimum input element | |
| */ | |
| inputMin: string; | |
| /** | |
| * Class names to apply to the maximum input element | |
| */ | |
| inputMax: string; | |
| /** | |
| * Class names to apply to the separator element | |
| */ | |
| separator: string; | |
| /** | |
| * Class names to apply to the submit button | |
| */ | |
| submit: string; | |
| }; | |
| export type RangeInputTranslations = { | |
| /** | |
| * The label of the separator, between the minimum and maximum inputs | |
| */ | |
| separatorElementText: string; | |
| /** | |
| * The label of the submit button | |
| */ | |
| submitButtonText: string; | |
| }; | |
| // if the default value is undefined, React considers the component uncontrolled initially, which we don't want 0 or NaN as the default value | |
| const unsetNumberInputValue = '' as unknown as number; | |
| export function RangeInput({ | |
| classNames = {}, | |
| range: { min, max }, | |
| start: [minValue, maxValue], | |
| step = 1, | |
| disabled, | |
| onSubmit, | |
| translations, | |
| ...props | |
| }: RangeInputProps) { | |
| const values = { | |
| min: | |
| minValue !== -Infinity && minValue !== min | |
| ? minValue | |
| : unsetNumberInputValue, | |
| max: | |
| maxValue !== Infinity && maxValue !== max | |
| ? maxValue | |
| : unsetNumberInputValue, | |
| }; | |
| const [prevValues, setPrevValues] = useState(values); | |
| const [{ from, to }, setRange] = useState({ | |
| from: values.min, | |
| to: values.max, | |
| }); | |
| if (values.min !== prevValues.min || values.max !== prevValues.max) { | |
| setRange({ from: values.min, to: values.max }); | |
| setPrevValues(values); | |
| } | |
| return ( | |
| <div | |
| {...props} | |
| className={cx( | |
| cx('ais-RangeInput', classNames.root), | |
| disabled && | |
| cx('ais-RangeInput--noRefinement', classNames.noRefinementRoot), | |
| props.className | |
| )} | |
| > | |
| <form | |
| className={cx('ais-RangeInput-form', classNames.form)} | |
| onSubmit={(event) => { | |
| event.preventDefault(); | |
| onSubmit([from, to]); | |
| }} | |
| > | |
| <label className={cx('ais-RangeInput-label', classNames.label)}> | |
| <input | |
| className={cx( | |
| 'ais-RangeInput-input', | |
| classNames.input, | |
| 'ais-RangeInput-input--min', | |
| classNames.inputMin | |
| )} | |
| type="number" | |
| min={min} | |
| max={max} | |
| value={from?.toString()} // Strips leading `0` from a positive number value | |
| step={step} | |
| placeholder={min?.toString()} | |
| disabled={disabled} | |
| onInput={({ currentTarget }) => | |
| setRange({ from: Number(currentTarget.value), to }) | |
| } | |
| /> | |
| </label> | |
| <span className={cx('ais-RangeInput-separator', classNames.separator)}> | |
| {translations.separatorElementText} | |
| </span> | |
| <label className={cx('ais-RangeInput-label', classNames.label)}> | |
| <input | |
| className={cx( | |
| 'ais-RangeInput-input', | |
| classNames.input, | |
| 'ais-RangeInput-input--max', | |
| classNames.inputMax | |
| )} | |
| type="number" | |
| min={min} | |
| max={max} | |
| value={to?.toString()} // Strips leading `0` from a positive number value | |
| step={step} | |
| placeholder={max?.toString()} | |
| disabled={disabled} | |
| onInput={({ currentTarget }) => | |
| setRange({ from, to: Number(currentTarget.value) }) | |
| } | |
| /> | |
| </label> | |
| <button | |
| className={cx('ais-RangeInput-submit', classNames.submit)} | |
| type="submit" | |
| > | |
| {translations.submitButtonText} | |
| </button> | |
| </form> | |
| </div> | |
| ); | |
| } | |