-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCounter.tsx
48 lines (42 loc) · 1.03 KB
/
Counter.tsx
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
44
45
46
47
48
import { useEffect, useRef } from "react";
import { useInView, useMotionValue, useSpring } from "framer-motion";
/**
*
* @param root0
* @param root0.value
*/
type Props = {
value: number;
direction?: "up" | "down";
className?: string;
};
export default function Counter({
value,
direction = "up",
className
}: Props) {
const ref = useRef<HTMLSpanElement>(null);
const motionValue = useMotionValue(direction === "down" ? value : 0);
const springValue = useSpring(motionValue, {
damping: 100,
stiffness: 100,
});
const isInView = useInView(ref, { once: true, margin: "-100px" });
useEffect(() => {
if (isInView) {
motionValue.set(direction === "down" ? 0 : value);
}
}, [motionValue, isInView]);
useEffect(
() =>
springValue.on("change", (latest) => {
if (ref.current) {
ref.current.textContent = Intl.NumberFormat("en-US").format(
latest.toFixed(0)
);
}
}),
[springValue]
);
return <span className={className} ref={ref} />;
}