accounts-frontend/packages/app/components/ui/motion/SlideMotion.tsx

109 lines
2.7 KiB
TypeScript
Raw Normal View History

2019-12-07 16:58:52 +05:30
import React from 'react';
2017-07-22 21:27:38 +05:30
import { Motion, spring } from 'react-motion';
import MeasureHeight from 'app/components/MeasureHeight';
2017-07-22 21:27:38 +05:30
2017-11-19 23:46:15 +05:30
import styles from './slide-motion.scss';
2017-07-22 21:27:38 +05:30
2019-12-10 13:17:32 +05:30
interface Props {
activeStep: number;
children: React.ReactNode;
}
2019-12-07 16:58:52 +05:30
interface State {
2019-12-10 13:17:32 +05:30
// [stepHeight: string]: number;
version: string;
prevChildren: React.ReactNode | undefined;
2019-12-07 16:58:52 +05:30
}
2019-12-10 13:17:32 +05:30
class SlideMotion extends React.PureComponent<Props, State> {
2019-12-07 16:58:52 +05:30
state: State = {
2019-12-10 13:17:32 +05:30
prevChildren: undefined, // to track version updates
version: `${this.props.activeStep}.0`,
};
2017-07-22 21:27:38 +05:30
isHeightMeasured: boolean;
2017-07-22 21:27:38 +05:30
2019-12-10 13:17:32 +05:30
static getDerivedStateFromProps(props: Props, state: State) {
let [, version] = state.version.split('.').map(Number);
if (props.children !== state.prevChildren) {
version++;
}
// mark this view as dirty to re-measure height
2019-12-10 13:17:32 +05:30
return {
prevChildren: props.children,
version: `${props.activeStep}.${version}`,
};
}
2017-07-22 21:27:38 +05:30
render() {
const { activeStep, children } = this.props;
2017-07-22 21:27:38 +05:30
const { version } = this.state;
2017-07-22 21:27:38 +05:30
const activeStepHeight = this.state[`step${activeStep}Height`] || 0;
2017-07-22 21:27:38 +05:30
// a hack to disable height animation on first render
const { isHeightMeasured } = this;
this.isHeightMeasured = isHeightMeasured || activeStepHeight > 0;
2017-07-22 21:27:38 +05:30
const motionStyle = {
transform: spring(activeStep * 100, {
stiffness: 500,
damping: 50,
precision: 0.5,
}),
height: isHeightMeasured
? spring(activeStepHeight, {
stiffness: 500,
damping: 20,
precision: 0.5,
})
: activeStepHeight,
};
2017-07-22 21:27:38 +05:30
return (
<Motion style={motionStyle}>
2019-12-07 16:58:52 +05:30
{(interpolatingStyle: { height: number; transform: string }) => (
<div
style={{
overflow: 'hidden',
height: `${interpolatingStyle.height}px`,
}}
>
<div
className={styles.container}
style={{
WebkitTransform: `translateX(-${interpolatingStyle.transform}%)`,
transform: `translateX(-${interpolatingStyle.transform}%)`,
}}
>
{React.Children.map(children, (child, index) => (
<MeasureHeight
className={styles.item}
onMeasure={this.onStepMeasure(index)}
state={version}
key={index}
>
{child}
</MeasureHeight>
))}
</div>
</div>
)}
</Motion>
);
}
2017-07-22 21:27:38 +05:30
onStepMeasure(step: number) {
return (height: number) =>
2019-12-10 13:17:32 +05:30
// @ts-ignore
this.setState({
[`step${step}Height`]: height,
});
}
2017-07-22 21:27:38 +05:30
}
2019-12-07 16:58:52 +05:30
export default SlideMotion;