import React from "react"; import { useRouter } from "next/router"; import { mutate } from "swr"; // react-hook-form import { useForm, Controller } from "react-hook-form"; // services import issuesServices from "services/issues.service"; // hooks import useToast from "hooks/use-toast"; // ui import { SecondaryButton } from "components/ui"; // types import type { ICurrentUserResponse, IIssueComment } from "types"; // fetch-keys import { PROJECT_ISSUES_ACTIVITY } from "constants/fetch-keys"; import Tiptap, { ITiptapRichTextEditor } from "components/tiptap"; const TiptapEditor = React.forwardRef( (props, ref) => ); TiptapEditor.displayName = "TiptapEditor"; const defaultValues: Partial = { comment_json: "", comment_html: "", }; type Props = { issueId: string; user: ICurrentUserResponse | undefined; disabled?: boolean; }; export const AddComment: React.FC = ({ issueId, user, disabled = false }) => { const { handleSubmit, control, setValue, watch, formState: { isSubmitting }, reset, } = useForm({ defaultValues }); const editorRef = React.useRef(null); const router = useRouter(); const { workspaceSlug, projectId } = router.query; const { setToastAlert } = useToast(); 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, user ) .then(() => { mutate(PROJECT_ISSUES_ACTIVITY(issueId as string)); reset(defaultValues); editorRef.current?.clearEditor(); }) .catch(() => setToastAlert({ type: "error", title: "Error!", message: "Comment could not be posted. Please try again.", }) ); }; return (
( { onChange(comment_html); setValue("comment_json", comment_json); }} /> )} /> {isSubmitting ? "Adding..." : "Comment"}
); };