import React, { FC, useState, useEffect, useRef } from "react"; import { useRouter } from "next/router"; // react-hook-form import { Controller, useForm } from "react-hook-form"; // services import aiService from "services/ai.service"; // hooks import useToast from "hooks/use-toast"; // components import { GptAssistantModal } from "components/core"; import { ParentIssuesListModal } from "components/issues"; import { IssueAssigneeSelect, IssueDateSelect, IssueEstimateSelect, IssueLabelSelect, IssuePrioritySelect, IssueProjectSelect, IssueStateSelect, } from "components/issues/select"; import { CreateStateModal } from "components/states"; import { CreateLabelModal } from "components/labels"; // ui import { CustomMenu, Input, PrimaryButton, SecondaryButton, ToggleSwitch } from "components/ui"; import { TipTapEditor } from "components/tiptap"; // icons import { SparklesIcon, XMarkIcon } from "@heroicons/react/24/outline"; // types import type { ICurrentUserResponse, IIssue, ISearchIssueResponse } from "types"; const defaultValues: Partial = { project: "", name: "", description: { type: "doc", content: [ { type: "paragraph", }, ], }, description_html: "

", estimate_point: null, state: "", parent: null, priority: "none", assignees: [], assignees_list: [], labels: [], labels_list: [], start_date: null, target_date: null, }; export interface IssueFormProps { handleFormSubmit: (values: Partial) => Promise; initialData?: Partial; projectId: string; setActiveProject: React.Dispatch>; createMore: boolean; setCreateMore: React.Dispatch>; handleDiscardClose: () => void; status: boolean; user: ICurrentUserResponse | undefined; handleFormDirty: (payload: Partial | null) => void; fieldsToShow: ( | "project" | "name" | "description" | "state" | "priority" | "assignee" | "label" | "startDate" | "dueDate" | "estimate" | "parent" | "all" )[]; } export const IssueForm: FC = (props) => { const { handleFormSubmit, initialData, projectId, setActiveProject, createMore, setCreateMore, handleDiscardClose, status, user, fieldsToShow, handleFormDirty, } = props; const [stateModal, setStateModal] = useState(false); const [labelModal, setLabelModal] = useState(false); const [parentIssueListModalOpen, setParentIssueListModalOpen] = useState(false); const [selectedParentIssue, setSelectedParentIssue] = useState(null); const [gptAssistantModal, setGptAssistantModal] = useState(false); const [iAmFeelingLucky, setIAmFeelingLucky] = useState(false); const editorRef = useRef(null); const router = useRouter(); const { workspaceSlug } = router.query; const { setToastAlert } = useToast(); const { register, formState: { errors, isSubmitting, isDirty }, handleSubmit, reset, watch, control, getValues, setValue, setFocus, } = useForm({ defaultValues: initialData ?? defaultValues, reValidateMode: "onChange", }); const issueName = watch("name"); const payload: Partial = { name: getValues("name"), description: getValues("description"), state: getValues("state"), priority: getValues("priority"), assignees: getValues("assignees"), labels: getValues("labels"), start_date: getValues("start_date"), target_date: getValues("target_date"), project: getValues("project"), parent: getValues("parent"), cycle: getValues("cycle"), module: getValues("module"), }; useEffect(() => { if (isDirty) handleFormDirty(payload); else handleFormDirty(null); // eslint-disable-next-line react-hooks/exhaustive-deps }, [JSON.stringify(payload), isDirty]); const handleCreateUpdateIssue = async (formData: Partial) => { await handleFormSubmit(formData); setGptAssistantModal(false); reset({ ...defaultValues, project: projectId, description: { type: "doc", content: [ { type: "paragraph", }, ], }, description_html: "

", }); editorRef?.current?.clearEditor(); }; const handleAiAssistance = async (response: string) => { if (!workspaceSlug || !projectId) return; setValue("description", {}); setValue("description_html", `${watch("description_html")}

${response}

