\n\n\n\n\n\n","import assignLocationValues from '@/helpers/assign-location-values'\nimport debounce from 'lodash/debounce'\nimport MapsService from '@/api/maps-service'\n\nexport default {\n props: {\n excludeVenueField: {\n type: Boolean,\n default: false\n }\n },\n\n emits: ['changed'],\n\n created() {\n this.debouncedGeocodeUpdatedLocation = debounce(this.geocodeUpdatedLocation, 500)\n },\n\n methods: {\n triggerGeocodingIfAddressReady() {\n // If user is entering location manually, require them to at least\n // fill in street number and street name before geocoding.\n // This means addresses that are 'point of interest' cannot be entered manually\n if (!this.location.street_number || !this.location.street) {\n // In case there was previously a successful geocoded query, clear that out.\n // Otherwise, we can end up with the old query and lat/lon stored even as all the fields are blanked out.\n // If the user tries to save the form in that situation, it can lead to storing bad Location data\n // in the database. So we need to clear things out here, so an attempted save will see that there\n // is not a valid location that has been geocoded.\n this.location.query = this.searchTextForPlaceGeocoding\n this.location.latitude = null\n this.location.longitude = null\n return\n }\n\n // At this point we know we're going to want to geocode. Set the \"geocoding\" flag, so that if we try to\n // submit the form before we finish geocoding, we know to wait.\n this.location.geocoding = true\n\n // The actual geocoding is debounced, to avoid spending all our $$$ on Google Maps API calls.\n this.debouncedGeocodeUpdatedLocation()\n },\n\n geocodeUpdatedLocation() {\n const textSearchQuery = { query: this.searchTextForPlaceGeocoding, ...this.commonLocationOptions }\n MapsService.findPlace(textSearchQuery).then((results) => {\n if (results.length > 0) {\n const placeId = results[0].place_id\n MapsService.getPlaceDetails({ placeId }).then((place) => {\n this.extractLocationData(place, true)\n this.location.geocoding = false\n this.location.geocode_failed = false\n this.$emit('changed', this.location)\n })\n } else {\n // location address is invalid\n this.location.geocoding = false\n this.location.geocode_failed = true\n this.location.latitude = null\n this.location.longitude = null\n this.$emit('changed', this.location)\n }\n })\n },\n\n extractLocationData(place, keepUserEditedValues) {\n assignLocationValues(this.location, place, { keepExistingFieldValues: keepUserEditedValues, excludeVenue: this.excludeVenueField })\n\n this.locationTypes = place.types\n\n // We must add this locationType because google does not add it for us,\n // at least not in all cases where it should.\n if (this.location.street_number && this.location.street) {\n this.locationTypes.push('street_address')\n }\n },\n\n placeChanged(place) {\n if ('coordinates' in place) {\n this.extractLocationData(place, false)\n this.changeAttribute() // Components including the mixin must implement this method\n }\n }\n }\n}\n","\n \n \n \n \n\n\n\n","import { render } from \"./input-field.vue?vue&type=template&id=3d59fcb2\"\nimport script from \"./input-field.vue?vue&type=script&lang=js\"\nexport * from \"./input-field.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\n
\n \n
\n\n\n\n","import { render } from \"./input-group.vue?vue&type=template&id=dcf9b2d6\"\nimport script from \"./input-group.vue?vue&type=script&lang=js\"\nexport * from \"./input-group.vue?vue&type=script&lang=js\"\n\nimport exportComponent from \"../../../../../node_modules/vue-loader/dist/exportHelper.js\"\nconst __exports__ = /*#__PURE__*/exportComponent(script, [['render',render]])\n\nexport default __exports__","\n