import { FC, useRef } from "react"; import { useForm, Controller } from "react-hook-form"; // types import { TIssueComment } from "@plane/types"; // components import { LiteTextEditor } from "@/components/editor/lite-text-editor/lite-text-editor"; // constants import { EIssueCommentAccessSpecifier } from "@/constants/issue"; // helpers import { isEmptyHtmlString } from "@/helpers/string.helper"; // hooks import { useWorkspace } from "@/hooks/store"; // editor import { TActivityOperations } from "../root"; type TIssueCommentCreate = { projectId: string; workspaceSlug: string; activityOperations: TActivityOperations; showAccessSpecifier?: boolean; issueId: string; }; export const IssueCommentCreate: FC = (props) => { const { workspaceSlug, projectId, issueId, activityOperations, showAccessSpecifier = false } = props; // refs const editorRef = useRef(null); // store hooks const workspaceStore = useWorkspace(); // derived values const workspaceId = workspaceStore.getWorkspaceBySlug(workspaceSlug as string)?.id as string; // form info const { handleSubmit, control, watch, formState: { isSubmitting }, reset, } = useForm>({ defaultValues: { comment_html: "

", }, }); const onSubmit = async (formData: Partial) => await activityOperations.createComment(formData).finally(() => { reset({ comment_html: "

", }); editorRef.current?.clearEditor(); }); const commentHTML = watch("comment_html"); const isEmpty = commentHTML?.trim() === "" || commentHTML === "

" || (isEmptyHtmlString(commentHTML ?? "") && !commentHTML?.includes("mention-component")); return (
{ if (e.key === "Enter" && !e.shiftKey && !isEmpty && !isSubmitting) handleSubmit(onSubmit)(e); }} > ( (

"} projectId={projectId} workspaceSlug={workspaceSlug} onEnterKeyPress={(e) => { if (!isEmpty && !isSubmitting) handleSubmit(onSubmit)(e); }} ref={editorRef} initialValue={value ?? "

"} containerClassName="min-h-[35px]" onChange={(comment_json, comment_html) => onChange(comment_html)} accessSpecifier={accessValue ?? EIssueCommentAccessSpecifier.INTERNAL} handleAccessChange={onAccessChange} showAccessSpecifier={showAccessSpecifier} isSubmitting={isSubmitting} /> )} /> )} />
); };