/[sudobot]/trunk/docs/components/Navbar/GitHubStats.tsx
ViewVC logotype

Annotation of /trunk/docs/components/Navbar/GitHubStats.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (hide annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 1774 byte(s)
chore: add trunk
1 rakinar2 575 import styles from "@/styles/GitHubStats.module.css";
2     import { ComponentProps } from "react";
3     import { FaCodeFork, FaEye, FaGithub, FaStar } from "react-icons/fa6";
4    
5     type GitHubStatsProps = ComponentProps<"a"> & {
6     url: string;
7     };
8    
9     async function getData(repoName: string) {
10     const response = await fetch(`https://api.github.com/repos/${repoName}`, {
11     next: { revalidate: 3600 },
12     });
13    
14     if (!response.ok) {
15     return {
16     error: true,
17     };
18     }
19    
20     const json = await response.json();
21    
22     return {
23     stars: json.stargazers_count,
24     forks: json.forks,
25     watchers: json.subscribers_count,
26     };
27     }
28    
29     export default async function GitHubStats({
30     url,
31     className,
32     ...props
33     }: GitHubStatsProps) {
34     const repoName = url.replace(/^http(s?):\/\/github.com\//gi, "");
35     const { error, forks, stars, watchers } = await getData(repoName);
36    
37     return (
38     <a
39     className={`${styles.main} ${className}`}
40     href={url}
41     target="_blank"
42     rel="noreferrer"
43     {...props}
44     >
45     <div className={styles.repo}>
46     <FaGithub size={17} />
47     <span>{repoName}</span>
48     </div>
49    
50     {!error && (
51     <div className={styles.stats}>
52     <div>
53     <FaStar />
54     <span>{stars}</span>
55     </div>
56    
57     <div>
58     <FaCodeFork />
59     <span>{forks}</span>
60     </div>
61    
62     <div>
63     <FaEye />
64     <span>{watchers}</span>
65     </div>
66     </div>
67     )}
68     </a>
69     );
70     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26