Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix : Pressing Tab button in AddressSearch inputs #6345

Merged
merged 5 commits into from
Nov 19, 2021
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion src/components/AddressSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const defaultProps = {
const AddressSearch = (props) => {
const googlePlacesRef = useRef();
const [displayListViewBorder, setDisplayListViewBorder] = useState(false);
const [isSelected, setIsSelected] = useState(true);
useEffect(() => {
if (!googlePlacesRef.current) {
return;
Expand Down Expand Up @@ -86,10 +87,18 @@ const AddressSearch = (props) => {
<GooglePlacesAutocomplete
ref={googlePlacesRef}
fetchDetails
onBlur={() => {
if (isSelected) {
NikkiWines marked this conversation as resolved.
Show resolved Hide resolved
return;
}

NikkiWines marked this conversation as resolved.
Show resolved Hide resolved
googlePlacesRef.current.setAddressText('');
}}
suppressDefaultStyles
enablePoweredByContainer={false}
onPress={(data, details) => {
saveLocationDetails(details);
setIsSelected(true);

// After we select an option, we set displayListViewBorder to false to prevent UI flickering
setDisplayListViewBorder(false);
Expand All @@ -109,9 +118,15 @@ const AddressSearch = (props) => {
label: props.label,
containerStyles: props.containerStyles,
errorText: props.errorText,
onKeyPress: (event) => {
if (event.key === 'Tab' && !isSelected) {
googlePlacesRef.current.setAddressText('');
}
},
onChangeText: (text) => {
const isTextValid = !_.isEmpty(text) && _.isEqual(text, props.value);

setIsSelected(false);

NikkiWines marked this conversation as resolved.
Show resolved Hide resolved
// Ensure whether an address is selected already or has address value initialized.
if (!_.isEmpty(googlePlacesRef.current.getAddressText()) && !isTextValid) {
saveLocationDetails({});
Expand Down