1
1
/*eslint-disable react/prop-types */
2
2
import React , { cloneElement } from 'react' ;
3
+ import warning from 'warning' ;
3
4
import elementType from 'react-prop-types/lib/elementType' ;
4
5
5
6
import Portal from './Portal' ;
@@ -154,11 +155,16 @@ const Modal = React.createClass({
154
155
return null ;
155
156
}
156
157
157
- if ( dialog . props . role === undefined ) {
158
- dialog = cloneElement ( dialog , { role : 'document' } ) ;
158
+ let { role, tabIndex } = dialog . props ;
159
+
160
+ if ( role === undefined || tabIndex === undefined ) {
161
+ dialog = cloneElement ( dialog , {
162
+ role : role === undefined ? 'document' : role ,
163
+ tabIndex : tabIndex == null ? '-1' : tabIndex
164
+ } ) ;
159
165
}
160
166
161
- if ( Transition ) {
167
+ if ( Transition ) {
162
168
dialog = (
163
169
< Transition
164
170
transitionAppear
@@ -180,7 +186,6 @@ const Modal = React.createClass({
180
186
return (
181
187
< Portal container = { props . container } >
182
188
< div
183
- tabIndex = '-1'
184
189
ref = { 'modal' }
185
190
role = { props . role || 'dialog' }
186
191
style = { props . style }
@@ -318,20 +323,28 @@ const Modal = React.createClass({
318
323
}
319
324
} ,
320
325
321
- checkForFocus ( ) {
326
+ checkForFocus ( ) {
322
327
if ( canUseDom ) {
323
328
this . lastFocus = activeElement ( ) ;
324
329
}
325
330
} ,
326
331
327
332
focus ( ) {
328
333
let autoFocus = this . props . autoFocus ;
329
- let modalContent = React . findDOMNode ( this . refs . modal ) ;
334
+ let modalContent = this . getDialogElement ( ) ;
330
335
let current = activeElement ( ownerDocument ( this ) ) ;
331
336
let focusInModal = current && contains ( modalContent , current ) ;
332
337
333
338
if ( modalContent && autoFocus && ! focusInModal ) {
334
339
this . lastFocus = current ;
340
+
341
+ if ( ! modalContent . hasAttribute ( 'tabIndex' ) ) {
342
+ modalContent . setAttribute ( 'tabIndex' , - 1 ) ;
343
+ warning ( false ,
344
+ 'The modal content node does not accept focus. ' +
345
+ 'For the benefit of assistive technologies, the tabIndex of the node is being set to "-1".' ) ;
346
+ }
347
+
335
348
modalContent . focus ( ) ;
336
349
}
337
350
} ,
@@ -352,9 +365,9 @@ const Modal = React.createClass({
352
365
}
353
366
354
367
let active = activeElement ( ownerDocument ( this ) ) ;
355
- let modal = React . findDOMNode ( this . refs . modal ) ;
368
+ let modal = this . getDialogElement ( ) ;
356
369
357
- if ( modal && modal !== active && ! contains ( modal , active ) ) {
370
+ if ( modal && modal !== active && ! contains ( modal , active ) ) {
358
371
modal . focus ( ) ;
359
372
}
360
373
} ,
0 commit comments