Files
jarv.is/components/comments/comments.tsx
T

63 lines
1.7 KiB
TypeScript

import { headers } from "next/headers";
import { auth } from "@/lib/auth";
import { type CommentWithUser, getComments } from "@/lib/server/comments";
import { NewCommentForm } from "./comment-form";
import { CommentThread } from "./comment-thread";
import { SignIn } from "./sign-in";
const Comments = async ({ slug }: { slug: string }) => {
const session = await auth.api.getSession({
headers: await headers(),
});
const comments = await getComments(slug);
const commentsByParentId = comments.reduce(
(acc, comment) => {
const parentId = comment.parentId || "root";
if (!acc[parentId]) {
acc[parentId] = [];
}
acc[parentId].push(comment);
return acc;
},
{} as Record<string, CommentWithUser[]>,
);
const rootComments = commentsByParentId.root || [];
return (
<>
{session ? (
<NewCommentForm slug={slug} />
) : (
<div className="flex flex-col items-center justify-center gap-y-4 rounded-lg bg-muted/40 p-6">
<p className="text-center font-medium">Join the discussion by signing in:</p>
<SignIn callbackPath={`/${slug}#comments`} />
</div>
)}
{rootComments.length > 0 ? (
<div className="space-y-6">
{rootComments.map((comment: CommentWithUser) => (
<CommentThread
key={comment.id}
comment={comment}
replies={commentsByParentId[comment.id] || []}
allComments={commentsByParentId}
/>
))}
</div>
) : (
<div className="py-8 text-center text-lg font-medium tracking-tight text-foreground/80">
Be the first to comment!
</div>
)}
</>
);
};
export { Comments };