1
1
import { cn } from '@/src/lib/utils'
2
2
import Image from 'next/image'
3
- import { Result , crawlDependents } from './crawler'
3
+ import { z } from 'zod'
4
+
5
+ const dependentSchema = z . object ( {
6
+ stars : z . number ( ) ,
7
+ owner : z . string ( ) ,
8
+ name : z . string ( ) ,
9
+ pkg : z . string ( ) ,
10
+ avatarURL : z . string ( ) ,
11
+ createdAt : z . string ( ) . transform ( date => new Date ( date ) )
12
+ } )
13
+ type Dependent = z . infer < typeof dependentSchema >
14
+
15
+ async function fetchDependents ( ) {
16
+ const data = await fetch ( 'https://dependents.47ng.com' , {
17
+ next : {
18
+ revalidate : 86_400 ,
19
+ tags : [ 'dependents' ]
20
+ }
21
+ } ) . then ( res => res . json ( ) )
22
+ return z . array ( dependentSchema ) . parse ( data )
23
+ }
4
24
5
25
export async function DependentsSection ( ) {
6
- let dependents : Result [ ] = [ ]
26
+ let dependents : Dependent [ ] = [ ]
7
27
try {
8
- dependents = await crawlDependents ( )
28
+ dependents = await fetchDependents ( )
9
29
} catch ( error ) {
10
30
console . error ( error )
11
31
return < section className = "text-red-500" > { String ( error ) } </ section >
@@ -30,13 +50,13 @@ export async function DependentsSection() {
30
50
< div className = "flex flex-wrap justify-center gap-1.5" >
31
51
{ dependents . map ( dep => (
32
52
< a
33
- key = { dep . repo }
34
- href = { `https://github.com/${ dep . repo } ` }
53
+ key = { dep . owner + dep . name }
54
+ href = { `https://github.com/${ dep . owner } / ${ dep . name } ` }
35
55
className = "relative h-8 w-8 rounded-full"
36
56
>
37
57
< Image
38
- src = { `https://avatars.githubusercontent.com/u/ ${ dep . avatarID } ?s=64&v=4` }
39
- alt = { dep . repo }
58
+ src = { upscaleGitHubAvatar ( dep . avatarURL , 64 ) }
59
+ alt = { dep . owner + '/' + dep . name }
40
60
className = "rounded-full"
41
61
width = { 64 }
42
62
height = { 64 }
@@ -54,3 +74,9 @@ export async function DependentsSection() {
54
74
</ section >
55
75
)
56
76
}
77
+
78
+ function upscaleGitHubAvatar ( originalURL : string , size : number ) {
79
+ const url = new URL ( originalURL )
80
+ url . searchParams . set ( 's' , size . toFixed ( ) )
81
+ return url . toString ( )
82
+ }
0 commit comments