mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
20e7dc68e6
* style: update modals typography, alignment * style: made the modal separator full width * style: delete modals consistency * style: update the remaining delete modals * chore: delete modal secondary button text * style: update the remaining create modals * chore: update cancel button text * chore: created modal core * style: modals responsiveness
133 lines
3.6 KiB
TypeScript
133 lines
3.6 KiB
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
// types
|
|
import { IWorkspaceView } from "@plane/types";
|
|
// ui
|
|
import { TOAST_TYPE, setToast } from "@plane/ui";
|
|
// components
|
|
import { EModalPosition, EModalWidth, ModalCore } from "@/components/core";
|
|
import { WorkspaceViewForm } from "@/components/workspace";
|
|
// constants
|
|
import { GLOBAL_VIEW_CREATED, GLOBAL_VIEW_UPDATED } from "@/constants/event-tracker";
|
|
// store hooks
|
|
import { useEventTracker, useGlobalView } from "@/hooks/store";
|
|
|
|
type Props = {
|
|
data?: IWorkspaceView;
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
preLoadedData?: Partial<IWorkspaceView>;
|
|
};
|
|
|
|
export const CreateUpdateWorkspaceViewModal: React.FC<Props> = observer((props) => {
|
|
const { isOpen, onClose, data, preLoadedData } = props;
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// store hooks
|
|
const { createGlobalView, updateGlobalView } = useGlobalView();
|
|
const { captureEvent } = useEventTracker();
|
|
|
|
const handleClose = () => {
|
|
onClose();
|
|
};
|
|
|
|
const handleCreateView = async (payload: Partial<IWorkspaceView>) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
const payloadData: Partial<IWorkspaceView> = {
|
|
...payload,
|
|
filters: {
|
|
...payload?.filters,
|
|
},
|
|
};
|
|
|
|
await createGlobalView(workspaceSlug.toString(), payloadData)
|
|
.then((res) => {
|
|
captureEvent(GLOBAL_VIEW_CREATED, {
|
|
view_id: res.id,
|
|
applied_filters: res.filters,
|
|
state: "SUCCESS",
|
|
});
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "View created successfully.",
|
|
});
|
|
|
|
router.push(`/${workspaceSlug}/workspace-views/${res.id}`);
|
|
handleClose();
|
|
})
|
|
.catch(() => {
|
|
captureEvent(GLOBAL_VIEW_CREATED, {
|
|
applied_filters: payload?.filters,
|
|
state: "FAILED",
|
|
});
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: "View could not be created. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
const handleUpdateView = async (payload: Partial<IWorkspaceView>) => {
|
|
if (!workspaceSlug || !data) return;
|
|
|
|
const payloadData: Partial<IWorkspaceView> = {
|
|
...payload,
|
|
query: {
|
|
...payload?.filters,
|
|
},
|
|
};
|
|
|
|
await updateGlobalView(workspaceSlug.toString(), data.id, payloadData)
|
|
.then((res) => {
|
|
if (res) {
|
|
captureEvent(GLOBAL_VIEW_UPDATED, {
|
|
view_id: res.id,
|
|
applied_filters: res.filters,
|
|
state: "SUCCESS",
|
|
});
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "View updated successfully.",
|
|
});
|
|
handleClose();
|
|
}
|
|
})
|
|
.catch(() => {
|
|
captureEvent(GLOBAL_VIEW_UPDATED, {
|
|
view_id: data.id,
|
|
applied_filters: data.filters,
|
|
state: "FAILED",
|
|
});
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: "View could not be updated. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
const handleFormSubmit = async (formData: Partial<IWorkspaceView>) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
if (!data) await handleCreateView(formData);
|
|
else await handleUpdateView(formData);
|
|
};
|
|
|
|
return (
|
|
<ModalCore isOpen={isOpen} handleClose={handleClose} position={EModalPosition.TOP} width={EModalWidth.XXL}>
|
|
<WorkspaceViewForm
|
|
handleFormSubmit={handleFormSubmit}
|
|
handleClose={handleClose}
|
|
data={data}
|
|
preLoadedData={preLoadedData}
|
|
/>
|
|
</ModalCore>
|
|
);
|
|
});
|