-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathusePlacesWidget.js
163 lines (140 loc) · 4.53 KB
/
usePlacesWidget.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
import React, { useEffect, useRef, useCallback } from "react";
import { loadGoogleMapScript, isBrowser } from "./utils";
import { GOOGLE_MAP_SCRIPT_BASE_URL } from "./constants";
export default function usePlacesWidget(props) {
const {
ref,
onPlaceSelected,
apiKey,
libraries = "places",
inputAutocompleteValue = "new-password",
options: {
types = ["(cities)"],
componentRestrictions,
fields = [
"address_components",
"geometry.location",
"place_id",
"formatted_address",
],
bounds,
...options
} = {},
googleMapsScriptBaseUrl = GOOGLE_MAP_SCRIPT_BASE_URL,
language,
} = props;
const inputRef = useRef(null);
const event = useRef(null);
const autocompleteRef = useRef(null);
const languageQueryParam = language ? `&language=${language}` : "";
const googleMapsScriptUrl = `${googleMapsScriptBaseUrl}?libraries=${libraries}&key=${apiKey}${languageQueryParam}`;
const handleLoadScript = useCallback(
() => loadGoogleMapScript(googleMapsScriptBaseUrl, googleMapsScriptUrl),
[googleMapsScriptBaseUrl, googleMapsScriptUrl]
);
useEffect(() => {
const config = {
...options,
fields,
types,
bounds,
};
if (componentRestrictions) {
config.componentRestrictions = componentRestrictions;
}
if (autocompleteRef.current || !inputRef.current || !isBrowser) return;
if (ref && !ref.current) ref.current = inputRef.current;
const handleAutoComplete = () => {
if (typeof google === "undefined")
return console.error(
"Google has not been found. Make sure your provide apiKey prop."
);
if (!google.maps?.places)
return console.error("Google maps places API must be loaded.");
if (!(inputRef.current instanceof HTMLInputElement))
return console.error("Input ref must be HTMLInputElement.");
autocompleteRef.current = new google.maps.places.Autocomplete(
inputRef.current,
config
);
if (autocompleteRef.current) {
event.current = autocompleteRef.current.addListener(
"place_changed",
() => {
if (onPlaceSelected && autocompleteRef && autocompleteRef.current) {
onPlaceSelected(
autocompleteRef.current.getPlace(),
inputRef.current,
autocompleteRef.current
);
}
}
);
}
};
if (apiKey) {
handleLoadScript().then(() => handleAutoComplete());
} else {
handleAutoComplete();
}
return () => (event.current ? event.current.remove() : undefined);
}, []);
useEffect(() => {
if (autocompleteRef.current && onPlaceSelected) {
event.current = autocompleteRef.current.addListener("place_changed", function () {
if (onPlaceSelected && autocompleteRef && autocompleteRef.current) {
onPlaceSelected(autocompleteRef.current.getPlace(), inputRef.current, autocompleteRef.current);
}
});
}
return () => (event.current ? event.current.remove() : undefined);
}, [onPlaceSelected]);
// Autofill workaround adapted from https://stackoverflow.com/questions/29931712/chrome-autofill-covers-autocomplete-for-google-maps-api-v3/49161445#49161445
useEffect(() => {
// TODO find out why react 18(strict mode) hangs the page loading
if (
isBrowser &&
window.MutationObserver &&
inputRef.current &&
inputRef.current instanceof HTMLInputElement
) {
const observerHack = new MutationObserver(() => {
observerHack.disconnect();
if (inputRef.current) {
inputRef.current.autocomplete = inputAutocompleteValue;
}
});
observerHack.observe(inputRef.current, {
attributes: true,
attributeFilter: ["autocomplete"],
});
return () => {
observerHack.disconnect(); // Cleanup
};
}
}, [inputAutocompleteValue]);
useEffect(() => {
if (autocompleteRef.current) {
autocompleteRef.current.setFields(fields);
}
}, [fields]);
useEffect(() => {
if (autocompleteRef.current) {
autocompleteRef.current.setBounds(bounds);
}
}, [bounds]);
useEffect(() => {
if (autocompleteRef.current) {
autocompleteRef.current.setComponentRestrictions(componentRestrictions);
}
}, [componentRestrictions]);
useEffect(() => {
if (autocompleteRef.current) {
autocompleteRef.current.setOptions(options);
}
}, [options]);
return {
ref: inputRef,
autocompleteRef,
};
}