import React, { FC, useState, useEffect, useRef } from "react"; import { useRouter } from "next/router"; import { Controller, useForm } from "react-hook-form"; // services import { AIService } from "services/ai.service"; import { FileService } from "services/file.service"; // hooks import useToast from "hooks/use-toast"; import useLocalStorage from "hooks/use-local-storage"; // 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 {} from "components/ui"; import { Button, CustomMenu, Input, ToggleSwitch } from "@plane/ui"; // icons import { Sparkle, X } from "lucide-react"; // types import type { IUser, IIssue, ISearchIssueResponse } from "types"; // components import { RichTextEditorWithRef } from "@plane/rich-text-editor"; import useEditorSuggestions from "hooks/use-editor-suggestions"; const aiService = new AIService(); const fileService = new FileService(); const defaultValues: Partial = { project: "", name: "", description: { type: "doc", content: [ { type: "paragraph", }, ], }, description_html: "

", estimate_point: null, state: "", parent: null, priority: "none", assignees: [], labels: [], start_date: null, target_date: null, }; interface IssueFormProps { handleFormSubmit: ( formData: Partial, action?: "createDraft" | "createNewIssue" | "updateDraft" | "convertToNewIssue" ) => Promise; data?: Partial | null; isOpen: boolean; prePopulatedData?: Partial | null; projectId: string; setActiveProject: React.Dispatch>; createMore: boolean; setCreateMore: React.Dispatch>; handleClose: () => void; handleDiscard: () => void; status: boolean; user: IUser | undefined; fieldsToShow: ( | "project" | "name" | "description" | "state" | "priority" | "assignee" | "label" | "startDate" | "dueDate" | "estimate" | "parent" | "all" )[]; } export const DraftIssueForm: FC = (props) => { const { handleFormSubmit, data, isOpen, prePopulatedData, projectId, setActiveProject, createMore, setCreateMore, status, user, fieldsToShow, handleDiscard, } = 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 { setValue: setLocalStorageValue } = useLocalStorage("draftedIssue", {}); const editorRef = useRef(null); const router = useRouter(); const { workspaceSlug } = router.query; const { setToastAlert } = useToast(); const editorSuggestions = useEditorSuggestions(workspaceSlug as string | undefined, projectId) const { formState: { errors, isSubmitting }, handleSubmit, reset, watch, control, getValues, setValue, setFocus, } = useForm({ defaultValues: prePopulatedData ?? defaultValues, reValidateMode: "onChange", }); const issueName = watch("name"); const payload: Partial = { name: watch("name"), description: watch("description"), description_html: watch("description_html"), state: watch("state"), priority: watch("priority"), assignees: watch("assignees"), labels: watch("labels"), start_date: watch("start_date"), target_date: watch("target_date"), project: watch("project"), parent: watch("parent"), cycle: watch("cycle"), module: watch("module"), }; useEffect(() => { if (!isOpen || data) return; setLocalStorageValue( JSON.stringify({ ...payload, }) ); // eslint-disable-next-line react-hooks/exhaustive-deps }, [JSON.stringify(payload), isOpen, data]); // const onClose = () => { // handleClose(); // }; useEffect(() => { if (!isOpen || data) return; setLocalStorageValue( JSON.stringify({ ...payload, }) ); // eslint-disable-next-line react-hooks/exhaustive-deps }, [JSON.stringify(payload), isOpen, data]); // const onClose = () => { // handleClose(); // }; const handleCreateUpdateIssue = async ( formData: Partial, action: "createDraft" | "createNewIssue" | "updateDraft" | "convertToNewIssue" = "createDraft" ) => { await handleFormSubmit( { ...(data ?? {}), ...formData, is_draft: action === "createDraft" || action === "updateDraft", }, action ); 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, ...(prePopulatedData ?? {}), ...(data ?? {}), }); }, [setFocus, prePopulatedData, reset, data]); // 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} /> setLabelModal(false)} projectId={projectId} onSuccess={(response) => setValue("labels", [...watch("labels"), response.id])} /> )}
handleCreateUpdateIssue(formData, data ? "convertToNewIssue" : "createDraft") )} >
{(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 !== "" && ( )}
( { onChange(description_html); setValue("description", description); }} mentionHighlights={editorSuggestions.mentionHighlights} mentionSuggestions={editorSuggestions.mentionSuggestions} /> )} /> { 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" />
); };