2020-01-25 04:23:05 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2022-11-10 07:49:59 +00:00
|
|
|
import ShortNumber from 'mastodon/components/short_number';
|
2020-01-25 04:23:05 +00:00
|
|
|
import TransitionMotion from 'react-motion/lib/TransitionMotion';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
|
|
|
import { reduceMotion } from 'mastodon/initial_state';
|
|
|
|
|
2020-09-28 11:29:43 +00:00
|
|
|
const obfuscatedCount = count => {
|
|
|
|
if (count < 0) {
|
|
|
|
return 0;
|
|
|
|
} else if (count <= 1) {
|
|
|
|
return count;
|
|
|
|
} else {
|
|
|
|
return '1+';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-25 04:23:05 +00:00
|
|
|
export default class AnimatedNumber extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
value: PropTypes.number.isRequired,
|
2020-09-28 11:29:43 +00:00
|
|
|
obfuscate: PropTypes.bool,
|
2020-01-25 04:23:05 +00:00
|
|
|
};
|
|
|
|
|
2020-01-27 10:04:11 +00:00
|
|
|
state = {
|
|
|
|
direction: 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (nextProps.value > this.props.value) {
|
|
|
|
this.setState({ direction: 1 });
|
|
|
|
} else if (nextProps.value < this.props.value) {
|
|
|
|
this.setState({ direction: -1 });
|
|
|
|
}
|
2020-01-25 04:23:05 +00:00
|
|
|
}
|
|
|
|
|
2020-01-27 10:04:11 +00:00
|
|
|
willEnter = () => {
|
|
|
|
const { direction } = this.state;
|
|
|
|
|
|
|
|
return { y: -1 * direction };
|
|
|
|
}
|
|
|
|
|
|
|
|
willLeave = () => {
|
|
|
|
const { direction } = this.state;
|
|
|
|
|
|
|
|
return { y: spring(1 * direction, { damping: 35, stiffness: 400 }) };
|
2020-01-25 04:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2020-09-28 11:29:43 +00:00
|
|
|
const { value, obfuscate } = this.props;
|
2020-01-27 10:04:11 +00:00
|
|
|
const { direction } = this.state;
|
2020-01-25 04:23:05 +00:00
|
|
|
|
|
|
|
if (reduceMotion) {
|
2022-11-10 07:49:59 +00:00
|
|
|
return obfuscate ? obfuscatedCount(value) : <ShortNumber value={value} />;
|
2020-01-25 04:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const styles = [{
|
2020-01-26 19:07:26 +00:00
|
|
|
key: `${value}`,
|
|
|
|
data: value,
|
2020-01-25 04:23:05 +00:00
|
|
|
style: { y: spring(0, { damping: 35, stiffness: 400 }) },
|
|
|
|
}];
|
|
|
|
|
|
|
|
return (
|
|
|
|
<TransitionMotion styles={styles} willEnter={this.willEnter} willLeave={this.willLeave}>
|
|
|
|
{items => (
|
|
|
|
<span className='animated-number'>
|
2020-01-26 19:07:26 +00:00
|
|
|
{items.map(({ key, data, style }) => (
|
2022-11-10 07:49:59 +00:00
|
|
|
<span key={key} style={{ position: (direction * style.y) > 0 ? 'absolute' : 'static', transform: `translateY(${style.y * 100}%)` }}>{obfuscate ? obfuscatedCount(data) : <ShortNumber value={data} />}</span>
|
2020-01-25 04:23:05 +00:00
|
|
|
))}
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
</TransitionMotion>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|