ref: fetch api function

This commit is contained in:
Dipanshu Rawat
2025-06-24 02:06:55 +05:30
parent fb9c560c5b
commit 57e42e2c45
3 changed files with 61 additions and 24 deletions

View File

@ -1,20 +1,29 @@
async function getStars(): Promise<string> {
const res = await fetch("https://api.github.com/repos/OpenCut-app/OpenCut", {
// Cache for 1 hour (3600 seconds)
next: { revalidate: 3600 },
});
export async function getStars(): Promise<string> {
try {
const res = await fetch(
"https://api.github.com/repos/OpenCut-app/OpenCut",
{
next: { revalidate: 3600 },
}
);
const data = await res.json();
const count = data.stargazers_count;
if (!res.ok) {
throw new Error(`GitHub API error: ${res.status} ${res.statusText}`);
}
const data = await res.json();
const count = data.stargazers_count;
if (count >= 1_000_000)
return (count / 1_000_000).toFixed(1).replace(/\.0$/, "") + "M";
if (count >= 1_000)
return (count / 1_000).toFixed(1).replace(/\.0$/, "") + "k";
return count.toString();
}
export async function ghStars() {
const stars = await getStars();
return stars;
if (typeof count !== "number") {
throw new Error("Invalid stargazers_count from GitHub API");
}
if (count >= 1_000_000)
return (count / 1_000_000).toFixed(1).replace(/\.0$/, "") + "M";
if (count >= 1_000)
return (count / 1_000).toFixed(1).replace(/\.0$/, "") + "k";
return count.toString();
} catch (error) {
console.error("Failed to fetch GitHub stars:", error);
return "1.5k";
}
}