-
Notifications
You must be signed in to change notification settings - Fork 817
/
Copy pathPolyline.js
110 lines (91 loc) · 2.2 KB
/
Polyline.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
import React from 'react';
import PropTypes from 'prop-types';
import { arePathsEqual } from '../lib/arePathsEqual';
import { camelize } from '../lib/String';
const evtNames = ['click', 'mouseout', 'mouseover'];
const wrappedPromise = function() {
var wrappedPromise = {},
promise = new Promise(function
(resolve, reject) {
wrappedPromise.resolve = resolve;
wrappedPromise.reject = reject;
});
wrappedPromise.then = promise.then.bind(promise);
wrappedPromise.catch = promise.catch.bind(promise);
wrappedPromise.promise = promise;
return wrappedPromise;
}
export class Polyline extends React.Component {
componentDidMount() {
this.polylinePromise = wrappedPromise();
this.renderPolyline();
}
componentDidUpdate(prevProps) {
if (
this.props.map !== prevProps.map ||
!arePathsEqual(this.props.path, prevProps.path)
) {
if (this.polyline) {
this.polyline.setMap(null);
}
this.renderPolyline();
}
}
componentWillUnmount() {
if (this.polyline) {
this.polyline.setMap(null);
}
}
renderPolyline() {
const {
map,
google,
path,
strokeColor,
strokeOpacity,
strokeWeight,
...props
} = this.props;
if (!google) {
return null;
}
const params = {
map,
path,
strokeColor,
strokeOpacity,
strokeWeight,
...props
};
this.polyline = new google.maps.Polyline(params);
evtNames.forEach(e => {
this.polyline.addListener(e, this.handleEvent(e));
});
this.polylinePromise.resolve(this.polyline);
}
getPolyline() {
return this.polylinePromise;
}
handleEvent(evt) {
return (e) => {
const evtName = `on${camelize(evt)}`
if (this.props[evtName]) {
this.props[evtName](this.props, this.polyline, e);
}
}
}
render() {
return null;
}
}
Polyline.propTypes = {
path: PropTypes.array,
strokeColor: PropTypes.string,
strokeOpacity: PropTypes.number,
strokeWeight: PropTypes.number
}
evtNames.forEach(e => Polyline.propTypes[e] = PropTypes.func)
Polyline.defaultProps = {
name: 'Polyline'
}
export default Polyline