Skip to content

Commit 7cc4747

Browse files
limscoderDave Thompson
authored and
Dave Thompson
committed
[fixed] Added role="button" to NavItem for aria compliance.
1 parent 851e4d9 commit 7cc4747

File tree

2 files changed

+32
-8
lines changed

2 files changed

+32
-8
lines changed

src/NavItem.jsx

+14-8
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var NavItem = React.createClass({
2323
},
2424

2525
render: function () {
26-
var {
26+
var {
2727
disabled,
2828
active,
2929
href,
@@ -34,16 +34,22 @@ var NavItem = React.createClass({
3434
classes = {
3535
'active': active,
3636
'disabled': disabled
37+
},
38+
linkProps = {
39+
href,
40+
title,
41+
target,
42+
onClick: this.handleClick,
43+
ref: 'anchor'
3744
};
3845

46+
if (href === '#') {
47+
linkProps.role = 'button';
48+
}
49+
3950
return (
4051
<li {...props} className={joinClasses(props.className, classSet(classes))}>
41-
<a
42-
href={href}
43-
title={title}
44-
target={target}
45-
onClick={this.handleClick}
46-
ref="anchor">
52+
<a {...linkProps}>
4753
{ children }
4854
</a>
4955
</li>
@@ -61,4 +67,4 @@ var NavItem = React.createClass({
6167
}
6268
});
6369

64-
module.exports = NavItem;
70+
module.exports = NavItem;

test/NavItemSpec.jsx

+18
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,22 @@ describe('NavItem', function () {
9090
);
9191
ReactTestUtils.Simulate.click(ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'span'));
9292
});
93+
94+
it('Should set role="button" when href=="#"', function () {
95+
var instance = ReactTestUtils.renderIntoDocument(
96+
<NavItem href="#" target="_blank">Item content</NavItem>
97+
);
98+
99+
var linkElement = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'a').getDOMNode();
100+
assert(linkElement.outerHTML.match('role="button"'), true);
101+
});
102+
103+
it('Should not set role when href!="#"', function () {
104+
var instance = ReactTestUtils.renderIntoDocument(
105+
<NavItem href="/path/to/stuff" target="_blank">Item content</NavItem>
106+
);
107+
108+
var linkElement = ReactTestUtils.findRenderedDOMComponentWithTag(instance, 'a').getDOMNode();
109+
assert.equal(linkElement.outerHTML.match('role="button"'), null);
110+
});
93111
});

0 commit comments

Comments
 (0)