Skip to content

Commit 58eaab0

Browse files
committed
[changed] pass transition callbacks to Modal Transition
1 parent abccff9 commit 58eaab0

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Modal.js

+9
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ const Modal = React.createClass({
141141

142142
render() {
143143
let { children, animation, backdrop, ...props } = this.props;
144+
let { onExit, onExiting, onEnter, onEntering, onEntered } = props;
144145

145146
let show = !!props.show;
146147

@@ -166,7 +167,12 @@ const Modal = React.createClass({
166167
unmountOnExit
167168
in={show}
168169
duration={Modal.TRANSITION_DURATION}
170+
onExit={onExit}
171+
onExiting={onExiting}
169172
onExited={this.handleHidden}
173+
onEnter={onEnter}
174+
onEntering={onEntering}
175+
onEntered={onEntered}
170176
>
171177
{ modal }
172178
</Fade>
@@ -316,6 +322,9 @@ const Modal = React.createClass({
316322

317323
this.onHide();
318324

325+
if (this.props.onExited) {
326+
this.props.onExited(...args);
327+
}
319328
},
320329

321330
handleBackdropClick(e) {

0 commit comments

Comments
 (0)