import React, { FC, useState, useEffect, useRef } from "react"; import { useRouter } from "next/router"; import { observer } from "mobx-react-lite"; import { Controller, useForm } from "react-hook-form"; // mobx store import { useMobxStore } from "lib/mobx/store-provider"; // services import { AIService } from "services/ai.service"; import { FileService } from "services/file.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, IssueModuleSelect, IssueCycleSelect, } from "components/issues/select"; import { CreateStateModal } from "components/states"; import { CreateLabelModal } from "components/labels"; // ui import { Button, CustomMenu, Input, ToggleSwitch } from "@plane/ui"; // icons import { LayoutPanelTop, Sparkle, X } from "lucide-react"; // types import type { IIssue, ISearchIssueResponse } from "types"; // components import { RichTextEditorWithRef } from "@plane/rich-text-editor"; import useEditorSuggestions from "hooks/use-editor-suggestions"; const defaultValues: Partial = { project: "", name: "", description_html: "

", estimate_point: null, state: "", parent: null, priority: "none", assignees: [], labels: [], 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; handleFormDirty: (payload: Partial | null) => void; fieldsToShow: ( | "project" | "name" | "description" | "state" | "priority" | "assignee" | "label" | "startDate" | "dueDate" | "estimate" | "parent" | "all" | "module" | "cycle" )[]; } // services const aiService = new AIService(); const fileService = new FileService(); export const IssueForm: FC = observer((props) => { const { handleFormSubmit, initialData, projectId, setActiveProject, createMore, setCreateMore, handleDiscardClose, status, fieldsToShow, handleFormDirty, } = props; // states 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); // refs const editorRef = useRef(null); // router const router = useRouter(); const { workspaceSlug } = router.query; // store const { user: userStore, appConfig: { envConfig }, } = useMobxStore(); const user = userStore.currentUser; console.log("envConfig", envConfig); // hooks const editorSuggestion = useEditorSuggestions(); const { setToastAlert } = useToast(); // form info const { 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 || !user) return; setIAmFeelingLucky(true); aiService .createGptTask(workspaceSlug as string, projectId as string, { prompt: issueName, task: "Generate a proper description for this issue.", }) .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} /> setLabelModal(false)} projectId={projectId} onSuccess={(response) => setValue("labels", [...watch("labels"), 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 !== "" && ( )}
( { onChange(description_html); setValue("description", description); }} mentionHighlights={editorSuggestion.mentionHighlights} mentionSuggestions={editorSuggestion.mentionSuggestions} /> )} /> {envConfig?.has_openai_configured && ( { 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("module")) && ( ( { onChange(val); }} /> )} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("cycle")) && ( ( { onChange(val); }} /> )} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("estimate")) && ( <> ( )} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("parent")) && ( <> {watch("parent") ? (
{selectedParentIssue && `${selectedParentIssue.project__identifier}- ${selectedParentIssue.sequence_id}`}
} placement="bottom-start" > setParentIssueListModalOpen(true)}> Change parent issue setValue("parent", null)}> Remove parent issue
) : ( )} ( setParentIssueListModalOpen(false)} onChange={(issue) => { onChange(issue.id); setSelectedParentIssue(issue); }} projectId={projectId} /> )} /> )}
setCreateMore((prevData) => !prevData)} >
{}} size="sm" />
Create more
); });