Skip to content

Commit c0b5890

Browse files
committed
[fixed] Don't forward own props from <Position>
1 parent 9da2860 commit c0b5890

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

src/Position.js

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ class Position extends React.Component {
5656
const {children, className, ...props} = this.props;
5757
const {positionLeft, positionTop, ...arrowPosition} = this.state;
5858

59+
Object.keys(Position.propTypes).forEach(key => delete props[key]);
60+
5961
const child = React.Children.only(children);
6062
return cloneElement(
6163
child,

test/PositionSpec.js

+17
Original file line numberDiff line numberDiff line change
@@ -216,5 +216,22 @@ describe('Position', function () {
216216
});
217217
});
218218

219+
it('should not forward own props to child', function () {
220+
let spiedProps;
221+
const Child = (props) => {
222+
spiedProps = props;
223+
return <div />;
224+
};
225+
226+
ReactTestUtils.renderIntoDocument(
227+
<Position target={() => null} childProp="foo">
228+
<Child />
229+
</Position>
230+
);
231+
232+
expect(spiedProps.target).to.not.exist;
233+
expect(spiedProps.childProp).to.equal('foo');
234+
});
235+
219236
// ToDo: add remaining tests
220237
});

0 commit comments

Comments
 (0)