2023-05-23 08:52:27 +00:00
|
|
|
import { useCallback, useState } from 'react';
|
2023-05-10 10:59:29 +00:00
|
|
|
|
2023-04-17 11:25:15 +00:00
|
|
|
import { TransitionMotion, spring } from 'react-motion';
|
2023-05-10 10:59:29 +00:00
|
|
|
|
2023-04-17 11:25:15 +00:00
|
|
|
import { reduceMotion } from '../initial_state';
|
|
|
|
|
2023-07-08 09:11:58 +00:00
|
|
|
import { ShortNumber } from './short_number';
|
2023-05-10 10:59:29 +00:00
|
|
|
|
|
|
|
interface Props {
|
2023-04-17 11:25:15 +00:00
|
|
|
value: number;
|
2023-05-10 10:59:29 +00:00
|
|
|
}
|
2023-09-05 21:57:03 +00:00
|
|
|
export const AnimatedNumber: React.FC<Props> = ({ value }) => {
|
2023-04-17 11:25:15 +00:00
|
|
|
const [previousValue, setPreviousValue] = useState(value);
|
2023-05-09 17:02:12 +00:00
|
|
|
const [direction, setDirection] = useState<1 | -1>(1);
|
2023-04-17 11:25:15 +00:00
|
|
|
|
|
|
|
if (previousValue !== value) {
|
|
|
|
setPreviousValue(value);
|
|
|
|
setDirection(value > previousValue ? 1 : -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
const willEnter = useCallback(() => ({ y: -1 * direction }), [direction]);
|
2023-05-09 17:02:12 +00:00
|
|
|
const willLeave = useCallback(
|
|
|
|
() => ({ y: spring(1 * direction, { damping: 35, stiffness: 400 }) }),
|
2023-07-13 09:26:45 +00:00
|
|
|
[direction],
|
2023-05-09 17:02:12 +00:00
|
|
|
);
|
2023-04-17 11:25:15 +00:00
|
|
|
|
|
|
|
if (reduceMotion) {
|
2023-09-05 21:57:03 +00:00
|
|
|
return <ShortNumber value={value} />;
|
2023-04-17 11:25:15 +00:00
|
|
|
}
|
|
|
|
|
2023-05-09 17:02:12 +00:00
|
|
|
const styles = [
|
|
|
|
{
|
|
|
|
key: `${value}`,
|
|
|
|
data: value,
|
|
|
|
style: { y: spring(0, { damping: 35, stiffness: 400 }) },
|
|
|
|
},
|
|
|
|
];
|
2023-04-17 11:25:15 +00:00
|
|
|
|
|
|
|
return (
|
2023-05-09 17:02:12 +00:00
|
|
|
<TransitionMotion
|
|
|
|
styles={styles}
|
|
|
|
willEnter={willEnter}
|
|
|
|
willLeave={willLeave}
|
|
|
|
>
|
|
|
|
{(items) => (
|
2023-04-17 11:25:15 +00:00
|
|
|
<span className='animated-number'>
|
|
|
|
{items.map(({ key, data, style }) => (
|
2023-05-09 17:02:12 +00:00
|
|
|
<span
|
|
|
|
key={key}
|
|
|
|
style={{
|
|
|
|
position: direction * style.y > 0 ? 'absolute' : 'static',
|
|
|
|
transform: `translateY(${style.y * 100}%)`,
|
|
|
|
}}
|
|
|
|
>
|
2023-09-05 21:57:03 +00:00
|
|
|
<ShortNumber value={data as number} />
|
2023-05-09 17:02:12 +00:00
|
|
|
</span>
|
2023-04-17 11:25:15 +00:00
|
|
|
))}
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
</TransitionMotion>
|
|
|
|
);
|
|
|
|
};
|