File tree 3 files changed +21
-0
lines changed
3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ import ReactModal from 'react-modal';
31
31
Function that will be run after the modal has opened.
32
32
*/
33
33
onAfterOpen= {handleAfterOpenFunc}
34
+ /*
35
+ Function that will be run after the modal has closed.
36
+ */
37
+ onAfterClose= {handleAfterCloseFunc}
34
38
/*
35
39
Function that will be run when the modal is requested to be closed (either by clicking on overlay or pressing ESC)
36
40
Note: It is not called if isOpen is changed by other means.
Original file line number Diff line number Diff line change @@ -24,6 +24,18 @@ export default () => {
24
24
afterOpenCallback . called . should . be . ok ( ) ;
25
25
} ) ;
26
26
27
+ it ( "should trigger the onAfterClose callback" , ( ) => {
28
+ const onAfterCloseCallback = sinon . spy ( ) ;
29
+ const modal = renderModal ( {
30
+ isOpen : true ,
31
+ onAfterClose : onAfterCloseCallback
32
+ } ) ;
33
+
34
+ modal . portal . close ( ) ;
35
+
36
+ onAfterCloseCallback . called . should . be . ok ( ) ;
37
+ } ) ;
38
+
27
39
it ( "keeps focus inside the modal when child has no tabbable elements" , ( ) => {
28
40
let tabPrevented = false ;
29
41
const modal = renderModal ( { isOpen : true } , "hello" ) ;
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ export default class ModalPortal extends Component {
43
43
ariaHideApp : PropTypes . bool ,
44
44
appElement : PropTypes . instanceOf ( SafeHTMLElement ) ,
45
45
onAfterOpen : PropTypes . func ,
46
+ onAfterClose : PropTypes . func ,
46
47
onRequestClose : PropTypes . func ,
47
48
closeTimeoutMS : PropTypes . number ,
48
49
shouldFocusAfterRender : PropTypes . bool ,
@@ -183,6 +184,10 @@ export default class ModalPortal extends Component {
183
184
focusManager . popWithoutFocus ( ) ;
184
185
}
185
186
}
187
+
188
+ if ( this . props . onAfterClose ) {
189
+ this . props . onAfterClose ( ) ;
190
+ }
186
191
} ;
187
192
188
193
open = ( ) => {
You can’t perform that action at this time.
0 commit comments