59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
import { NDKEvent } from '@nostr-dev-kit/ndk';
|
|
import { useMemo } from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import { Image } from '@shared/image';
|
|
|
|
export function ArticleNote(props: { event?: NDKEvent }) {
|
|
const metadata = useMemo(() => {
|
|
const title = props.event.tags.find((tag) => tag[0] === 'title')?.[1];
|
|
const image = props.event.tags.find((tag) => tag[0] === 'image')?.[1];
|
|
const summary = props.event.tags.find((tag) => tag[0] === 'summary')?.[1];
|
|
|
|
let publishedAt: Date | string | number = props.event.tags.find(
|
|
(tag) => tag[0] === 'published_at'
|
|
)?.[1];
|
|
if (publishedAt) {
|
|
publishedAt = new Date(parseInt(publishedAt)).toLocaleDateString('en-US');
|
|
} else {
|
|
publishedAt = new Date(props.event.created_at * 1000).toLocaleDateString('en-US');
|
|
}
|
|
|
|
return {
|
|
title,
|
|
image,
|
|
publishedAt,
|
|
summary,
|
|
};
|
|
}, [props.event.id]);
|
|
|
|
return (
|
|
<Link
|
|
to={`/notes/article/${props.event.id}`}
|
|
preventScrollReset={true}
|
|
className="mb-2 mt-3 rounded-lg"
|
|
>
|
|
<div className="flex flex-col rounded-lg">
|
|
{metadata.image && (
|
|
<Image
|
|
src={metadata.image}
|
|
alt={metadata.title}
|
|
className="h-44 w-full rounded-t-lg object-cover"
|
|
/>
|
|
)}
|
|
<div className="flex flex-col gap-2 rounded-b-lg bg-white/10 px-3 py-3 backdrop-blur-xl">
|
|
<h5 className="line-clamp-1 font-medium leading-none text-white">
|
|
{metadata.title}
|
|
</h5>
|
|
<p className="line-clamp-3 break-all text-sm text-white/50">
|
|
{metadata.summary}
|
|
</p>
|
|
<span className="mt-2.5 text-sm leading-none text-white/50">
|
|
{metadata.publishedAt.toString()}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
);
|
|
}
|