Skip to content

Commit 794d4b3

Browse files
version 1.4.2
1 parent faa8a7f commit 794d4b3

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

dist/components/__tests__/entity-test.js

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
'use strict';
22

33
jest.dontMock('../../mixins/listener');
4+
jest.dontMock('../../utils/compare-props');
45
jest.dontMock('../entity');
56

67
describe('Entity', function () {
@@ -72,7 +73,9 @@ describe('Entity', function () {
7273

7374
describe('updating', function () {
7475

75-
it('calls `setOptions` when receive new props', function () {
76+
var parent = undefined;
77+
78+
beforeEach(function () {
7679
window.google.maps.Entity = function () {
7780
return {
7881
setOptions: jest.genMockFunction()
@@ -83,19 +86,31 @@ describe('Entity', function () {
8386

8487
getInitialState: function getInitialState() {
8588
return {
86-
content: '1'
89+
prop: '1'
8790
};
8891
},
8992
render: function render() {
90-
return React.createElement(Entity, { ref: 'child' });
93+
var prop = this.state.prop;
94+
95+
return React.createElement(Entity, { ref: 'child', prop: prop });
9196
}
9297
});
93-
var parent = TestUtils.renderIntoDocument(React.createElement(Parent, null));
98+
parent = TestUtils.renderIntoDocument(React.createElement(Parent, null));
99+
});
100+
101+
it('calls `setOptions` when receive new props', function () {
94102
parent.setState({
95-
content: '2'
103+
prop: '2'
96104
});
97105
expect(parent.refs.child.entity.setOptions).toBeCalled();
98106
});
107+
108+
it('does not call `setOptions` when props are the same', function () {
109+
parent.setState({
110+
prop: '1'
111+
});
112+
expect(parent.refs.child.entity.setOptions).not.toBeCalled();
113+
});
99114
});
100115

101116
describe('getEntity', function () {

dist/components/entity.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ var _mixinsListener = require('../mixins/listener');
1818

1919
var _mixinsListener2 = _interopRequireDefault(_mixinsListener);
2020

21+
var _utilsCompareProps = require('../utils/compare-props');
22+
23+
var _utilsCompareProps2 = _interopRequireDefault(_utilsCompareProps);
24+
2125
exports['default'] = function (name, latLngProp, events) {
2226
return _react2['default'].createClass({
2327

@@ -32,8 +36,10 @@ exports['default'] = function (name, latLngProp, events) {
3236
},
3337

3438
componentWillReceiveProps: function componentWillReceiveProps(nextProps) {
35-
var options = this.getOptions(nextProps);
36-
this.entity.setOptions(options);
39+
if (!(0, _utilsCompareProps2['default'])(this.props, nextProps)) {
40+
var options = this.getOptions(nextProps);
41+
this.entity.setOptions(options);
42+
}
3743
},
3844

3945
componentWillUnmount: function componentWillUnmount() {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-gmaps",
3-
"version": "1.4.1",
3+
"version": "1.4.2",
44
"description": "A Google Maps component for React.js",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)