import { Fragment, useRef, useState } from "react"; import { useRouter } from "next/router"; import { observer } from "mobx-react-lite"; import { Dialog, Transition } from "@headlessui/react"; import { Controller, useForm } from "react-hook-form"; import { RichTextEditorWithRef } from "@plane/rich-text-editor"; import { Sparkle } from "lucide-react"; // hooks import { useApplication, useWorkspace, useInboxIssues, useMention } from "hooks/store"; import useToast from "hooks/use-toast"; // services import { FileService } from "services/file.service"; import { AIService } from "services/ai.service"; // components import { PriorityDropdown } from "components/dropdowns"; import { GptAssistantPopover } from "components/core"; // ui import { Button, Input, ToggleSwitch } from "@plane/ui"; // types import { TIssue } from "@plane/types"; type Props = { isOpen: boolean; onClose: () => void; }; const defaultValues: Partial = { project_id: "", name: "", description_html: "

", parent_id: null, priority: "none", }; // services const aiService = new AIService(); const fileService = new FileService(); export const CreateInboxIssueModal: React.FC = observer((props) => { const { isOpen, onClose } = props; // states const [createMore, setCreateMore] = useState(false); const [gptAssistantModal, setGptAssistantModal] = useState(false); const [iAmFeelingLucky, setIAmFeelingLucky] = useState(false); // refs const editorRef = useRef(null); // toast alert const { setToastAlert } = useToast(); const { mentionHighlights, mentionSuggestions } = useMention(); // router const router = useRouter(); const { workspaceSlug, projectId, inboxId } = router.query as { workspaceSlug: string; projectId: string; inboxId: string; }; const workspaceStore = useWorkspace(); const workspaceId = workspaceStore.getWorkspaceBySlug(workspaceSlug as string)?.id as string; // store hooks const { createIssue } = useInboxIssues(); const { config: { envConfig }, eventTracker: { postHogEventTracker }, } = useApplication(); const { currentWorkspace } = useWorkspace(); const { control, formState: { errors, isSubmitting }, handleSubmit, reset, watch, getValues, setValue, } = useForm({ defaultValues }); const handleClose = () => { onClose(); reset(defaultValues); }; const issueName = watch("name"); const handleFormSubmit = async (formData: Partial) => { if (!workspaceSlug || !projectId || !inboxId) return; await createIssue(workspaceSlug.toString(), projectId.toString(), inboxId.toString(), formData) .then((res) => { if (!createMore) { router.push(`/${workspaceSlug}/projects/${projectId}/inbox/${inboxId}?inboxIssueId=${res.issue_inbox[0].id}`); handleClose(); } else reset(defaultValues); postHogEventTracker( "ISSUE_CREATED", { ...res, state: "SUCCESS", }, { isGrouping: true, groupType: "Workspace_metrics", groupId: currentWorkspace?.id!, } ); }) .catch((error) => { console.error(error); postHogEventTracker( "ISSUE_CREATED", { state: "FAILED", }, { isGrouping: true, groupType: "Workspace_metrics", groupId: currentWorkspace?.id!, } ); }); }; 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 || !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 === "") 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)); }; return (

Create Inbox Issue

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

" : value} customClassName="min-h-[150px]" onChange={(description, description_html: string) => { onChange(description_html); }} mentionSuggestions={mentionSuggestions} mentionHighlights={mentionHighlights} /> )} />
(
)} />
setCreateMore((prevData) => !prevData)} > Create more {}} size="md" />
); });