import React from "react"; import { useRouter } from "next/router"; import { mutate } from "swr"; // headless ui import { Dialog, Transition } from "@headlessui/react"; // services import viewsService from "services/views.service"; // hooks import useToast from "hooks/use-toast"; // components import { ViewForm } from "components/views"; // types import { IView } from "types"; // fetch-keys import { VIEWS_LIST } from "constants/fetch-keys"; type Props = { isOpen: boolean; handleClose: () => void; data?: IView | null; }; export const CreateUpdateViewModal: React.FC = ({ isOpen, handleClose, data }) => { const router = useRouter(); const { workspaceSlug, projectId } = router.query; const { setToastAlert } = useToast(); const onClose = () => { handleClose(); }; const createView = async (payload: IView) => { payload = { ...payload, query_data: payload.query, }; await viewsService .createView(workspaceSlug as string, projectId as string, payload) .then(() => { mutate(VIEWS_LIST(projectId as string)); handleClose(); setToastAlert({ type: "success", title: "Success!", message: "View created successfully.", }); }) .catch(() => { setToastAlert({ type: "error", title: "Error!", message: "View could not be created. Please try again.", }); }); }; const updateView = async (payload: IView) => { const payloadData = { ...payload, query_data: payload.query, }; await viewsService .updateView(workspaceSlug as string, projectId as string, data?.id ?? "", payloadData) .then((res) => { mutate( VIEWS_LIST(projectId as string), (prevData) => prevData?.map((p) => { if (p.id === res.id) return { ...p, ...payloadData }; return p; }), false ); onClose(); setToastAlert({ type: "success", title: "Success!", message: "View updated successfully.", }); }) .catch(() => { setToastAlert({ type: "error", title: "Error!", message: "View could not be updated. Please try again.", }); }); }; const handleFormSubmit = async (formData: IView) => { if (!workspaceSlug || !projectId) return; if (!data) await createView(formData); else await updateView(formData); }; return (
); };