Files
caszl-next/app/components/ArticleBlock.tsx

75 lines
1.9 KiB
TypeScript
Raw Normal View History

2023-10-27 17:29:50 +08:00
import Image from "next/image";
import trumpetIcon from "@/app/assets/trumpet-icon.png";
import styles from "@/app/assets/page.module.css";
import Link from "next/link";
import request from "@/app/lib/request";
import { listArticles } from "@/app/api/articles";
2023-11-01 17:27:06 +08:00
import dayjs from "dayjs";
2023-10-27 17:29:50 +08:00
interface ArticleLink {
title: string;
date?: string;
href: string;
}
const ArticleBlock = async ({
title,
width,
height,
category,
linkPrefix,
2023-11-01 17:27:06 +08:00
showDate,
2023-10-27 17:29:50 +08:00
}: {
title: string;
height?: number | string;
width?: number | string;
category: string;
linkPrefix: string;
2023-11-01 17:27:06 +08:00
showDate?: boolean;
2023-10-27 17:29:50 +08:00
}) => {
const data = await listArticles({ cid: category });
return (
<div
style={{
width,
height,
}}
2023-11-01 17:27:06 +08:00
className={"flex flex-col overflow-hidden"}
2023-10-27 17:29:50 +08:00
>
<div
2023-11-01 17:27:06 +08:00
className={`title-bar text-white flex items-center px-2 font-bold ${styles.articleBlockTitleBar} relative`}
2023-10-27 17:29:50 +08:00
>
<Image width={30} height={30} src={trumpetIcon} alt={"trumpet icon"} />
<span className={"ml-2 text-[14px]"}>{title}</span>
2023-11-01 17:27:06 +08:00
<Link
className={"absolute right-3 text-white text-xs"}
href={`${linkPrefix}/pages/1`}
>
+
</Link>
2023-10-27 17:29:50 +08:00
</div>
<div className={`${styles.articlesList} bg-[#e1f1fd] flex-1`}>
<ul>
2023-11-01 22:25:06 +08:00
{data.lists?.map((article) => (
2023-11-01 17:27:06 +08:00
<li className={"h-8"} key={article.id}>
2023-10-27 17:29:50 +08:00
<Link
2023-11-01 17:27:06 +08:00
className={
"w-full px-1 h-full flex items-center text-xs justify-between"
}
2023-10-27 17:29:50 +08:00
href={`${linkPrefix}/${article.id}`}
>
2023-11-01 17:27:06 +08:00
<span className={"flex-1 truncate"}>{article.title}</span>
{showDate && (
<span>{dayjs(article.createTime).format("YYYY-MM-DD")}</span>
)}
2023-10-27 17:29:50 +08:00
</Link>
</li>
))}
</ul>
</div>
</div>
);
};
export default ArticleBlock;