`); editorRef.current?.setEditorValue(`${watch("description_html")}`); }; const handleAutoGenerateDescription = async () => { if (!workspaceSlug || !projectId) return; setIAmFeelingLucky(true); aiService .createGptTask( workspaceSlug as string, projectId as string, { prompt: issueName, task: "Generate a proper description for this issue.", }, user ) .then((res) => { if (res.response === "") setToastAlert({ type: "error", title: "Error!", message: "Issue title isn't informative enough to generate the description. Please try with a different title.", }); else handleAiAssistance(res.response_html); }) .catch((err) => { const error = err?.data?.error; if (err.status === 429) setToastAlert({ type: "error", title: "Error!", message: error || "You have reached the maximum number of requests of 50 requests per month per user.", }); else setToastAlert({ type: "error", title: "Error!", message: error || "Some error occurred. Please try again.", }); }) .finally(() => setIAmFeelingLucky(false)); }; useEffect(() => { setFocus("name"); reset({ ...defaultValues, ...initialData, }); }, [setFocus, initialData, reset]); // update projectId in form when projectId changes useEffect(() => { reset({ ...getValues(), project: projectId, }); }, [getValues, projectId, reset]); const startDate = watch("start_date"); const targetDate = watch("target_date"); const minDate = startDate ? new Date(startDate) : null; minDate?.setDate(minDate.getDate()); const maxDate = targetDate ? new Date(targetDate) : null; maxDate?.setDate(maxDate.getDate()); return ( <> {projectId && ( <> setStateModal(false)} projectId={projectId} user={user} /> setLabelModal(false)} projectId={projectId} user={user} onSuccess={(response) => { setValue("labels", [...watch("labels"), response.id]); setValue("labels_list", [...watch("labels_list"), response.id]); }} /> )}
{(fieldsToShow.includes("all") || fieldsToShow.includes("project")) && ( ( { onChange(val); setActiveProject(val); }} /> )} /> )}

{status ? "Update" : "Create"} Issue

{watch("parent") && (fieldsToShow.includes("all") || fieldsToShow.includes("parent")) && selectedParentIssue && (
{selectedParentIssue.project__identifier}-{selectedParentIssue.sequence_id} {selectedParentIssue.name.substring(0, 50)} { setValue("parent", null); setSelectedParentIssue(null); }} />
)}
{(fieldsToShow.includes("all") || fieldsToShow.includes("name")) && (
)} {(fieldsToShow.includes("all") || fieldsToShow.includes("description")) && (
{issueName && issueName !== "" && ( )}
{ if (!value && !watch("description_html")) return <>; return ( { onChange(description_html); setValue("description", description); }} /> ); }} /> { setGptAssistantModal(false); // this is done so that the title do not reset after gpt popover closed reset(getValues()); }} inset="top-2 left-0" content="" htmlContent={watch("description_html")} onResponse={(response) => { handleAiAssistance(response); }} projectId={projectId} />
)}
{(fieldsToShow.includes("all") || fieldsToShow.includes("state")) && ( ( )} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("priority")) && ( ( )} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("assignee")) && ( ( )} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("label")) && ( ( )} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("startDate")) && (
( )} />
)} {(fieldsToShow.includes("all") || fieldsToShow.includes("dueDate")) && (
( )} />
)} {(fieldsToShow.includes("all") || fieldsToShow.includes("estimate")) && (
( )} />
)} {(fieldsToShow.includes("all") || fieldsToShow.includes("parent")) && ( ( setParentIssueListModalOpen(false)} onChange={(issue) => { onChange(issue.id); setSelectedParentIssue(issue); }} projectId={projectId} /> )} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("parent")) && ( {watch("parent") ? ( <> setParentIssueListModalOpen(true)} > Change parent issue setValue("parent", null)} > Remove parent issue ) : ( setParentIssueListModalOpen(true)} > Select Parent Issue )} )}
setCreateMore((prevData) => !prevData)} > Create more {}} size="md" />
{ handleDiscardClose(); }} > Discard {status ? isSubmitting ? "Updating Issue..." : "Update Issue" : isSubmitting ? "Adding Issue..." : "Add Issue"}
); };