* feat: event tracker helper * feat: track click events for `data-ph-element` * fix: handled click events * fix: handled name * chore: tracker element updates * chore: remove export * chore: tracker element type * chore: track element and event helper. * chore: minor improvements * chore: minor refactors * fix: workspace events * fix: added slug * fix: changes nomenclature * fix: nomenclature * chore: update event tracker helper types * fix: data id * refactor: cycle events (#7290) * chore: update event tracker helper types * refactor: cycle events * refactor: cycle events * refactor: cycle event tracker * chore: update tracker elements * chore: check for closest element with data-ph-element attribute --------- Co-authored-by: Prateek Shourya <prateekshourya@Prateeks-MacBook-Pro.local> * Refactor module events (#7291) * chore: update event tracker helper types * refactor: cycle events * refactor: cycle events * refactor: cycle event tracker * refactor: module tracker event and element * chore: update tracker element * chore: revert unnecessary changes --------- Co-authored-by: Prateek Shourya <prateekshourya@Prateeks-MacBook-Pro.local> * refactor: global views, product tour, notifications, onboarding, users and sidebar related events * chore: member tracker events (#7302) * chore: member-tracker-events * fix: constants * refactor: update event tracker constants * refactor: auth related event trackers (#7306) * Chore: state events (#7307) * chore: state events * fix: refactor * chore: project events (#7305) * chore: project-events * fix: refactor * fix: removed hardcoded values * fix: github redirection event * chore: project page tracker events (#7304) * added events for most page events * refactor: simplify lock button event handling in PageLockControl --------- Co-authored-by: Palanikannan M <akashmalinimurugu@gmail.com> Co-authored-by: M. Palanikannan <73993394+Palanikannan1437@users.noreply.github.com> * chore: minor cleanup and import fixes * refactor: added tracker elements for buttons (#7308) Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> * fix: event type * refactor: posthog group event * chore: removed instances of event tracker (#7309) * refactor: remove event tracker stores and hooks * refactor: remove event tracker store * fix: build errors * clean up event tracker payloads * fix: coderabbit suggestions --------- Co-authored-by: Prateek Shourya <prateekshourya@Prateeks-MacBook-Pro.local> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com> Co-authored-by: Palanikannan M <akashmalinimurugu@gmail.com> Co-authored-by: M. Palanikannan <73993394+Palanikannan1437@users.noreply.github.com> Co-authored-by: Vamsi Krishna <46787868+vamsikrishnamathala@users.noreply.github.com>
166 lines
4.9 KiB
TypeScript
166 lines
4.9 KiB
TypeScript
"use client";
|
|
|
|
import React, { useEffect, useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useForm } from "react-hook-form";
|
|
// types
|
|
import { MODULE_TRACKER_EVENTS } from "@plane/constants";
|
|
import type { IModule } from "@plane/types";
|
|
// ui
|
|
import { EModalPosition, EModalWidth, ModalCore, TOAST_TYPE, setToast } from "@plane/ui";
|
|
// components
|
|
import { ModuleForm } from "@/components/modules";
|
|
// constants
|
|
// helpers
|
|
import { captureSuccess, captureError } from "@/helpers/event-tracker.helper";
|
|
// hooks
|
|
import { useModule, useProject } from "@/hooks/store";
|
|
import useKeypress from "@/hooks/use-keypress";
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
data?: IModule;
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
};
|
|
|
|
const defaultValues: Partial<IModule> = {
|
|
name: "",
|
|
description: "",
|
|
status: "backlog",
|
|
lead_id: null,
|
|
member_ids: [],
|
|
};
|
|
|
|
export const CreateUpdateModuleModal: React.FC<Props> = observer((props) => {
|
|
const { isOpen, onClose, data, workspaceSlug, projectId } = props;
|
|
// states
|
|
const [activeProject, setActiveProject] = useState<string | null>(null);
|
|
// store hooks
|
|
const { workspaceProjectIds } = useProject();
|
|
const { createModule, updateModuleDetails } = useModule();
|
|
const { isMobile } = usePlatformOS();
|
|
|
|
const handleClose = () => {
|
|
reset(defaultValues);
|
|
onClose();
|
|
};
|
|
|
|
const { reset } = useForm<IModule>({
|
|
defaultValues,
|
|
});
|
|
|
|
const handleCreateModule = async (payload: Partial<IModule>) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
const selectedProjectId = payload.project_id ?? projectId.toString();
|
|
await createModule(workspaceSlug.toString(), selectedProjectId, payload)
|
|
.then((res) => {
|
|
handleClose();
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "Module created successfully.",
|
|
});
|
|
captureSuccess({
|
|
eventName: MODULE_TRACKER_EVENTS.create,
|
|
payload: { id: res.id },
|
|
});
|
|
})
|
|
.catch((err) => {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: err?.detail ?? err?.error ?? "Module could not be created. Please try again.",
|
|
});
|
|
captureError({
|
|
eventName: MODULE_TRACKER_EVENTS.create,
|
|
payload: { id: data?.id },
|
|
error: err,
|
|
});
|
|
});
|
|
};
|
|
|
|
const handleUpdateModule = async (payload: Partial<IModule>) => {
|
|
if (!workspaceSlug || !projectId || !data) return;
|
|
|
|
const selectedProjectId = payload.project_id ?? projectId.toString();
|
|
await updateModuleDetails(workspaceSlug.toString(), selectedProjectId, data.id, payload)
|
|
.then((res) => {
|
|
handleClose();
|
|
|
|
setToast({
|
|
type: TOAST_TYPE.SUCCESS,
|
|
title: "Success!",
|
|
message: "Module updated successfully.",
|
|
});
|
|
captureSuccess({
|
|
eventName: MODULE_TRACKER_EVENTS.update,
|
|
payload: { id: res.id },
|
|
});
|
|
})
|
|
.catch((err) => {
|
|
setToast({
|
|
type: TOAST_TYPE.ERROR,
|
|
title: "Error!",
|
|
message: err?.detail ?? err?.error ?? "Module could not be updated. Please try again.",
|
|
});
|
|
captureError({
|
|
eventName: MODULE_TRACKER_EVENTS.update,
|
|
payload: { id: data.id },
|
|
error: err,
|
|
});
|
|
});
|
|
};
|
|
|
|
const handleFormSubmit = async (formData: Partial<IModule>) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
const payload: Partial<IModule> = {
|
|
...formData,
|
|
};
|
|
if (!data) await handleCreateModule(payload);
|
|
else await handleUpdateModule(payload);
|
|
};
|
|
|
|
useEffect(() => {
|
|
// if modal is closed, reset active project to null
|
|
// and return to avoid activeProject being set to some other project
|
|
if (!isOpen) {
|
|
setActiveProject(null);
|
|
return;
|
|
}
|
|
|
|
// if data is present, set active project to the project of the
|
|
// issue. This has more priority than the project in the url.
|
|
if (data && data.project_id) {
|
|
setActiveProject(data.project_id);
|
|
return;
|
|
}
|
|
|
|
// if data is not present, set active project to the project
|
|
// in the url. This has the least priority.
|
|
if (workspaceProjectIds && workspaceProjectIds.length > 0 && !activeProject)
|
|
setActiveProject(projectId ?? workspaceProjectIds?.[0] ?? null);
|
|
}, [activeProject, data, projectId, workspaceProjectIds, isOpen]);
|
|
|
|
useKeypress("Escape", () => {
|
|
if (isOpen) handleClose();
|
|
});
|
|
|
|
return (
|
|
<ModalCore isOpen={isOpen} position={EModalPosition.TOP} width={EModalWidth.XXL}>
|
|
<ModuleForm
|
|
handleFormSubmit={handleFormSubmit}
|
|
handleClose={handleClose}
|
|
status={data ? true : false}
|
|
projectId={activeProject ?? ""}
|
|
setActiveProject={setActiveProject}
|
|
data={data}
|
|
isMobile={isMobile}
|
|
/>
|
|
</ModalCore>
|
|
);
|
|
});
|