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

@ -6,12 +6,27 @@ import { Button } from "./ui/button";
import { ArrowRight } from "lucide-react"; import { ArrowRight } from "lucide-react";
import { HeaderBase } from "./header-base"; import { HeaderBase } from "./header-base";
import { useSession } from "@/lib/auth-client"; import { useSession } from "@/lib/auth-client";
import { ghStars } from "@/lib/fetchGhStars"; import { getStars } from "@/lib/fetchGhStars";
import { Star } from "lucide-react"; import { Star } from "lucide-react";
import { useEffect, useState } from "react";
export function Header() { export function Header() {
const stars = ghStars();
const { data: session } = useSession(); const { data: session } = useSession();
const [star, setStar] = useState<string>("");
useEffect(() => {
const fetchStars = async () => {
try {
const data = await getStars();
setStar(data);
} catch (err) {
console.error("Failed to fetch GitHub stars", err);
}
};
fetchStars();
}, []);
const leftContent = ( const leftContent = (
<Link href="/" className="flex items-center gap-3"> <Link href="/" className="flex items-center gap-3">
<Image src="/logo.png" alt="OpenCut Logo" width={24} height={24} /> <Image src="/logo.png" alt="OpenCut Logo" width={24} height={24} />
@ -28,7 +43,7 @@ export function Header() {
> >
<span className="hidden sm:inline">GitHub</span> <span className="hidden sm:inline">GitHub</span>
<span className="text-foreground flex items-center"> <span className="text-foreground flex items-center">
{stars}+ {star}+
<Star className="w-4 h-4 ml-1" /> <Star className="w-4 h-4 ml-1" />
</span> </span>
</Button> </Button>

View File

@ -5,19 +5,32 @@ import { Button } from "../ui/button";
import { Input } from "../ui/input"; import { Input } from "../ui/input";
import { ArrowRight } from "lucide-react"; import { ArrowRight } from "lucide-react";
import Link from "next/link"; import Link from "next/link";
import { useState } from "react"; import { useEffect, useState } from "react";
import { useToast } from "@/hooks/use-toast"; import { useToast } from "@/hooks/use-toast";
import { ghStars } from "@/lib/fetchGhStars"; import { getStars } from "@/lib/fetchGhStars";
interface HeroProps { interface HeroProps {
signupCount: number; signupCount: number;
} }
export function Hero({ signupCount }: HeroProps) { export function Hero({ signupCount }: HeroProps) {
const [star, setStar] = useState<string>();
const [email, setEmail] = useState(""); const [email, setEmail] = useState("");
const [isSubmitting, setIsSubmitting] = useState(false); const [isSubmitting, setIsSubmitting] = useState(false);
const { toast } = useToast(); const { toast } = useToast();
const stars = ghStars();
useEffect(() => {
const fetchStars = async () => {
try {
const data = await getStars();
setStar(data);
} catch (err) {
console.error("Failed to fetch GitHub stars", err);
}
};
fetchStars();
}, []);
const handleSubmit = async (e: React.FormEvent) => { const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault(); e.preventDefault();
@ -154,7 +167,7 @@ export function Hero({ signupCount }: HeroProps) {
href="https://github.com/OpenCut-app/OpenCut" href="https://github.com/OpenCut-app/OpenCut"
className="text-foreground underline" className="text-foreground underline"
> >
GitHub {stars}+ GitHub {star}+
</Link> </Link>
</motion.div> </motion.div>
</div> </div>

View File

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