add: github stars count by API

This commit is contained in:
Dipanshu Rawat
2025-06-24 01:40:46 +05:30
parent a6a520db70
commit fb9c560c5b
3 changed files with 35 additions and 3 deletions

View File

@ -6,8 +6,11 @@ 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 { Star } from "lucide-react";
export function Header() { export function Header() {
const stars = ghStars();
const { data: session } = useSession(); const { data: session } = useSession();
const leftContent = ( const leftContent = (
<Link href="/" className="flex items-center gap-3"> <Link href="/" className="flex items-center gap-3">
@ -19,8 +22,15 @@ export function Header() {
const rightContent = ( const rightContent = (
<nav className="flex items-center"> <nav className="flex items-center">
<Link href="https://github.com/OpenCut-app/OpenCut" target="_blank"> <Link href="https://github.com/OpenCut-app/OpenCut" target="_blank">
<Button variant="ghost" className="text-sm"> <Button
GitHub variant="ghost"
className="flex items-center text-sm text-muted-foreground hover:text-foreground"
>
<span className="hidden sm:inline">GitHub</span>
<span className="text-foreground flex items-center">
{stars}+
<Star className="w-4 h-4 ml-1" />
</span>
</Button> </Button>
</Link> </Link>
<Link href={session ? "/editor" : "/auth/login"}> <Link href={session ? "/editor" : "/auth/login"}>

View File

@ -7,6 +7,7 @@ import { ArrowRight } from "lucide-react";
import Link from "next/link"; import Link from "next/link";
import { useState } from "react"; import { useState } from "react";
import { useToast } from "@/hooks/use-toast"; import { useToast } from "@/hooks/use-toast";
import { ghStars } from "@/lib/fetchGhStars";
interface HeroProps { interface HeroProps {
signupCount: number; signupCount: number;
@ -16,6 +17,7 @@ export function Hero({ signupCount }: HeroProps) {
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();
const handleSubmit = async (e: React.FormEvent) => { const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault(); e.preventDefault();
@ -152,7 +154,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 GitHub {stars}+
</Link> </Link>
</motion.div> </motion.div>
</div> </div>

View File

@ -0,0 +1,20 @@
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 },
});
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;
}