import React from "react"; import { useRouter } from "next/router"; // react-hook-form import { useForm, Controller } from "react-hook-form"; // components import { LiteTextEditorWithRef } from "@plane/lite-text-editor"; // ui import { SecondaryButton } from "components/ui"; // types import type { IIssueComment } from "types"; // services import fileService from "services/file.service"; const defaultValues: Partial = { access: "INTERNAL", comment_html: "", }; type Props = { disabled?: boolean; onSubmit: (data: IIssueComment) => Promise; showAccessSpecifier?: boolean; }; type commentAccessType = { icon: string; key: string; label: "Private" | "Public"; } const commentAccess: commentAccessType[] = [ { icon: "lock", key: "INTERNAL", label: "Private", }, { icon: "public", key: "EXTERNAL", label: "Public", }, ]; export const AddComment: React.FC = ({ disabled = false, onSubmit, showAccessSpecifier = false, }) => { const editorRef = React.useRef(null); const router = useRouter(); const { workspaceSlug } = router.query; const { control, formState: { isSubmitting }, handleSubmit, reset, } = useForm({ defaultValues }); const handleAddComment = async (formData: IIssueComment) => { if (!formData.comment_html || isSubmitting) return; await onSubmit(formData).then(() => { reset(defaultValues); editorRef.current?.clearEditor(); }); }; return (
( (

" : commentValue} customClassName="p-3 min-h-[100px] shadow-sm" debouncedUpdatesEnabled={false} onChange={(comment_json: Object, comment_html: string) => onCommentChange(comment_html)} commentAccessSpecifier={{ accessValue, onAccessChange, showAccessSpecifier, commentAccess }} /> )} /> )} />
{isSubmitting ? "Adding..." : "Comment"}
); };