File tree 2 files changed +30
-6
lines changed
2 files changed +30
-6
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,15 @@ const Alert = React.createClass({
7
7
8
8
propTypes : {
9
9
onDismiss : React . PropTypes . func ,
10
- dismissAfter : React . PropTypes . number
10
+ dismissAfter : React . PropTypes . number ,
11
+ closeLabel : React . PropTypes . string
11
12
} ,
12
13
13
14
getDefaultProps ( ) {
14
15
return {
15
16
bsClass : 'alert' ,
16
- bsStyle : 'info'
17
+ bsStyle : 'info' ,
18
+ closeLabel : 'Close Alert'
17
19
} ;
18
20
} ,
19
21
@@ -22,9 +24,9 @@ const Alert = React.createClass({
22
24
< button
23
25
type = "button"
24
26
className = "close"
25
- onClick = { this . props . onDismiss }
26
- aria-hidden = "true" >
27
- ×
27
+ aria-label = { this . props . closeLabel }
28
+ onClick = { this . props . onDismiss } >
29
+ < span aria-hidden = "true" > ×</ span >
28
30
</ button >
29
31
) ;
30
32
} ,
@@ -36,7 +38,7 @@ const Alert = React.createClass({
36
38
classes [ 'alert-dismissable' ] = isDismissable ;
37
39
38
40
return (
39
- < div { ...this . props } className = { classNames ( this . props . className , classes ) } >
41
+ < div { ...this . props } role = 'alert' className = { classNames ( this . props . className , classes ) } >
40
42
{ isDismissable ? this . renderDismissButton ( ) : null }
41
43
{ this . props . children }
42
44
</ div >
Original file line number Diff line number Diff line change @@ -71,4 +71,26 @@ describe('Alert', function () {
71
71
) ;
72
72
assert . ok ( React . findDOMNode ( instance ) . className . match ( / \b a l e r t - d a n g e r \b / ) ) ;
73
73
} ) ;
74
+
75
+ describe ( 'Web Accessibility' , function ( ) {
76
+ it ( 'Should have alert role' , function ( ) {
77
+ let instance = ReactTestUtils . renderIntoDocument (
78
+ < Alert > Message</ Alert >
79
+ ) ;
80
+
81
+ assert . equal ( React . findDOMNode ( instance ) . getAttribute ( 'role' ) , 'alert' ) ;
82
+ } ) ;
83
+
84
+ it ( 'Should have add ARIAs to button' , function ( ) {
85
+ let instance = ReactTestUtils . renderIntoDocument (
86
+ < Alert onDismiss = { ( ) => { } } closeLabel = 'close' > Message</ Alert >
87
+ ) ;
88
+
89
+ let button = ReactTestUtils . findRenderedDOMComponentWithTag ( instance , 'button' ) ;
90
+
91
+ assert . equal ( React . findDOMNode ( button ) . getAttribute ( 'aria-label' ) , 'close' ) ;
92
+ assert . equal ( React . findDOMNode ( button ) . children [ 0 ] . getAttribute ( 'aria-hidden' ) , 'true' ) ;
93
+ } ) ;
94
+
95
+ } ) ;
74
96
} ) ;
You can’t perform that action at this time.
0 commit comments