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"; import { LayoutPanelTop, Sparkle, X } from "lucide-react"; // hooks import { useApplication, useEstimate, useMention, useProject } from "hooks/store"; import useToast from "hooks/use-toast"; // services import { AIService } from "services/ai.service"; import { FileService } from "services/file.service"; // components import { GptAssistantPopover } from "components/core"; import { ParentIssuesListModal } from "components/issues"; import { IssueLabelSelect } from "components/issues/select"; import { CreateStateModal } from "components/states"; import { CreateLabelModal } from "components/labels"; import { RichTextEditorWithRef } from "@plane/rich-text-editor"; import { CycleDropdown, DateDropdown, EstimateDropdown, ModuleDropdown, PriorityDropdown, ProjectDropdown, ProjectMemberDropdown, StateDropdown, } from "components/dropdowns"; // ui import { Button, CustomMenu, Input, ToggleSwitch } from "@plane/ui"; // helpers import { renderFormattedPayloadDate } from "helpers/date-time.helper"; // types import type { TIssue, ISearchIssueResponse } from "@plane/types"; const defaultValues: Partial = { project_id: "", name: "", description_html: "

", estimate_point: null, state_id: "", parent_id: null, priority: "none", assignee_ids: [], label_ids: [], start_date: undefined, target_date: undefined, }; 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 hooks const { config: { envConfig }, } = useApplication(); const { getProjectById } = useProject(); const { areEstimatesActiveForProject } = useEstimate(); const { mentionHighlights, mentionSuggestions } = useMention(); // toast alert 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"), state_id: getValues("state_id"), priority: getValues("priority"), assignee_ids: getValues("assignee_ids"), label_ids: getValues("label_ids"), start_date: getValues("start_date"), target_date: getValues("target_date"), project_id: getValues("project_id"), parent_id: getValues("parent_id"), cycle_id: getValues("cycle_id"), module_id: getValues("module_id"), }; // derived values const projectDetails = getProjectById(projectId); 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_id: projectId, description_html: "

", }); editorRef?.current?.clearEditor(); }; const handleAiAssistance = async (response: string) => { if (!workspaceSlug || !projectId) return; 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.toString(), projectId.toString(), { 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_id: 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("label_ids", [...watch("label_ids"), response.id])} /> )}
{(fieldsToShow.includes("all") || fieldsToShow.includes("project")) && !status && ( (
{ onChange(val); setActiveProject(val); }} buttonVariant="border-with-text" />
)} /> )}

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

{watch("parent_id") && (fieldsToShow.includes("all") || fieldsToShow.includes("parent")) && selectedParentIssue && (
{selectedParentIssue.project__identifier}-{selectedParentIssue.sequence_id} {selectedParentIssue.name.substring(0, 50)} { setValue("parent_id", null); setSelectedParentIssue(null); }} />
)}
{(fieldsToShow.includes("all") || fieldsToShow.includes("name")) && (
( )} />
)} {(fieldsToShow.includes("all") || fieldsToShow.includes("description")) && (
{issueName && issueName !== "" && ( )} {envConfig?.has_openai_configured && ( { setGptAssistantModal((prevData) => !prevData); // this is done so that the title do not reset after gpt popover closed reset(getValues()); }} onResponse={(response) => { handleAiAssistance(response); }} placement="top-end" button={ } /> )}
( { onChange(description_html); }} mentionHighlights={mentionHighlights} mentionSuggestions={mentionSuggestions} /> )} />
)}
{(fieldsToShow.includes("all") || fieldsToShow.includes("state")) && ( (
)} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("priority")) && ( (
)} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("assignee")) && ( (
0 ? "transparent-without-text" : "border-with-text"} buttonClassName={value?.length > 0 ? "hover:bg-transparent px-0" : ""} placeholder="Assignees" multiple />
)} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("label")) && ( (
)} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("startDate")) && ( (
onChange(date ? renderFormattedPayloadDate(date) : null)} buttonVariant="border-with-text" placeholder="Start date" maxDate={maxDate ?? undefined} />
)} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("dueDate")) && (
(
onChange(date ? renderFormattedPayloadDate(date) : null)} buttonVariant="border-with-text" placeholder="Due date" minDate={minDate ?? undefined} />
)} />
)} {(fieldsToShow.includes("all") || fieldsToShow.includes("cycle")) && projectDetails?.cycle_view && ( (
)} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("module")) && projectDetails?.module_view && ( (
)} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("estimate")) && areEstimatesActiveForProject(projectId) && ( (
)} /> )} {(fieldsToShow.includes("all") || fieldsToShow.includes("parent")) && ( <> {watch("parent_id") ? (
{selectedParentIssue && `${selectedParentIssue.project__identifier}- ${selectedParentIssue.sequence_id}`}
} placement="bottom-start" > setParentIssueListModalOpen(true)}> Change parent issue setValue("parent_id", null)}> Remove parent issue
) : ( )} ( setParentIssueListModalOpen(false)} onChange={(issue) => { onChange(issue.id); setSelectedParentIssue(issue); }} projectId={projectId} /> )} /> )}
{!status && (
setCreateMore((prevData) => !prevData)} >
{}} size="sm" />
Create more
)}
); });