mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4f72ebded9
* chore: added event constants * chore: added workspace events * chore: added workspace group for events * chore: member invitation event added * chore: added project pages related events. * fix: member integer role to string * chore: added sign-up & sign-in events * chore: added global-view related events * chore: added notification related events * chore: project, cycle property change added * chore: cycle favourite, and change-properties added * chore: module davorite, and sidebar property changes added * fix: build errors * chore: all events defined in constants
162 lines
4.9 KiB
TypeScript
162 lines
4.9 KiB
TypeScript
import React from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Dialog, Transition } from "@headlessui/react";
|
|
// store hooks
|
|
import { useEventTracker, useGlobalView } from "hooks/store";
|
|
import useToast from "hooks/use-toast";
|
|
// components
|
|
import { WorkspaceViewForm } from "components/workspace";
|
|
// types
|
|
import { IWorkspaceView } from "@plane/types";
|
|
// constants
|
|
import { GLOBAL_VIEW_CREATED, GLOBAL_VIEW_UPDATED } from "constants/event-tracker";
|
|
|
|
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();
|
|
// toast alert
|
|
const { setToastAlert } = useToast();
|
|
|
|
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",
|
|
});
|
|
setToastAlert({
|
|
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",
|
|
});
|
|
setToastAlert({
|
|
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) => {
|
|
captureEvent(GLOBAL_VIEW_UPDATED, {
|
|
view_id: res.id,
|
|
applied_filters: res.filters,
|
|
state: "SUCCESS",
|
|
});
|
|
setToastAlert({
|
|
type: "success",
|
|
title: "Success!",
|
|
message: "View updated successfully.",
|
|
});
|
|
handleClose();
|
|
})
|
|
.catch(() => {
|
|
captureEvent(GLOBAL_VIEW_UPDATED, {
|
|
view_id: data.id,
|
|
applied_filters: data.filters,
|
|
state: "FAILED",
|
|
});
|
|
setToastAlert({
|
|
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 (
|
|
<Transition.Root show={isOpen} as={React.Fragment}>
|
|
<Dialog as="div" className="relative z-20" onClose={handleClose}>
|
|
<Transition.Child
|
|
as={React.Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 bg-custom-backdrop transition-opacity" />
|
|
</Transition.Child>
|
|
|
|
<div className="fixed inset-0 z-20 overflow-y-auto">
|
|
<div className="flex min-h-full items-center justify-center p-4 text-center sm:p-0">
|
|
<Transition.Child
|
|
as={React.Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
enterTo="opacity-100 translate-y-0 sm:scale-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
|
|
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
>
|
|
<Dialog.Panel className="relative transform rounded-lg bg-custom-background-100 px-5 py-8 text-left shadow-custom-shadow-md transition-all sm:my-8 sm:w-full sm:max-w-2xl sm:p-6">
|
|
<WorkspaceViewForm
|
|
handleFormSubmit={handleFormSubmit}
|
|
handleClose={handleClose}
|
|
data={data}
|
|
preLoadedData={preLoadedData}
|
|
/>
|
|
</Dialog.Panel>
|
|
</Transition.Child>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition.Root>
|
|
);
|
|
});
|