import React, { useEffect, useState } from "react"; import { observer } from "mobx-react-lite"; import { useForm } from "react-hook-form"; import { Dialog, Transition } from "@headlessui/react"; // hooks import { useApplication, useModule, useProject } from "hooks/store"; import useToast from "hooks/use-toast"; // components import { ModuleForm } from "components/modules"; // types import type { IModule } from "@plane/types"; type Props = { isOpen: boolean; onClose: () => void; data?: IModule; workspaceSlug: string; projectId: string; }; const defaultValues: Partial = { name: "", description: "", status: "backlog", lead: null, members: [], }; export const CreateUpdateModuleModal: React.FC = observer((props) => { const { isOpen, onClose, data, workspaceSlug, projectId } = props; // states const [activeProject, setActiveProject] = useState(null); // store hooks const { eventTracker: { postHogEventTracker }, } = useApplication(); const { workspaceProjectIds } = useProject(); const { createModule, updateModuleDetails } = useModule(); // toast alert const { setToastAlert } = useToast(); const handleClose = () => { reset(defaultValues); onClose(); }; const { reset } = useForm({ defaultValues, }); const handleCreateModule = async (payload: Partial) => { if (!workspaceSlug || !projectId) return; const selectedProjectId = payload.project ?? projectId.toString(); await createModule(workspaceSlug.toString(), selectedProjectId, payload) .then((res) => { handleClose(); setToastAlert({ type: "success", title: "Success!", message: "Module created successfully.", }); postHogEventTracker("MODULE_CREATED", { ...res, state: "SUCCESS", }); }) .catch((err) => { setToastAlert({ type: "error", title: "Error!", message: err.detail ?? "Module could not be created. Please try again.", }); postHogEventTracker("MODULE_CREATED", { state: "FAILED", }); }); }; const handleUpdateModule = async (payload: Partial) => { if (!workspaceSlug || !projectId || !data) return; const selectedProjectId = payload.project ?? projectId.toString(); await updateModuleDetails(workspaceSlug.toString(), selectedProjectId, data.id, payload) .then((res) => { handleClose(); setToastAlert({ type: "success", title: "Success!", message: "Module updated successfully.", }); postHogEventTracker("MODULE_UPDATED", { ...res, state: "SUCCESS", }); }) .catch((err) => { setToastAlert({ type: "error", title: "Error!", message: err.detail ?? "Module could not be updated. Please try again.", }); postHogEventTracker("MODULE_UPDATED", { state: "FAILED", }); }); }; const handleFormSubmit = async (formData: Partial) => { if (!workspaceSlug || !projectId) return; const payload: Partial = { ...formData, }; if (!data) await handleCreateModule(payload); else await handleUpdateModule(payload); }; useEffect(() => { // if modal is closed, reset active project to null // and return to avoid activeProject being set to some other project if (!isOpen) { setActiveProject(null); return; } // if data is present, set active project to the project of the // issue. This has more priority than the project in the url. if (data && data.project) { setActiveProject(data.project); return; } // if data is not present, set active project to the project // in the url. This has the least priority. if (workspaceProjectIds && workspaceProjectIds.length > 0 && !activeProject) setActiveProject(projectId ?? workspaceProjectIds?.[0] ?? null); }, [activeProject, data, projectId, workspaceProjectIds, isOpen]); return (
); });