import { Fragment, useRef, useState } from "react"; import { observer } from "mobx-react"; import { useRouter } from "next/router"; import { Controller, useForm } from "react-hook-form"; import { Sparkle } from "lucide-react"; import { Transition, Dialog } from "@headlessui/react"; import { EditorRefApi } from "@plane/rich-text-editor"; // types import { TIssue } from "@plane/types"; // ui import { Button, Input, ToggleSwitch, TOAST_TYPE, setToast } from "@plane/ui"; // components import { GptAssistantPopover } from "@/components/core"; import { PriorityDropdown } from "@/components/dropdowns"; import { RichTextEditor } from "@/components/editor/rich-text-editor/rich-text-editor"; import { ISSUE_CREATED } from "@/constants/event-tracker"; import { useApplication, useEventTracker, useWorkspace, useProjectInbox } from "@/hooks/store"; // services import { AIService } from "@/services/ai.service"; // components // ui // types // constants type Props = { isOpen: boolean; onClose: () => void; }; const defaultValues: Partial = { name: "", description_html: "

", priority: "none", }; // services const aiService = new AIService(); export const CreateInboxIssueModal: React.FC = observer((props) => { const { isOpen, onClose } = props; // router const router = useRouter(); const { workspaceSlug, projectId } = router.query; if (!workspaceSlug || !projectId) return null; // states const [createMore, setCreateMore] = useState(false); const [gptAssistantModal, setGptAssistantModal] = useState(false); const [iAmFeelingLucky, setIAmFeelingLucky] = useState(false); // refs const editorRef = useRef(null); // hooks const workspaceStore = useWorkspace(); const workspaceId = workspaceStore.getWorkspaceBySlug(workspaceSlug.toString() as string)?.id.toString() as string; // store hooks const { createInboxIssue } = useProjectInbox(); const { config: { envConfig }, } = useApplication(); const { captureIssueEvent } = useEventTracker(); // form info const { control, formState: { errors, isSubmitting }, handleSubmit, reset, watch, getValues, } = useForm>({ defaultValues }); const issueName = watch("name"); const handleClose = () => { onClose(); reset(defaultValues); editorRef?.current?.clearEditor(); }; const handleFormSubmit = async (formData: Partial) => { if (!workspaceSlug || !projectId) return; await createInboxIssue(workspaceSlug.toString(), projectId.toString(), formData) .then((res) => { if (!createMore) { router.push(`/${workspaceSlug}/projects/${projectId}/inbox/?currentTab=open&inboxIssueId=${res?.issue?.id}`); handleClose(); } else { reset(defaultValues); editorRef?.current?.clearEditor(); } captureIssueEvent({ eventName: ISSUE_CREATED, payload: { ...formData, state: "SUCCESS", element: "Inbox page", }, path: router.pathname, }); }) .catch((error) => { console.error(error); captureIssueEvent({ eventName: ISSUE_CREATED, payload: { ...formData, state: "FAILED", element: "Inbox page", }, path: router.pathname, }); }); }; const handleAiAssistance = async (response: string) => { if (!workspaceSlug || !projectId) return; editorRef.current?.setEditorValueAtCursorPosition(response); }; const handleAutoGenerateDescription = async () => { const issueName = getValues("name"); if (!workspaceSlug || !projectId || !issueName) 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 === "") setToast({ type: TOAST_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) setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: error || "You have reached the maximum number of requests of 50 requests per month per user.", }); else setToast({ type: TOAST_TYPE.ERROR, title: "Error!", message: error || "Some error occurred. Please try again.", }); }) .finally(() => setIAmFeelingLucky(false)); }; return (

Create Inbox Issue

( )} />
{watch("name") && 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); }} button={ } className="!min-w-[38rem]" placement="top-end" /> )}
(

" : value} ref={editorRef} workspaceSlug={workspaceSlug.toString()} workspaceId={workspaceId} projectId={projectId.toString()} dragDropEnabled={false} onChange={(_description: object, description_html: string) => { onChange(description_html); }} /> )} />
(
)} />
setCreateMore((prevData) => !prevData)} > Create more {}} size="md" />
); });