diff --git a/src/components/order-form/form/location/location-input/location-input.tsx b/src/components/order-form/form/location/location-input/location-input.tsx index e28f18c..6008c50 100644 --- a/src/components/order-form/form/location/location-input/location-input.tsx +++ b/src/components/order-form/form/location/location-input/location-input.tsx @@ -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,129 +24,130 @@ import { } from './helper'; import { LocationInputProps } from './types'; -export const LocationInput = memo( - withYMaps( - forwardRef(function LocationInput( - { ymaps, value, onChange, ...props }, - ref, - ) { - const [inputValue, setInputValue] = useState(''); +export const BaseLocationInput = withYMaps( + ({ ymaps, value = '', onChange, inputRef, ...props }: LocationInputProps & { inputRef: ForwardedRef }) => { + const [inputValue, setInputValue] = useState(''); - useEffect(() => { - setInputValue(value); - }, [value]); + useEffect(() => { + setInputValue(value); + }, [value]); - const [suggestions, setSuggestions] = useState([]); - const [isSuggestionsPanelOpen, setIsSuggestionsPanelOpen] = - useState(false); + const [suggestions, setSuggestions] = useState([]); + const [isSuggestionsPanelOpen, setIsSuggestionsPanelOpen] = + useState(false); - const onInputChange: InputProps['onChange'] = async (e) => { - const newInputValue = e.target.value; + const onInputChange: InputProps['onChange'] = async (e) => { + const newInputValue = e.target.value; - if ( - isValidLocation(newInputValue) && - (await isRealLocation(ymaps, newInputValue)) - ) { - onChange(newInputValue); - } else { - setInputValue(newInputValue); - - if (newInputValue.trim().length > 3) { - try { - const address = extractAddress(newInputValue); - const results = await ymaps.suggest(address); - setSuggestions(results); - } catch (error) { - console.error(error); - } - } else { - setSuggestions([]); + if ( + isValidLocation(newInputValue) && + (await isRealLocation(ymaps, newInputValue)) + ) { + onChange(newInputValue); + } else { + setInputValue(newInputValue); + + if (newInputValue.trim().length > 3) { + try { + const address = extractAddress(newInputValue); + const results = await ymaps.suggest(address); + setSuggestions(results); + } catch (error) { + console.error(error); } - - setIsSuggestionsPanelOpen(suggestions.length > 1); - } - }; - - const onFocus: InputProps['onFocus'] = () => { - setIsSuggestionsPanelOpen(suggestions.length > 1); - }; - - const onBlur: InputProps['onBlur'] = async (e) => { - const inputValue = e.target.value; - if ( - isValidLocation(inputValue) && - (await isRealLocation(ymaps, inputValue)) - ) { - onChange(inputValue); } else { - setInputValue(value); + setSuggestions([]); } - setIsSuggestionsPanelOpen(false); - }; - const handleSuggestionClick = async ({ value: address }: Suggestion) => { - try { - const location = await getLocationByAddress(ymaps, address); - const newValue = formatLocation(location); - setInputValue(newValue); - onChange(newValue); - } catch (error) { - console.error(error); - } - }; + setIsSuggestionsPanelOpen(suggestions.length > 1); + } + }; - const { t } = useTranslation('~', { - keyPrefix: 'dry-wash.order-create.form.washing-location-field', - }); + const onFocus: InputProps['onFocus'] = () => { + setIsSuggestionsPanelOpen(suggestions.length > 1); + }; - return ( - - - - - - - - - {suggestions.map((suggestion, index) => ( - handleSuggestionClick(suggestion)} - > - {suggestion.displayName} - - ))} - - - - - - ); - }), - true, - ['suggest', 'geocode'], - ), + const onBlur: InputProps['onBlur'] = async (e) => { + const inputValue = e.target.value; + if ( + isValidLocation(inputValue) && + (await isRealLocation(ymaps, inputValue)) + ) { + onChange(inputValue); + } else { + setInputValue(value); + } + setIsSuggestionsPanelOpen(false); + }; + + const handleSuggestionClick = async ({ value: address }: Suggestion) => { + try { + const location = await getLocationByAddress(ymaps, address); + const newValue = formatLocation(location); + setInputValue(newValue); + onChange(newValue); + } catch (error) { + console.error(error); + } + }; + + const { t } = useTranslation('~', { + keyPrefix: 'dry-wash.order-create.form.washing-location-field', + }); + + return ( + + + + + + + + + {suggestions.map((suggestion, index) => ( + handleSuggestionClick(suggestion)} + > + {suggestion.displayName} + + ))} + + + + + + ); + }, + true, + ['suggest', 'geocode'], ); +export const LocationInput = memo(forwardRef( + function LocationInput(props, ref) { + return ; + }, +)); + // todo: i18n // todo: replace console.error with toast