File tree 1 file changed +15
-15
lines changed
src/components/download/DownloadInfo
1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ type GithubProps = {
8
8
repo : string ;
9
9
} ;
10
10
11
+ type ReleaseData = {
12
+ name : string ;
13
+ published_at : string ;
14
+ prerelease : boolean ;
15
+ } ;
16
+
11
17
const DownloadInfo = function ( { owner, repo } : GithubProps ) {
12
18
const [ isLoading , setIsLoading ] = useState ( true ) ;
13
19
const [ published , setPublished ] = useState ( "" ) ;
@@ -16,22 +22,16 @@ const DownloadInfo = function ({ owner, repo }: GithubProps) {
16
22
useEffect ( ( ) => {
17
23
fetch ( `https://api.github.com/repos/${ owner } /${ repo } /releases` )
18
24
. then ( ( res ) =>
19
- res . json ( ) . then ( ( val ) => {
25
+ res . json ( ) . then ( ( val : ReleaseData [ ] ) => {
20
26
if ( val . length ) {
21
- for ( let data of val ) {
22
- if ( ! data . prerelease ) {
23
- const data = val [ 0 ] ;
24
- clientVersion . set ( data . name ? data . name . slice ( 1 ) : "" ) ;
25
-
26
- // 2024-07-08T12:58:59Z -> 08.07.2024
27
- setPublished (
28
- data . published_at
29
- ? data . published_at . split ( "T" ) [ 0 ] . split ( "-" ) . reverse ( ) . join ( "." )
30
- : "" ,
31
- ) ;
32
- break ;
33
- }
34
- }
27
+ // find latest version that is not a prerelease, the api should list them in order of newest to oldest
28
+ const latestVersion = val . find ( ( data ) => data . prerelease === false ) ;
29
+ clientVersion . set ( latestVersion ?. name ? latestVersion . name . slice ( 1 ) : "" ) ;
30
+ setPublished (
31
+ latestVersion ?. published_at
32
+ ? latestVersion . published_at . split ( "T" ) [ 0 ] . split ( "-" ) . reverse ( ) . join ( "." )
33
+ : "" ,
34
+ ) ;
35
35
}
36
36
setIsLoading ( false ) ;
37
37
} ) ,
You can’t perform that action at this time.
0 commit comments