Skip to content

Commit 988f55a

Browse files
fernandofleurydiasbruno
authored andcommitted
[added] Introduce onAfterClose callback prop (#724)
1 parent d4a8a32 commit 988f55a

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

docs/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ import ReactModal from 'react-modal';
3131
Function that will be run after the modal has opened.
3232
*/
3333
onAfterOpen={handleAfterOpenFunc}
34+
/*
35+
Function that will be run after the modal has closed.
36+
*/
37+
onAfterClose={handleAfterCloseFunc}
3438
/*
3539
Function that will be run when the modal is requested to be closed (either by clicking on overlay or pressing ESC)
3640
Note: It is not called if isOpen is changed by other means.

specs/Modal.events.spec.js

+12
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,18 @@ export default () => {
2424
afterOpenCallback.called.should.be.ok();
2525
});
2626

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+
2739
it("keeps focus inside the modal when child has no tabbable elements", () => {
2840
let tabPrevented = false;
2941
const modal = renderModal({ isOpen: true }, "hello");

src/components/ModalPortal.js

+5
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export default class ModalPortal extends Component {
4343
ariaHideApp: PropTypes.bool,
4444
appElement: PropTypes.instanceOf(SafeHTMLElement),
4545
onAfterOpen: PropTypes.func,
46+
onAfterClose: PropTypes.func,
4647
onRequestClose: PropTypes.func,
4748
closeTimeoutMS: PropTypes.number,
4849
shouldFocusAfterRender: PropTypes.bool,
@@ -183,6 +184,10 @@ export default class ModalPortal extends Component {
183184
focusManager.popWithoutFocus();
184185
}
185186
}
187+
188+
if (this.props.onAfterClose) {
189+
this.props.onAfterClose();
190+
}
186191
};
187192

188193
open = () => {

0 commit comments

Comments
 (0)