fix: fill location from autocomplete (#71)
All checks were successful
it-academy/dry-wash-pl/pipeline/head This commit looks good
it-academy/dry-wash-pl/pipeline/pr-main This commit looks good

This commit is contained in:
RustamRu 2025-01-26 15:47:53 +03:00
parent 1471bf94dd
commit 4c26928d23

View File

@ -42,6 +42,13 @@ export const LocationInput = memo(
const onInputChange: InputProps['onChange'] = async (e) => { const onInputChange: InputProps['onChange'] = async (e) => {
const newInputValue = e.target.value; const newInputValue = e.target.value;
if (
isValidLocation(newInputValue) &&
(await isRealLocation(ymaps, newInputValue))
) {
onChange(newInputValue);
} else {
setInputValue(newInputValue); setInputValue(newInputValue);
if (newInputValue.trim().length > 3) { if (newInputValue.trim().length > 3) {
@ -57,6 +64,7 @@ export const LocationInput = memo(
} }
setIsSuggestionsPanelOpen(suggestions.length > 1); setIsSuggestionsPanelOpen(suggestions.length > 1);
}
}; };
const onFocus: InputProps['onFocus'] = () => { const onFocus: InputProps['onFocus'] = () => {
@ -103,7 +111,7 @@ export const LocationInput = memo(
{...props} {...props}
ref={ref} ref={ref}
onBlur={onBlur} onBlur={onBlur}
value={inputValue} value={inputValue ?? value}
onChange={onInputChange} onChange={onInputChange}
onFocus={onFocus} onFocus={onFocus}
placeholder={t('placeholder')} placeholder={t('placeholder')}