mirror of
https://git.mirrors.martin98.com/https://github.com/bytedance/deer-flow
synced 2025-10-04 20:16:30 +08:00
82 lines
2.6 KiB
TypeScript
82 lines
2.6 KiB
TypeScript
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { StarFilledIcon, GitHubLogoIcon } from "@radix-ui/react-icons";
|
|
import Link from "next/link";
|
|
|
|
import { NumberTicker } from "~/components/magicui/number-ticker";
|
|
import { Button } from "~/components/ui/button";
|
|
import { env } from "~/env";
|
|
|
|
export async function SiteHeader() {
|
|
return (
|
|
<header className="supports-backdrop-blur:bg-background/80 bg-background/40 sticky top-0 left-0 z-40 flex h-15 w-full flex-col items-center backdrop-blur-lg">
|
|
<div className="container flex h-15 items-center justify-between px-3">
|
|
<div className="text-xl font-medium">
|
|
<span className="mr-1 text-2xl">🦌</span>
|
|
<span>DeerFlow</span>
|
|
</div>
|
|
<div className="relative flex items-center">
|
|
<div
|
|
className="pointer-events-none absolute inset-0 z-0 h-full w-full rounded-full opacity-60 blur-2xl"
|
|
style={{
|
|
background: "linear-gradient(90deg, #ff80b5 0%, #9089fc 100%)",
|
|
filter: "blur(32px)",
|
|
}}
|
|
/>
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
asChild
|
|
className="group relative z-10"
|
|
>
|
|
<Link href="https://github.com/bytedance/deer-flow" target="_blank">
|
|
<GitHubLogoIcon className="size-4" />
|
|
Star on GitHub
|
|
{env.NEXT_PUBLIC_STATIC_WEBSITE_ONLY &&
|
|
env.GITHUB_OAUTH_TOKEN && <StarCounter />}
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<hr className="from-border/0 via-border/70 to-border/0 m-0 h-px w-full border-none bg-gradient-to-r" />
|
|
</header>
|
|
);
|
|
}
|
|
|
|
export async function StarCounter() {
|
|
let stars = 1000; // Default value
|
|
|
|
try {
|
|
const response = await fetch(
|
|
"https://api.github.com/repos/bytedance/deer-flow",
|
|
{
|
|
headers: env.GITHUB_OAUTH_TOKEN
|
|
? {
|
|
Authorization: `Bearer ${env.GITHUB_OAUTH_TOKEN}`,
|
|
"Content-Type": "application/json",
|
|
}
|
|
: {},
|
|
next: {
|
|
revalidate: 3600,
|
|
},
|
|
},
|
|
);
|
|
|
|
if (response.ok) {
|
|
const data = await response.json();
|
|
stars = data.stargazers_count ?? stars; // Update stars if API response is valid
|
|
}
|
|
} catch (error) {
|
|
console.error("Error fetching GitHub stars:", error);
|
|
}
|
|
return (
|
|
<>
|
|
<StarFilledIcon className="size-4 transition-colors duration-300 group-hover:text-yellow-500" />
|
|
{stars && (
|
|
<NumberTicker className="font-mono tabular-nums" value={stars} />
|
|
)}
|
|
</>
|
|
);
|
|
}
|