File tree 2 files changed +32
-8
lines changed
2 files changed +32
-8
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ var NavItem = React.createClass({
23
23
} ,
24
24
25
25
render : function ( ) {
26
- var {
26
+ var {
27
27
disabled,
28
28
active,
29
29
href,
@@ -34,16 +34,22 @@ var NavItem = React.createClass({
34
34
classes = {
35
35
'active' : active ,
36
36
'disabled' : disabled
37
+ } ,
38
+ linkProps = {
39
+ href,
40
+ title,
41
+ target,
42
+ onClick : this . handleClick ,
43
+ ref : 'anchor'
37
44
} ;
38
45
46
+ if ( href === '#' ) {
47
+ linkProps . role = 'button' ;
48
+ }
49
+
39
50
return (
40
51
< 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 } >
47
53
{ children }
48
54
</ a >
49
55
</ li >
@@ -61,4 +67,4 @@ var NavItem = React.createClass({
61
67
}
62
68
} ) ;
63
69
64
- module . exports = NavItem ;
70
+ module . exports = NavItem ;
Original file line number Diff line number Diff line change @@ -90,4 +90,22 @@ describe('NavItem', function () {
90
90
) ;
91
91
ReactTestUtils . Simulate . click ( ReactTestUtils . findRenderedDOMComponentWithTag ( instance , 'span' ) ) ;
92
92
} ) ;
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
+ } ) ;
93
111
} ) ;
You can’t perform that action at this time.
0 commit comments