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