Skip to content

Commit

Permalink
feat: added release page in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeluard committed Apr 14, 2024
1 parent 4773dd2 commit 4e58e65
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/pages/releases.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Releases
---

import {Releases} from '@site/src/components/Releases';

<Releases repository="chainsafe/lodestar" />
1 change: 1 addition & 0 deletions docs/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import type {SidebarsConfig} from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
tutorialSidebar: [
"index",
"releases",
"introduction",
{
type: "category",
Expand Down
60 changes: 60 additions & 0 deletions docs/src/components/Releases/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import React, {useEffect, useState} from "react";

export type Asset = {
// eslint-disable-next-line prettier/prettier, @typescript-eslint/naming-convention
browser_download_url: string;
id: number;
name: string;
};

export type Release = {
id: number;
name: string;
// eslint-disable-next-line prettier/prettier, @typescript-eslint/naming-convention
published_at: string;
assets: Asset[];
};

// eslint-disable-next-line @typescript-eslint/explicit-function-return-type, @typescript-eslint/naming-convention
export function Releases({repository}: {repository: string}) {
const [releases, setReleases] = useState([]);

useEffect(() => {
fetch(`https://github.com/gitapi/repos/${repository}/releases`)
.then((response) => response.json())
.then(setReleases)
.catch(() => setReleases([]));
});

if (releases.length === 0) {
return <div>No releases</div>;
} else {
return (
<table>
<thead>
<tr>
<th>Version</th>
<th>Release Date</th>
<th>Downloads</th>
</tr>
</thead>
<tbody>
{releases &&
releases.map((release) => (
<tr key={release.id}>
<td>{release.name}</td>
<td>{release.published_at}</td>
<td>
{release.assets.map((asset) => (
<a key={asset.id} href={asset.browser_download_url}>
<div>{asset.name}</div>
</a>
))}
</td>
</tr>
))}
</tbody>
</table>
);
}
}

0 comments on commit 4e58e65

Please sign in to comment.