Skip to content

Commit 598b9d8

Browse files
committed
[fixed] SafeAnchor event ordering
If we prevent default before applying the `onClick` function provided in props then we prevent elements from using the `event.preventDefault()` mechanics for anchors as buttons. For example in the Dropdown re-work this prevented me from having the Dropdown work when in a Nav since the toggle is an anchor. Yet that functionality should allow uses to prevent the Dropdown if they want in their own `onClick` handler. This will enable such a use case.
1 parent 704a168 commit 598b9d8

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

src/SafeAnchor.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from 'react';
2+
import createChainedFunction from './utils/createChainedFunction';
23

34
/**
45
* Note: This is intended as a stop-gap for accessibility concerns that the
@@ -16,17 +17,13 @@ export default class SafeAnchor extends React.Component {
1617
if (this.props.href === undefined) {
1718
event.preventDefault();
1819
}
19-
20-
if (this.props.onClick) {
21-
this.props.onClick(event);
22-
}
2320
}
2421

2522
render() {
2623
return (
2724
<a role={this.props.href ? undefined : 'button'}
2825
{...this.props}
29-
onClick={this.handleClick}
26+
onClick={createChainedFunction(this.props.onClick, this.handleClick)}
3027
href={this.props.href || ''}/>
3128
);
3229
}

test/SafeAnchorSpec.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,12 @@ describe('SafeAnchor', function() {
4343

4444
it('prevents default when no href is provided', function(done) {
4545
const handleClick = (event) => {
46-
event.defaultPrevented.should.be.true;
47-
done();
46+
expect(event.isDefaultPrevented()).to.not.be.ok;
47+
48+
setTimeout(() => {
49+
event.isDefaultPrevented().should.be.true;
50+
done();
51+
}, 100);
4852
};
4953
const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor onClick={handleClick} />);
5054
const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A');
@@ -54,8 +58,12 @@ describe('SafeAnchor', function() {
5458

5559
it('does not prevent default when href is provided', function(done) {
5660
const handleClick = (event) => {
57-
expect(event.defaultPrevented).to.not.be.ok;
58-
done();
61+
expect(event.isDefaultPrevented()).to.not.be.ok;
62+
63+
setTimeout(() => {
64+
expect(event.isDefaultPrevented()).to.not.be.ok;
65+
done();
66+
});
5967
};
6068
const instance = ReactTestUtils.renderIntoDocument(<SafeAnchor href='#' onClick={handleClick} />);
6169
const anchor = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'A');

0 commit comments

Comments
 (0)