-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathplaces-service.ts
58 lines (46 loc) · 1.5 KB
/
places-service.ts
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
import {useContext, useEffect, useState} from 'react';
import {GoogleMapsContext} from '../google-maps-provider';
export interface PlacesServiceProps {
divElement?: HTMLDivElement | null;
}
/**
* Hook to get Google Maps Places Service instance
*/
export const usePlacesService = (
props?: PlacesServiceProps
): google.maps.places.PlacesService | null => {
const {map, googleMapsAPIIsLoaded} = useContext(GoogleMapsContext);
const [placesService, setPlacesService] =
useState<google.maps.places.PlacesService | null>(null);
// Creates a Places Service instance
useEffect(() => {
if (!googleMapsAPIIsLoaded) {
return;
}
if (!google.maps.places) {
throw Error(
"Places library missing. Add 'places' to the libraries array of GoogleMapsProvider."
);
}
// Create places service which renders attributions in the map container
if (props?.divElement === undefined) {
// Wait for map to be initialized
if (!map) {
return;
}
const serviceMap = new google.maps.places.PlacesService(map);
setPlacesService(serviceMap);
return;
}
// Create places service which renders attributions in the passed div element
// Wait for div element to be available
if (!props?.divElement) {
return;
}
const serviceElement = new google.maps.places.PlacesService(
props?.divElement
);
setPlacesService(serviceElement);
}, [googleMapsAPIIsLoaded, map, props?.divElement]);
return placesService;
};