140 lines
5.5 KiB
TypeScript
140 lines
5.5 KiB
TypeScript
import { promises as fs } from "fs";
|
|
import path from "path";
|
|
import { getProject } from "../lib/octokit";
|
|
import getConfig from "next/config";
|
|
import ExternalLinkIcon from "../components/icons/ExternalLinkIcon";
|
|
import TimeAgo from "react-timeago";
|
|
import Link from "next/link";
|
|
import { NextSeo } from "next-seo";
|
|
|
|
export async function getStaticProps() {
|
|
const jsonDirectory = path.join(process.cwd(), "/datasets.json");
|
|
const repos = await fs.readFile(jsonDirectory, "utf8");
|
|
const github_pat = getConfig().serverRuntimeConfig.github_pat;
|
|
|
|
const projects = await Promise.all(
|
|
JSON.parse(repos).map(async (repo) => {
|
|
const project = await getProject(repo, github_pat);
|
|
return { ...project, repo_config: repo };
|
|
})
|
|
);
|
|
return {
|
|
props: {
|
|
projects,
|
|
},
|
|
};
|
|
}
|
|
|
|
export function Datasets({ projects }) {
|
|
return (
|
|
<>
|
|
<NextSeo title="GitHub Datasets" />
|
|
<div className="bg-white min-h-screen">
|
|
<div className="mx-auto max-w-7xl px-6 py-16 sm:py-24 lg:px-8">
|
|
<div className="text-center">
|
|
<h2 className="text-3xl font-bold leading-10 tracking-tight">
|
|
GitHub Datasets
|
|
</h2>
|
|
<p className="mt-3 mx-auto max-w-2xl text-base leading-7 text-gray-500">
|
|
Data catalog with datasets hosted on GitHub by{" "}
|
|
<Link
|
|
target="_blank"
|
|
className="underline"
|
|
href="https://portaljs.org/"
|
|
>
|
|
🌀 PortalJS
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
<div className="mt-20">
|
|
<div className="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
|
|
<div className="inline-block min-w-full py-2 align-middle sm:px-6 lg:px-8">
|
|
<table className="min-w-full divide-y divide-gray-300">
|
|
<thead>
|
|
<tr>
|
|
<th
|
|
scope="col"
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
|
|
>
|
|
Name
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
|
|
>
|
|
Repository
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
|
|
>
|
|
Description
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="px-3 py-3.5 text-left text-sm font-semibold text-gray-900"
|
|
>
|
|
Last updated
|
|
</th>
|
|
<th
|
|
scope="col"
|
|
className="relative py-3.5 pl-3 pr-4 sm:pr-0"
|
|
></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="divide-y divide-gray-200">
|
|
{projects.map((project) => (
|
|
<tr key={project.id}>
|
|
<td className="whitespace-nowrap px-3 py-6 text-sm text-gray-500">
|
|
{project.repo_config.name
|
|
? project.repo_config.name
|
|
: project.full_name +
|
|
(project.base_path === "/"
|
|
? ""
|
|
: "/" + project.base_path)}
|
|
</td>
|
|
<td className="whitespace-nowrap px-3 py-6 text-sm group text-gray-500 hover:text-gray-900 transition-all duration-250">
|
|
<a
|
|
href={project.html_url}
|
|
target="_blank"
|
|
className="flex items-center"
|
|
>
|
|
@{project.full_name}{" "}
|
|
<ExternalLinkIcon className="ml-1" />
|
|
</a>
|
|
</td>
|
|
<td className="px-3 py-4 text-sm text-gray-500">
|
|
{project.repo_config.description
|
|
? project.repo_config.description
|
|
: project.description}
|
|
</td>
|
|
<td className="whitespace-nowrap px-3 py-6 text-sm text-gray-500">
|
|
<TimeAgo date={new Date(project.last_updated)} />
|
|
</td>
|
|
<td className="relative whitespace-nowrap py-6 pl-3 pr-4 text-right text-sm font-medium sm:pr-0">
|
|
<a
|
|
href={`/@${project.repo_config.owner}/${
|
|
project.repo_config.repo
|
|
}/${
|
|
project.base_path === "/" ? "" : project.base_path
|
|
}`}
|
|
className="border border-gray-900 text-gray-900 px-4 py-2 transition-all hover:bg-gray-900 hover:text-white"
|
|
>
|
|
info
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default Datasets;
|