forked from fullstackreact/google-maps-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCircle.js
More file actions
145 lines (121 loc) · 2.91 KB
/
Circle.js
File metadata and controls
145 lines (121 loc) · 2.91 KB
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
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 Circle extends React.Component {
componentDidMount() {
this.circlePromise = wrappedPromise();
this.renderCircle();
}
componentDidUpdate(prevProps) {
const { path, map } = this.props;
if (
this.propsChanged(prevProps) ||
map !== prevProps.map ||
!arePathsEqual(path, prevProps.path)
) {
this.destroyCircle();
this.renderCircle();
}
}
centerChanged = (newCenter) => {
const { lat, lng } = this.props.center;
return lat !== newCenter.lat || lng !== newCenter.lng;
};
propsChanged = (newProps) => {
if (this.centerChanged(newProps.center)) return true;
return Object.keys(Circle.propTypes).some(key => (
this.props[key] !== newProps[key]
));
};
componentWillUnmount() {
this.destroyCircle();
}
destroyCircle = () => {
if (this.circle) {
this.circle.setMap(null);
}
}
renderCircle() {
const {
map,
google,
center,
radius,
strokeColor,
strokeOpacity,
strokeWeight,
fillColor,
fillOpacity,
draggable,
visible,
...props
} = this.props;
if (!google) {
return null;
}
const params = {
...props,
map,
center,
radius,
draggable,
visible,
options: {
strokeColor,
strokeOpacity,
strokeWeight,
fillColor,
fillOpacity,
},
};
this.circle = new google.maps.Circle(params);
evtNames.forEach(e => {
this.circle.addListener(e, this.handleEvent(e));
});
this.circlePromise.resolve(this.circle);
}
getCircle() {
return this.circlePromise;
}
handleEvent(evt) {
return (e) => {
const evtName = `on${camelize(evt)}`
if (this.props[evtName]) {
this.props[evtName](this.props, this.circle, e);
}
}
}
render() {
return null;
}
}
Circle.propTypes = {
center: PropTypes.object,
radius: PropTypes.number,
strokeColor: PropTypes.string,
strokeOpacity: PropTypes.number,
strokeWeight: PropTypes.number,
fillColor: PropTypes.string,
fillOpacity: PropTypes.number,
draggable: PropTypes.bool,
visible: PropTypes.bool,
}
evtNames.forEach(e => Circle.propTypes[e] = PropTypes.func)
Circle.defaultProps = {
name: 'Circle'
}
export default Circle