import { Fragment } from "react"; import { mutate } from "swr"; import { useForm } from "react-hook-form"; import { Dialog, Transition } from "@headlessui/react"; // components import { ModuleForm } from "components/modules"; // services import { ModuleService } from "services/module.service"; // hooks import useToast from "hooks/use-toast"; // types import type { IUser, IModule } from "types"; // fetch-keys import { MODULE_LIST } from "constants/fetch-keys"; type Props = { isOpen: boolean; onClose: () => void; data?: IModule; workspaceSlug: string; projectId: string; }; const defaultValues: Partial = { name: "", description: "", status: "backlog", lead: null, members_list: [], }; const moduleService = new ModuleService(); export const CreateUpdateModuleModal: React.FC = (props) => { const { isOpen, onClose, data, workspaceSlug, projectId } = props; const { setToastAlert } = useToast(); const handleClose = () => { reset(defaultValues); onClose(); }; const { reset } = useForm({ defaultValues, }); const createModule = async (payload: Partial) => { await moduleService .createModule(workspaceSlug as string, projectId as string, payload, {} as IUser) .then(() => { mutate(MODULE_LIST(projectId as string)); handleClose(); setToastAlert({ type: "success", title: "Success!", message: "Module created successfully.", }); }) .catch(() => { setToastAlert({ type: "error", title: "Error!", message: "Module could not be created. Please try again.", }); }); }; const updateModule = async (payload: Partial) => { await moduleService .updateModule(workspaceSlug as string, projectId as string, data?.id ?? "", payload, {} as IUser) .then((res) => { mutate( MODULE_LIST(projectId as string), (prevData) => prevData?.map((p) => { if (p.id === res.id) return { ...p, ...payload }; return p; }), false ); handleClose(); setToastAlert({ type: "success", title: "Success!", message: "Module updated successfully.", }); }) .catch(() => { setToastAlert({ type: "error", title: "Error!", message: "Module could not be updated. Please try again.", }); }); }; const handleFormSubmit = async (formData: Partial) => { if (!workspaceSlug || !projectId) return; const payload: Partial = { ...formData, members_list: formData.members, }; if (!data) await createModule(payload); else await updateModule(payload); }; return (
); };