refactor: Improve location input component structure and type handling

- Extracted base location input component for better separation of concerns
- Updated ref handling to support forwarded refs
- Improved type safety with explicit ref prop
- Minor improvements to input value handling and suggestion logic
This commit is contained in:
RustamRu 2025-03-11 23:08:27 +03:00
parent 2f8a172b12
commit 3f4e077f7c

View File

@ -1,4 +1,4 @@
import React, { forwardRef, memo, useEffect, useState } from 'react';
import React, { ForwardedRef, forwardRef, memo, useEffect, useState } from 'react';
import {
Input,
Box,
@ -24,12 +24,8 @@ import {
} from './helper';
import { LocationInputProps } from './types';
export const LocationInput = memo(
withYMaps(
forwardRef<HTMLInputElement, LocationInputProps>(function LocationInput(
{ ymaps, value, onChange, ...props },
ref,
) {
export const BaseLocationInput = withYMaps(
({ ymaps, value = '', onChange, inputRef, ...props }: LocationInputProps & { inputRef: ForwardedRef<HTMLInputElement> }) => {
const [inputValue, setInputValue] = useState<string>('');
useEffect(() => {
@ -109,9 +105,9 @@ export const LocationInput = memo(
<PopoverAnchor>
<Input
{...props}
ref={ref}
ref={inputRef}
onBlur={onBlur}
value={inputValue ?? value}
value={inputValue || value}
onChange={onInputChange}
onFocus={onFocus}
placeholder={t('placeholder')}
@ -142,11 +138,16 @@ export const LocationInput = memo(
</Popover>
</Box>
);
}),
},
true,
['suggest', 'geocode'],
),
);
export const LocationInput = memo(forwardRef<HTMLInputElement, LocationInputProps>(
function LocationInput(props, ref) {
return <BaseLocationInput {...props} inputRef={ref} />;
},
));
// todo: i18n
// todo: replace console.error with toast