2026-01-16 10:59:22 +02:00
|
|
|
"use client";
|
|
|
|
|
|
2026-01-19 16:50:51 -08:00
|
|
|
import { cn } from "@/lib/utils";
|
2026-01-16 10:59:22 +02:00
|
|
|
import { CommentComposer } from "../comment-composer/comment-composer";
|
|
|
|
|
import { CommentThread } from "../comment-thread/comment-thread";
|
|
|
|
|
import type { CommentPanelProps } from "./types";
|
|
|
|
|
|
|
|
|
|
export function CommentPanel({
|
|
|
|
|
threads,
|
|
|
|
|
members,
|
|
|
|
|
membersLoading = false,
|
|
|
|
|
isLoading = false,
|
|
|
|
|
onCreateComment,
|
|
|
|
|
onCreateReply,
|
|
|
|
|
onEditComment,
|
|
|
|
|
onDeleteComment,
|
|
|
|
|
isSubmitting = false,
|
2026-01-19 14:37:38 +02:00
|
|
|
maxHeight,
|
2026-01-19 16:50:51 -08:00
|
|
|
variant = "desktop",
|
2026-01-16 10:59:22 +02:00
|
|
|
}: CommentPanelProps) {
|
|
|
|
|
const handleCommentSubmit = (content: string) => {
|
|
|
|
|
onCreateComment(content);
|
|
|
|
|
};
|
|
|
|
|
|
2026-01-19 16:50:51 -08:00
|
|
|
const isMobile = variant === "mobile";
|
2026-03-10 14:00:29 +05:30
|
|
|
const isInline = variant === "inline";
|
2026-01-19 16:50:51 -08:00
|
|
|
|
2026-01-16 10:59:22 +02:00
|
|
|
if (isLoading) {
|
|
|
|
|
return (
|
2026-01-20 00:32:31 -08:00
|
|
|
<div
|
|
|
|
|
className={cn(
|
2026-03-10 18:24:53 +05:30
|
|
|
"flex min-h-[120px] items-center justify-center p-4",
|
|
|
|
|
isInline &&
|
|
|
|
|
"w-full rounded-xl border-sidebar-border border bg-sidebar text-sidebar-foreground shadow-lg",
|
|
|
|
|
!isMobile &&
|
|
|
|
|
!isInline &&
|
|
|
|
|
"w-96 rounded-lg border-sidebar-border border bg-sidebar text-sidebar-foreground"
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<div className="flex items-center gap-2 text-sm text-muted-foreground">
|
|
|
|
|
<div className="size-4 animate-spin rounded-full border-2 border-current border-t-transparent" />
|
|
|
|
|
Loading comments...
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-01-16 10:59:22 +02:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const hasThreads = threads.length > 0;
|
|
|
|
|
|
2026-01-19 14:37:38 +02:00
|
|
|
// Ensure minimum usable height for empty state + composer button
|
|
|
|
|
const minHeight = 180;
|
|
|
|
|
const effectiveMaxHeight = maxHeight ? Math.max(maxHeight, minHeight) : undefined;
|
|
|
|
|
|
2026-01-16 10:59:22 +02:00
|
|
|
return (
|
2026-01-19 14:37:38 +02:00
|
|
|
<div
|
2026-03-10 14:00:29 +05:30
|
|
|
className={cn(
|
|
|
|
|
"flex flex-col",
|
|
|
|
|
isMobile && "w-full",
|
2026-03-10 18:24:53 +05:30
|
|
|
isInline &&
|
|
|
|
|
"w-full rounded-xl border-sidebar-border border bg-sidebar text-sidebar-foreground shadow-lg max-h-80",
|
|
|
|
|
!isMobile &&
|
|
|
|
|
!isInline &&
|
|
|
|
|
"w-85 rounded-lg border-sidebar-border border bg-sidebar text-sidebar-foreground"
|
2026-03-10 14:00:29 +05:30
|
|
|
)}
|
2026-03-10 16:17:12 +05:30
|
|
|
style={
|
|
|
|
|
!isMobile && !isInline && effectiveMaxHeight ? { maxHeight: effectiveMaxHeight } : undefined
|
|
|
|
|
}
|
2026-01-19 14:37:38 +02:00
|
|
|
>
|
2026-01-16 11:34:43 +02:00
|
|
|
{hasThreads && (
|
2026-01-22 04:02:32 +05:30
|
|
|
<div className={cn("min-h-0 flex-1 overflow-y-auto scrollbar-thin", isMobile && "pb-24")}>
|
2026-01-16 10:59:22 +02:00
|
|
|
<div className="space-y-4 p-4">
|
|
|
|
|
{threads.map((thread) => (
|
|
|
|
|
<CommentThread
|
|
|
|
|
key={thread.id}
|
|
|
|
|
thread={thread}
|
|
|
|
|
members={members}
|
|
|
|
|
membersLoading={membersLoading}
|
|
|
|
|
onCreateReply={onCreateReply}
|
|
|
|
|
onEditComment={onEditComment}
|
|
|
|
|
onDeleteComment={onDeleteComment}
|
|
|
|
|
isSubmitting={isSubmitting}
|
|
|
|
|
/>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-01-16 11:34:43 +02:00
|
|
|
)}
|
|
|
|
|
|
2026-03-10 18:24:53 +05:30
|
|
|
<div className={cn("p-3", isMobile && "fixed bottom-0 left-0 right-0 z-50 bg-card border-t")}>
|
|
|
|
|
<CommentComposer
|
|
|
|
|
members={members}
|
|
|
|
|
membersLoading={membersLoading}
|
|
|
|
|
placeholder="Comment or @mention"
|
|
|
|
|
submitLabel="Comment"
|
|
|
|
|
isSubmitting={isSubmitting}
|
|
|
|
|
onSubmit={handleCommentSubmit}
|
|
|
|
|
autoFocus={!hasThreads}
|
|
|
|
|
compact
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2026-01-16 10:59:22 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|