import React, { useRef } from "react"; import { useRouter } from "next/router"; import { observer } from "mobx-react-lite"; import { useForm, Controller } from "react-hook-form"; // lib import { useMobxStore } from "lib/mobx/store-provider"; // hooks import useToast from "hooks/use-toast"; // ui import { SecondaryButton } from "components/ui"; // types import { Comment } from "types/issue"; // components import { TipTapEditor } from "components/tiptap"; const defaultValues: Partial = { comment_html: "", }; type Props = { disabled?: boolean; }; export const AddComment: React.FC = observer((props) => { const { disabled = false } = props; const { handleSubmit, control, setValue, watch, formState: { isSubmitting }, reset, } = useForm({ defaultValues }); const router = useRouter(); const { workspace_slug, project_slug } = router.query as { workspace_slug: string; project_slug: string }; const { user: userStore, issueDetails: issueDetailStore } = useMobxStore(); const issueId = issueDetailStore.peekId; const editorRef = useRef(null); const { setToastAlert } = useToast(); const onSubmit = async (formData: Comment) => { if (!workspace_slug || !project_slug || !issueId || isSubmitting || !formData.comment_html) return; await issueDetailStore .addIssueComment(workspace_slug, project_slug, issueId, formData) .then(() => { reset(defaultValues); editorRef.current?.clearEditor(); }) .catch(() => { setToastAlert({ type: "error", title: "Error!", message: "Comment could not be posted. Please try again.", }); }); }; return (
( { onChange(comment_html); }} /> )} /> { userStore.requiredLogin(() => { handleSubmit(onSubmit)(e); }); }} type="submit" disabled={isSubmitting || disabled} className="mt-2" > {isSubmitting ? "Adding..." : "Comment"}
); });