-
Notifications
You must be signed in to change notification settings - Fork 817
/
Copy pathPolygon.js
115 lines (96 loc) · 2.3 KB
/
Polygon.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
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 Polygon extends React.Component {
componentDidMount() {
this.polygonPromise = wrappedPromise();
this.renderPolygon();
}
componentDidUpdate(prevProps) {
if (
this.props.map !== prevProps.map ||
!arePathsEqual(this.props.paths, prevProps.paths)
) {
if (this.polygon) {
this.polygon.setMap(null);
}
this.renderPolygon();
}
}
componentWillUnmount() {
if (this.polygon) {
this.polygon.setMap(null);
}
}
renderPolygon() {
const {
map,
google,
paths,
strokeColor,
strokeOpacity,
strokeWeight,
fillColor,
fillOpacity,
...props
} = this.props;
if (!google) {
return null;
}
const params = {
map,
paths,
strokeColor,
strokeOpacity,
strokeWeight,
fillColor,
fillOpacity,
...props
};
this.polygon = new google.maps.Polygon(params);
evtNames.forEach(e => {
this.polygon.addListener(e, this.handleEvent(e));
});
this.polygonPromise.resolve(this.polygon);
}
getPolygon() {
return this.polygonPromise;
}
handleEvent(evt) {
return (e) => {
const evtName = `on${camelize(evt)}`
if (this.props[evtName]) {
this.props[evtName](this.props, this.polygon, e);
}
}
}
render() {
return null;
}
}
Polygon.propTypes = {
paths: PropTypes.array,
strokeColor: PropTypes.string,
strokeOpacity: PropTypes.number,
strokeWeight: PropTypes.number,
fillColor: PropTypes.string,
fillOpacity: PropTypes.number
}
evtNames.forEach(e => Polygon.propTypes[e] = PropTypes.func)
Polygon.defaultProps = {
name: 'Polygon'
}
export default Polygon