import React from "react"; import { useRouter } from "next/router"; import { mutate } from "swr"; // headless ui import { Dialog, Transition } from "@headlessui/react"; // services import pagesService from "services/pages.service"; // hooks import useToast from "hooks/use-toast"; // components import { PageForm } from "./page-form"; // types import { IPage, IPageForm } from "types"; // fetch-keys import { PAGE_LIST } from "constants/fetch-keys"; type Props = { isOpen: boolean; handleClose: () => void; data?: IPage; }; export const CreateUpdatePageModal: React.FC = ({ isOpen, handleClose, data }) => { const router = useRouter(); const { workspaceSlug, projectId } = router.query; const { setToastAlert } = useToast(); const onClose = () => { handleClose(); }; const createPage = async (payload: IPageForm) => { await pagesService .createPage(workspaceSlug as string, projectId as string, payload) .then(() => { mutate(PAGE_LIST(projectId as string)); onClose(); setToastAlert({ type: "success", title: "Success!", message: "Page created successfully.", }); }) .catch(() => { setToastAlert({ type: "error", title: "Error!", message: "Page could not be created. Please try again.", }); }); }; const updatePage = async (payload: IPageForm) => { await pagesService .patchPage(workspaceSlug as string, projectId as string, data?.id ?? "", payload) .then((res) => { mutate( PAGE_LIST(projectId as string), (prevData) => prevData?.map((p) => { if (p.id === res.id) return { ...p, ...payload }; return p; }), false ); onClose(); setToastAlert({ type: "success", title: "Success!", message: "Page updated successfully.", }); }) .catch(() => { setToastAlert({ type: "error", title: "Error!", message: "Page could not be updated. Please try again.", }); }); }; const handleFormSubmit = async (formData: IPageForm) => { if (!workspaceSlug || !projectId) return; if (!data) await createPage(formData); else await updatePage(formData); }; return (
); };