@@ -78,6 +78,9 @@ interface PopupState {
78
78
status : PopupStatus ;
79
79
prevVisible : boolean ;
80
80
alignClassName : string ;
81
+
82
+ /** Record for CSSMotion is working or not */
83
+ inMotion : boolean ;
81
84
}
82
85
83
86
interface AlignRefType {
@@ -96,6 +99,8 @@ class Popup extends Component<PopupProps, PopupState> {
96
99
status : null ,
97
100
prevVisible : null , // eslint-disable-line react/no-unused-state
98
101
alignClassName : null ,
102
+
103
+ inMotion : false ,
99
104
} ;
100
105
101
106
public popupRef = React . createRef < HTMLDivElement > ( ) ;
@@ -108,7 +113,7 @@ class Popup extends Component<PopupProps, PopupState> {
108
113
109
114
static getDerivedStateFromProps (
110
115
{ visible, ...props } : PopupProps ,
111
- { prevVisible, status } : PopupState ,
116
+ { prevVisible, status, inMotion } : PopupState ,
112
117
) {
113
118
const newState : Partial < PopupState > = { prevVisible : visible , status } ;
114
119
@@ -117,12 +122,11 @@ class Popup extends Component<PopupProps, PopupState> {
117
122
if ( prevVisible === null && visible === false ) {
118
123
// Init render should always be stable
119
124
newState . status = 'stable' ;
125
+ newState . inMotion = false ;
120
126
} else if ( visible !== prevVisible ) {
121
- if (
122
- visible ||
123
- ( supportMotion ( mergedMotion ) &&
124
- [ 'motion' , 'AfterMotion' , 'stable' ] . includes ( status ) )
125
- ) {
127
+ newState . inMotion = false ;
128
+
129
+ if ( visible || ( supportMotion ( mergedMotion ) && inMotion ) ) {
126
130
newState . status = null ;
127
131
} else {
128
132
newState . status = 'stable' ;
@@ -322,6 +326,14 @@ class Popup extends Component<PopupProps, PopupState> {
322
326
mergedMotionVisible = false ;
323
327
}
324
328
329
+ // Update trigger to tell if is in motion
330
+ [ 'onEnterStart' , 'onAppearStart' , 'onLeaveStart' ] . forEach ( event => {
331
+ mergedMotion [ event ] = ( ...args ) => {
332
+ mergedMotion ?. [ event ] ?.( ...args ) ;
333
+ this . setState ( { inMotion : true } ) ;
334
+ } ;
335
+ } ) ;
336
+
325
337
// ================== Align ==================
326
338
const mergedAlignDisabled =
327
339
! visible ||
0 commit comments