import React, { useEffect, useState } from "react"; import Image from "next/image"; import dynamic from "next/dynamic"; // react-hook-form import { useForm } from "react-hook-form"; // icons import { CheckIcon, XMarkIcon } from "@heroicons/react/24/outline"; // hooks import useUser from "hooks/use-user"; // ui import { CustomMenu } from "components/ui"; // helpers import { timeAgo } from "helpers/date-time.helper"; // types import type { IIssueComment } from "types"; const RemirrorRichTextEditor = dynamic(() => import("components/rich-text-editor"), { ssr: false }); type Props = { comment: IIssueComment; onSubmit: (comment: IIssueComment) => void; handleCommentDeletion: (comment: string) => void; }; export const CommentCard: React.FC = ({ comment, onSubmit, handleCommentDeletion }) => { const { user } = useUser(); const [isEditing, setIsEditing] = useState(false); const { formState: { isSubmitting }, handleSubmit, setFocus, setValue, } = useForm({ defaultValues: comment, }); const onEnter = (formData: IIssueComment) => { if (isSubmitting) return; setIsEditing(false); onSubmit(formData); }; useEffect(() => { isEditing && setFocus("comment"); }, [isEditing, setFocus]); return (
{comment.actor_detail.avatar && comment.actor_detail.avatar !== "" ? ( {comment.actor_detail.name} ) : (
{comment.actor_detail.first_name.charAt(0)}
)}

{comment.actor_detail.first_name} {comment.actor_detail.last_name} {timeAgo(comment.created_at)}

{isEditing ? (
{ setValue("comment_json", jsonValue); setValue("comment_html", htmlValue); }} placeholder="Enter Your comment..." />
) : ( <> ({})} /> )}
{user?.id === comment.actor && ( setIsEditing(true)}>Edit { handleCommentDeletion(comment.id); }} > Delete )}
); };