({
comment,
extensionId,
currentUserId,
isAdmin,
isLiked = false,
isAuthenticated = false,
isReply = false,
}: CommentCardProps)
| 33 | } |
| 34 | |
| 35 | export function CommentCard({ |
| 36 | comment, |
| 37 | extensionId, |
| 38 | currentUserId, |
| 39 | isAdmin, |
| 40 | isLiked = false, |
| 41 | isAuthenticated = false, |
| 42 | isReply = false, |
| 43 | }: CommentCardProps) { |
| 44 | const [showReplyForm, setShowReplyForm] = useState(false) |
| 45 | const [isDeleting, setIsDeleting] = useState(false) |
| 46 | const [liked, setLiked] = useState(isLiked) |
| 47 | const [likeCount, setLikeCount] = useState(comment.likeCount) |
| 48 | |
| 49 | const removeComment = useMutation(api.comments.remove) |
| 50 | const adminDeleteComment = useMutation(api.admin.deleteComment) |
| 51 | const toggleLike = useMutation(api.comments.toggleLike) |
| 52 | |
| 53 | const isOwner = currentUserId === comment.author.userId |
| 54 | const canDelete = isOwner || isAdmin |
| 55 | |
| 56 | const formattedDate = new Date(comment.createdAt).toLocaleDateString("en-US", { |
| 57 | year: "numeric", |
| 58 | month: "short", |
| 59 | day: "numeric", |
| 60 | }) |
| 61 | |
| 62 | const handleDelete = async () => { |
| 63 | if (!confirm("Are you sure you want to delete this comment?")) return |
| 64 | |
| 65 | setIsDeleting(true) |
| 66 | try { |
| 67 | if (isAdmin && !isOwner) { |
| 68 | await adminDeleteComment({ commentId: comment._id }) |
| 69 | } else { |
| 70 | await removeComment({ commentId: comment._id }) |
| 71 | } |
| 72 | } catch (err) { |
| 73 | console.error("Failed to delete comment:", err) |
| 74 | alert("Failed to delete comment") |
| 75 | } finally { |
| 76 | setIsDeleting(false) |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | const handleLike = async () => { |
| 81 | if (!isAuthenticated) return |
| 82 | |
| 83 | // Optimistic update |
| 84 | const newLiked = !liked |
| 85 | setLiked(newLiked) |
| 86 | setLikeCount((prev) => (newLiked ? prev + 1 : prev - 1)) |
| 87 | |
| 88 | try { |
| 89 | await toggleLike({ commentId: comment._id }) |
| 90 | } catch (err) { |
| 91 | // Revert on error |
| 92 | setLiked(!newLiked) |
nothing calls this directly
no outgoing calls
no test coverage detected