import React, { useMemo } from "react"; import { useRouter } from "next/router"; import dynamic from "next/dynamic"; // react-hook-form import { useForm, Controller } from "react-hook-form"; // services import issuesServices from "services/issues.service"; // ui import { Loader } from "components/ui"; // helpers import { debounce } from "helpers/functions.helper"; // types import type { IIssueActivity, IIssueComment } from "types"; import type { KeyedMutator } from "swr"; const RemirrorRichTextEditor = dynamic(() => import("components/rich-text-editor"), { ssr: false, loading: () => ( ), }); const defaultValues: Partial = { comment_html: "", comment_json: "", }; export const AddComment: React.FC<{ mutate: KeyedMutator; }> = ({ mutate }) => { const { handleSubmit, control, setValue, formState: { isSubmitting }, reset, } = useForm({ defaultValues }); const router = useRouter(); const { workspaceSlug, projectId, issueId } = router.query; const onSubmit = async (formData: IIssueComment) => { if ( !workspaceSlug || !projectId || !issueId || isSubmitting || !formData.comment_html || !formData.comment_json ) return; await issuesServices .createIssueComment(workspaceSlug as string, projectId as string, issueId as string, formData) .then(() => { mutate(); reset(defaultValues); }) .catch((error) => { console.error(error); }); }; const updateDescription = useMemo( () => debounce((key: any, val: any) => { setValue(key, val); }, 1000), [setValue] ); const updateDescriptionHTML = useMemo( () => debounce((key: any, val: any) => { setValue(key, val); }, 1000), [setValue] ); return (
( { setValue("comment_json", jsonValue); setValue("comment_html", htmlValue); }} placeholder="Enter Your comment..." /> )} />
); };