-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
170 lines (138 loc) · 6.86 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _propTypes = require('prop-types');
var _propTypes2 = _interopRequireDefault(_propTypes);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
/* global google */
var LocationAutocomplete = function (_React$Component) {
_inherits(LocationAutocomplete, _React$Component);
function LocationAutocomplete() {
_classCallCheck(this, LocationAutocomplete);
return _possibleConstructorReturn(this, (LocationAutocomplete.__proto__ || Object.getPrototypeOf(LocationAutocomplete)).apply(this, arguments));
}
_createClass(LocationAutocomplete, [{
key: 'componentDidMount',
value: function componentDidMount() {
var _this3 = this;
var libraryScript = this.existingLibraryScript;
if (this.libraryHasLoaded) {
this.initAutocomplete();
} else if (libraryScript) {
libraryScript.addEventListener('load', function () {
_this3.initAutocomplete();
});
} else {
this.addAutocompleteLibrary();
}
}
}, {
key: 'addAutocompleteLibrary',
value: function addAutocompleteLibrary() {
var _this = this;
var scriptTag = document.createElement('script');
scriptTag.type = 'text/javascript';
scriptTag.id = 'location-autocomplete-library';
if (this.props.googleAPIKey) {
scriptTag.src = 'https://maps.googleapis.com/maps/api/js?key=' + this.props.googleAPIKey + '&libraries=places';
} else if (this.props.googlePlacesLibraryURL) {
scriptTag.src = this.props.googlePlacesLibraryURL;
}
(document.head || document.body).appendChild(scriptTag);
scriptTag.addEventListener('load', function () {
_this.initAutocomplete();
});
}
}, {
key: 'setRestrictions',
value: function setRestrictions() {
var country = this.props.componentRestrictions.country;
if (country) this.autocomplete.setComponentRestrictions({ 'country': country });
}
}, {
key: 'initAutocomplete',
value: function initAutocomplete() {
var _this4 = this;
var params = {};
if (this.props.locationType) params.types = [this.props.locationType];
this.autocomplete = new google.maps.places.Autocomplete(this.input, params);
this.autocomplete.addListener('place_changed', function () {
_this4.props.onDropdownSelect(_this4);
});
if (this.props.componentRestrictions) this.setRestrictions();
this.props.targetArea && this.geolocate();
}
}, {
key: 'geolocate',
value: function geolocate() {
if (this.libraryHasLoaded) {
if (this.props.targetArea) {
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ address: this.props.targetArea }, function (results) {
var position = results[0].geometry.location;
new google.maps.Circle({
center: position,
radius: position.coords ? position.coords.accuracy : 100
});
});
}
}
}
}, {
key: 'render',
value: function render() {
var _this5 = this;
/* eslint-disable no-unused-vars */
var _props = this.props,
googleAPIKey = _props.googleAPIKey,
googlePlacesLibraryURL = _props.googlePlacesLibraryURL,
onDropdownSelect = _props.onDropdownSelect,
locationType = _props.locationType,
targetArea = _props.targetArea,
componentRestrictions = _props.componentRestrictions,
props = _objectWithoutProperties(_props, ['googleAPIKey', 'googlePlacesLibraryURL', 'onDropdownSelect', 'locationType', 'targetArea', 'componentRestrictions']);
/* eslint-enable no-unused-vars */
return _react2.default.createElement('input', _extends({
type: 'text',
ref: function ref(input) {
_this5.input = input;
}
}, props));
}
}, {
key: 'libraryHasLoaded',
get: function get() {
return typeof google !== 'undefined';
}
}, {
key: 'existingLibraryScript',
get: function get() {
return document.getElementById('location-autocomplete-library') || document.querySelectorAll('script[src*="maps.googleapis.com/maps/api/js"]')[0];
}
}]);
return LocationAutocomplete;
}(_react2.default.Component);
LocationAutocomplete.defaultProps = {
placeholder: '' // overrides Google's default placeholder
};
LocationAutocomplete.propTypes = {
targetArea: _propTypes2.default.string,
locationType: _propTypes2.default.string,
onChange: _propTypes2.default.func.isRequired,
onDropdownSelect: _propTypes2.default.func.isRequired,
googleAPIKey: _propTypes2.default.string,
googlePlacesLibraryURL: _propTypes2.default.string,
componentRestrictions: _propTypes2.default.shape({
country: _propTypes2.default.arrayOf(_propTypes2.default.string)
})
};
exports.default = LocationAutocomplete;