File tree 2 files changed +48
-11
lines changed
2 files changed +48
-11
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,28 @@ import { cachedGitHubLogin } from "../utils/github.ts";
6
6
7
7
export function GitHubUserLink ( { user } : { user ?: User } ) {
8
8
const login = useSignal ( "" ) ;
9
+ const error = useSignal ( false ) ;
9
10
10
11
useEffect ( ( ) => {
11
12
if ( user ) {
12
13
cachedGitHubLogin ( user )
13
14
. then ( ( login_ ) => {
14
15
login . value = login_ ;
15
16
} )
16
- . catch ( console . error ) ;
17
+ . catch ( ( error_ ) => {
18
+ console . error ( error_ ) ;
19
+
20
+ error . value = true ;
21
+ } ) ;
17
22
}
18
23
} ) ;
19
24
25
+ if ( error . value ) {
26
+ return (
27
+ < span class = "italic text-[0.625rem]" > Could not load GitHub username</ span >
28
+ ) ;
29
+ }
30
+
20
31
return login . value == ""
21
32
? < span > loading...</ span >
22
33
: < a class = "link" href = { "https://github.com/" + login . value } > GitHub</ a > ;
Original file line number Diff line number Diff line change @@ -5,15 +5,41 @@ import { getOrInsertItem } from "./client_cache.ts";
5
5
export async function cachedGitHubLogin ( user : User ) : Promise < string > {
6
6
return await getOrInsertItem (
7
7
`gh-login-${ user . githubId } ` ,
8
- ( ) =>
9
- fetch ( `https://api.github.com/user/${ user . githubId } ` , {
10
- headers : {
11
- "Content-Type" : "application/json" ,
12
- } ,
13
- } )
14
- . then ( ( r ) => r . json ( ) )
15
- . then ( ( data ) => {
16
- return data . login ;
17
- } ) ,
8
+ ( ) => {
9
+ const MAX_RETRIES = 3 ;
10
+ const fetchGithubUser = async ( retryCount = 0 ) => {
11
+ const response = await fetch (
12
+ `https://api.github.com/user/${ user . githubId } ` ,
13
+ {
14
+ headers : {
15
+ "Content-Type" : "application/json" ,
16
+ } ,
17
+ } ,
18
+ ) ;
19
+
20
+ if (
21
+ response . status === 403 &&
22
+ response . headers . get ( "x-ratelimit-remaining" ) === "0"
23
+ ) {
24
+ throw new Error ( "Github API rate limit exceeded" ) ;
25
+ }
26
+
27
+ const data = await response . json ( ) ;
28
+
29
+ if ( ! data . login ) {
30
+ if ( retryCount >= MAX_RETRIES ) {
31
+ throw new Error (
32
+ "Failed to fetch GitHub login after maximum retries" ,
33
+ ) ;
34
+ }
35
+
36
+ await new Promise ( ( resolve ) => setTimeout ( resolve , 100 ) ) ;
37
+ return fetchGithubUser ( retryCount + 1 ) ;
38
+ }
39
+ return data . login ;
40
+ } ;
41
+
42
+ return fetchGithubUser ( ) ;
43
+ } ,
18
44
) ;
19
45
}
You can’t perform that action at this time.
0 commit comments