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

Valid values are cleared on blur if viewValue and component's idea of currentPlace are not equivalent #27

Open
madisonscott opened this issue Aug 12, 2022 · 0 comments · May be fixed by #28

Comments

@madisonscott
Copy link

In our codebase, we use the GooglePlacesAutocomplete component to accept user-input for Facility locations, but also to display locations for Facilities that have already been saved to our database.

<GooglePlacesAutocomplete
    apiKey={GOOGLE_MAPS_API_KEY}
    viewValue={facility.city ? formatCity(facility.city) : ''}
    types={['(cities)']}
    fields={['geometry', 'formatted_address', 'address_components']}
    on:placeChanged={e => handlePlaceChange(e, facility)}
    on:clear={() => handlePlaceChange(null, facility)}
/>

<script>
  export function formatCity(city: City, short = false): string {
    if (!city?.name) {
      return 'Unknown city';
    }
    const locationParts = [city.name];
    if (city.state && city.state !== last(locationParts)) {
      locationParts.push(city.state);
    }
    if (city.country.shortCode !== 'US') {
      locationParts.push(short ? city.country.shortCode : city.country.name);
    }
    return locationParts.join(', ');
  }
</script>

For existing Facilities in our implementation:

  • We make use of the viewValue prop to be able to show our saved location
  • However, currentPlace is not set upon initialization of the field
  • Therefore, if you click into the input field, then click out, the blur function calls clear because viewValue !== currentPlace?.[viewLabel]

For new Facilities in our implementation:

  • If the location entered is in Canada and you click into the field then out, blur does NOT call clear because our viewValue formats the location in the same way as currentPlace[viewLabel]
  • If the location entered is in the US and you click into the field then out, blur DOES call clear because our viewValue formatting drops "USA" off of the location, therefore viewValue !== currentPlace[viewLabel]
  • If the location is anywhere else, it is hit or miss, depending on whether our viewValue location matches the currentPlace[viewLabel] value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant