1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| import React from 'react';
| import './index.less';
|
| class ShakeTransition extends React.PureComponent {
| state = {
| shake: false,
| }
|
| componentWillReceiveProps(nextProps) {
| if (nextProps.shake !== this.props.shake) {
| this.setState({
| shake: true,
| });
| this.timerID = setTimeout(() => this.triggerShake(), 1000);
| };
| }
|
| triggerShake = () => {
| this.setState({
| shake: false,
| });
| }
|
| componentWillUnmount() {
| clearTimeout(this.timerID);
| }
|
| render() {
| const {
| children,
| } = this.props;
| const {
| shake,
| } = this.state;
| return (
| <div className={`shake-transition ${shake ? 'shaked' : ''}`}>
| {this.props.children}
| </div>
| );
| }
| }
|
| export default ShakeTransition;
|
|