-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
42 lines (42 loc) · 1.54 KB
/
index.js
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
import React from "react";
export default class AutoTransition extends React.Component {
constructor(props) {
super(props);
this.rootRef = React.createRef();
}
getSnapshotBeforeUpdate() {
const element = this.rootRef.current;
if (element) {
return [
window.getComputedStyle(element).width,
window.getComputedStyle(element).height,
];
}
}
componentDidUpdate(prevProps, prevState, snapshot) {
const element = this.rootRef.current;
if (!element) {
return;
}
element.style.width = "auto";
element.style.height = "auto";
const afterHeight = window.getComputedStyle(element).height;
const afterWidth = window.getComputedStyle(element).width;
const originTransition = window.getComputedStyle(element).transition;
element.style.transition = "none";
element.style.width = snapshot[0];
element.style.height = snapshot[1];
element.offsetWidth;
element.style.transition = originTransition;
element.style.width = afterWidth;
element.style.height = afterHeight;
}
render() {
const { transition, style, children, className } = this.props;
return (React.createElement("div", { className: className, ref: this.rootRef, style: Object.assign({ overflow: "hidden", transition: `all ${transition}s`, display: "inline-block" }, style) }, children));
}
}
AutoTransition.defaultProps = {
style: {},
transition: 0.2,
};