-
Notifications
You must be signed in to change notification settings - Fork 817
/
Copy pathGoogleApiComponent.js
140 lines (112 loc) · 3.47 KB
/
GoogleApiComponent.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
import React from 'react';
import ReactDOM from 'react-dom';
import {ScriptCache} from './lib/ScriptCache';
import GoogleApi from './lib/GoogleApi';
const defaultMapConfig = {};
const serialize = obj => JSON.stringify(obj);
const isSame = (obj1, obj2) => obj1 === obj2 || serialize(obj1) === serialize(obj2);
const defaultCreateCache = options => {
options = options || {};
const apiKey = options.apiKey;
const libraries = options.libraries || ['places'];
const version = options.version || '3';
const language = options.language || 'en';
const url = options.url;
const client = options.client;
const region = options.region;
return ScriptCache({
google: GoogleApi({
apiKey: apiKey,
language: language,
libraries: libraries,
version: version,
url: url,
client: client,
region: region
})
});
};
const DefaultLoadingContainer = props => <div>Loading...</div>;
export const wrapper = (input, className, style) => WrappedComponent => {
class Wrapper extends React.Component {
constructor(props, context) {
super(props, context);
// Build options from input
const options = typeof input === 'function' ? input(props) : input;
// Initialize required Google scripts and other configured options
this.initialize(options);
this.state = {
loaded: false,
map: null,
google: null,
options: options
};
this.mapRef=React.createRef();
}
componentDidUpdate(props) {
// Do not update input if it's not dynamic
if (typeof input !== 'function') {
return;
}
// Get options to compare
const prevOptions = this.state.options;
const options = typeof input === 'function' ? input(props) : input;
// Ignore when options are not changed
if (isSame(options, prevOptions)) {
return;
}
// Initialize with new options
this.initialize(options);
// Save new options in component state,
// and remove information about previous API handlers
this.state= {
options: options,
loaded: false,
google: null
};
}
componentWillUnmount() {
if (this.unregisterLoadHandler) {
this.unregisterLoadHandler();
}
}
initialize(options) {
// Avoid race condition: remove previous 'load' listener
if (this.unregisterLoadHandler) {
this.unregisterLoadHandler();
this.unregisterLoadHandler = null;
}
// Load cache factory
const createCache = options.createCache || defaultCreateCache;
// Build script
this.scriptCache = createCache(options);
this.unregisterLoadHandler =
this.scriptCache.google.onLoad(this.onLoad.bind(this));
// Store information about loading container
this.LoadingContainer =
options.LoadingContainer || DefaultLoadingContainer;
}
onLoad(err, tag) {
this._gapi = window.google;
this.setState({loaded: true, google: this._gapi});
}
render() {
const {LoadingContainer} = this;
if (!this.state.loaded) {
return <LoadingContainer />;
}
const props = Object.assign({}, this.props, {
loaded: this.state.loaded,
google: window.google
});
return (
<div className={className} style={style}>
<WrappedComponent {...props} />
<div ref={this.mapRef} />
</div>
);
}
}
return Wrapper;
};
export default wrapper;