release 0.3.4
This commit is contained in:
40
apps/web/ui/shared/counting-numbers.tsx
Normal file
40
apps/web/ui/shared/counting-numbers.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect, useState } from "react";
|
||||
|
||||
export default function CountingNumbers({
|
||||
value,
|
||||
className,
|
||||
start = 0,
|
||||
duration = 800,
|
||||
}: {
|
||||
value: number;
|
||||
className: string;
|
||||
start?: number;
|
||||
duration?: number;
|
||||
}) {
|
||||
const [count, setCount] = useState(start);
|
||||
|
||||
useEffect(() => {
|
||||
let startTime: number | undefined;
|
||||
const animateCount = (timestamp: number) => {
|
||||
if (!startTime) startTime = timestamp;
|
||||
const timePassed = timestamp - startTime;
|
||||
const progress = timePassed / duration;
|
||||
const currentCount = easeOutQuad(progress, 0, value, 1);
|
||||
if (currentCount >= value) {
|
||||
setCount(value);
|
||||
return;
|
||||
}
|
||||
setCount(currentCount);
|
||||
requestAnimationFrame(animateCount);
|
||||
};
|
||||
requestAnimationFrame(animateCount);
|
||||
}, [value, duration]);
|
||||
|
||||
return <p className={className}>{Intl.NumberFormat().format(count)}</p>;
|
||||
}
|
||||
const easeOutQuad = (t: number, b: number, c: number, d: number) => {
|
||||
t = t > d ? d : t / d;
|
||||
return Math.round(-c * t * (t - 2) + b);
|
||||
};
|
Reference in New Issue
Block a user