Skip to content

Commit 981acac

Browse files
authored
fix: Motion state record (react-component#188)
* fix: Motion state record * update test case
1 parent 5b2c27e commit 981acac

File tree

2 files changed

+31
-11
lines changed

2 files changed

+31
-11
lines changed

src/Popup.tsx

+18-6
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ interface PopupState {
7878
status: PopupStatus;
7979
prevVisible: boolean;
8080
alignClassName: string;
81+
82+
/** Record for CSSMotion is working or not */
83+
inMotion: boolean;
8184
}
8285

8386
interface AlignRefType {
@@ -96,6 +99,8 @@ class Popup extends Component<PopupProps, PopupState> {
9699
status: null,
97100
prevVisible: null, // eslint-disable-line react/no-unused-state
98101
alignClassName: null,
102+
103+
inMotion: false,
99104
};
100105

101106
public popupRef = React.createRef<HTMLDivElement>();
@@ -108,7 +113,7 @@ class Popup extends Component<PopupProps, PopupState> {
108113

109114
static getDerivedStateFromProps(
110115
{ visible, ...props }: PopupProps,
111-
{ prevVisible, status }: PopupState,
116+
{ prevVisible, status, inMotion }: PopupState,
112117
) {
113118
const newState: Partial<PopupState> = { prevVisible: visible, status };
114119

@@ -117,12 +122,11 @@ class Popup extends Component<PopupProps, PopupState> {
117122
if (prevVisible === null && visible === false) {
118123
// Init render should always be stable
119124
newState.status = 'stable';
125+
newState.inMotion = false;
120126
} 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)) {
126130
newState.status = null;
127131
} else {
128132
newState.status = 'stable';
@@ -322,6 +326,14 @@ class Popup extends Component<PopupProps, PopupState> {
322326
mergedMotionVisible = false;
323327
}
324328

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+
325337
// ================== Align ==================
326338
const mergedAlignDisabled =
327339
!visible ||

tests/popup.test.jsx

+13-5
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,18 @@ describe('Popup', () => {
2020
const props = { visible: false };
2121
const state = { prevVisible: null, status: 'something' };
2222

23-
expect(Popup.getDerivedStateFromProps(props, state).status).toBe('stable');
23+
expect(Popup.getDerivedStateFromProps(props, state).status).toBe(
24+
'stable',
25+
);
2426
});
2527

2628
it('does not change when visible is unchanged', () => {
2729
const props = { visible: true };
2830
const state = { prevVisible: true, status: 'something' };
2931

30-
expect(Popup.getDerivedStateFromProps(props, state).status).toBe('something');
32+
expect(Popup.getDerivedStateFromProps(props, state).status).toBe(
33+
'something',
34+
);
3135
});
3236

3337
it('returns null when visible is changed to true', () => {
@@ -41,7 +45,9 @@ describe('Popup', () => {
4145
const props = { visible: false };
4246
const state = { prevVisible: true, status: 'something' };
4347

44-
expect(Popup.getDerivedStateFromProps(props, state).status).toBe('stable');
48+
expect(Popup.getDerivedStateFromProps(props, state).status).toBe(
49+
'stable',
50+
);
4551
});
4652

4753
it('returns null when visible is changed to false and motion is started', () => {
@@ -51,7 +57,7 @@ describe('Popup', () => {
5157
motionName: 'enter',
5258
},
5359
};
54-
const state = { prevVisible: true, status: 'motion' };
60+
const state = { prevVisible: true, status: 'motion', inMotion: true };
5561

5662
expect(Popup.getDerivedStateFromProps(props, state).status).toBe(null);
5763
});
@@ -65,7 +71,9 @@ describe('Popup', () => {
6571
};
6672
const state = { prevVisible: true, status: 'beforeMotion' };
6773

68-
expect(Popup.getDerivedStateFromProps(props, state).status).toBe('stable');
74+
expect(Popup.getDerivedStateFromProps(props, state).status).toBe(
75+
'stable',
76+
);
6977
});
7078
});
7179

0 commit comments

Comments
 (0)