|
1 |
| -import { format } from "date-fns"; |
2 |
| -import Image from "next/image"; |
3 |
| -import { generateHTML } from "@tiptap/html"; |
4 |
| -import StarterKit from "@tiptap/starter-kit"; |
| 1 | +import { sortPostsByDateDesc } from "@/utils/posts"; |
| 2 | +import PostFullView from "./PostFullView"; |
| 3 | +import { type User, type Post } from "@prisma/client"; |
5 | 4 |
|
6 |
| -export default function AllUserPosts({ |
7 |
| - user, |
8 |
| - posts, |
9 |
| -}: { |
10 |
| - posts: Post[]; |
11 |
| - user: User; |
12 |
| -}) { |
13 |
| - const sortedPostsDesc = posts.sort((a, b) => { |
14 |
| - return new Date(b.updatedAt).getTime() - new Date(a.updatedAt).getTime(); |
15 |
| - }); |
16 |
| - return sortedPostsDesc.map((post) => { |
17 |
| - const formattedDate = format(post.updatedAt, "dd MMM, yyyy"); |
18 |
| - |
19 |
| - const content = generateHTML(JSON.parse(post.content), [StarterKit]); |
| 5 | +interface AllUserPostsProps { |
| 6 | + posts: Omit<Post, "ownerId">[]; |
| 7 | + user: Pick<User, "id" | "name" | "email" | "image">; |
| 8 | +} |
20 | 9 |
|
21 |
| - return ( |
22 |
| - <article |
23 |
| - key={post.id} |
24 |
| - className="[&:not(:last-child)]:border-b-1 border-gray-200 py-10 px-4 xl:mr-5" |
25 |
| - > |
26 |
| - <time dateTime={formattedDate} className="text-gray-500 italic text-xs"> |
27 |
| - {formattedDate} |
28 |
| - </time> |
29 |
| - <div className="group relative"> |
30 |
| - <h3 className="mt-3 text-3xl/8 font-semibold text-gray-900 group-hover:text-gray-600"> |
31 |
| - <a href={`/home/posts/${post.slug}`}> |
32 |
| - <span className="absolute inset-0" /> |
33 |
| - {post.title} |
34 |
| - </a> |
35 |
| - </h3> |
36 |
| - <div |
37 |
| - className="mt-5 line-clamp-3 text-lg/6 text-gray-600" |
38 |
| - dangerouslySetInnerHTML={{ __html: content }} |
39 |
| - /> |
40 |
| - </div> |
41 |
| - <div className="relative mt-8 flex items-center gap-x-4"> |
42 |
| - {user.image && ( |
43 |
| - <Image |
44 |
| - alt="" |
45 |
| - src={user.image} |
46 |
| - className="size-10 rounded-full bg-gray-50" |
47 |
| - width={40} |
48 |
| - height={40} |
49 |
| - /> |
50 |
| - )} |
51 |
| - <div className="text-sm/6"> |
52 |
| - <p className="font-semibold text-gray-900"> |
53 |
| - <a href="#"> |
54 |
| - <span className="absolute inset-0" /> |
55 |
| - {user.name} |
56 |
| - </a> |
57 |
| - </p> |
58 |
| - {/* TODO: update when introduce RBAC */} |
59 |
| - {/* <p className="text-gray-600">Admin</p> */} |
60 |
| - </div> |
61 |
| - </div> |
62 |
| - </article> |
63 |
| - ); |
64 |
| - }); |
| 10 | +export default function AllUserPosts({ user, posts }: AllUserPostsProps) { |
| 11 | + // TODO: Update to use PostShortView component |
| 12 | + return sortPostsByDateDesc(posts).map((post) => ( |
| 13 | + <PostFullView |
| 14 | + key={post.id} |
| 15 | + post={post} |
| 16 | + user={user} |
| 17 | + slug={post.slug as string} |
| 18 | + /> |
| 19 | + )); |
65 | 20 | }
|
0 commit comments