mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
import LinkAnchor from 'components/mdx/link-anchor';
|
|
import GistsCode from 'components/pages/gists/gists-code';
|
|
import dayjs from 'dayjs';
|
|
import relativeTime from 'dayjs/plugin/relativeTime';
|
|
import { getSignalGist } from 'lib/fetcher';
|
|
import Image from 'next/image';
|
|
import Link from 'next/link';
|
|
import { notFound } from 'next/navigation';
|
|
import avatar from 'public/images/img/avatar.svg';
|
|
|
|
export const revalidate = 600;
|
|
|
|
dayjs.extend(relativeTime);
|
|
|
|
export default async function Page({
|
|
params,
|
|
}: {
|
|
params: Promise<{
|
|
id: string;
|
|
}>;
|
|
}) {
|
|
const { id } = await params;
|
|
if (typeof id !== 'string') notFound();
|
|
const gist = await getSignalGist(id);
|
|
if (!gist || !gist.files) notFound();
|
|
|
|
return (
|
|
<>
|
|
<div className="flex items-center py-1 ">
|
|
<Image
|
|
src={avatar}
|
|
alt="Avatar"
|
|
priority
|
|
width={32}
|
|
height={32}
|
|
className="rounded-full "
|
|
/>
|
|
<h1 className="ml-2 overflow-hidden text-xl whitespace-nowrap text-ellipsis">
|
|
<Link href="/gists">
|
|
<LinkAnchor external={false}>{gist.login}</LinkAnchor>
|
|
</Link>
|
|
/{Object.keys(gist.files)[0]}
|
|
</h1>
|
|
</div>
|
|
|
|
<p className="pl-10 text-gray-400 ">
|
|
Last active: {dayjs(gist.updated_at).fromNow()}
|
|
</p>
|
|
|
|
<div className="py-4">
|
|
<p className="pb-2 text-lg text-gray-500">{gist.description}</p>
|
|
|
|
{Object.keys(gist.files).map((f) => (
|
|
<GistsCode
|
|
key={gist.files[f].raw_url}
|
|
file={gist.files[f]}
|
|
showFileName
|
|
/>
|
|
))}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|