mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
0165abab3e
* chore: events naming convention changed * chore: track element added for project related events * chore: track element added for cycle related events * chore: track element added for module related events * chore: issue related events updated * refactor: event tracker store * refactor: event-tracker store * fix: posthog changes --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
156 lines
4.3 KiB
TypeScript
156 lines
4.3 KiB
TypeScript
import { action, computed, makeObservable, observable } from "mobx";
|
|
import posthog from "posthog-js";
|
|
// stores
|
|
import { RootStore } from "./root.store";
|
|
import {
|
|
EventGroupProps,
|
|
EventProps,
|
|
IssueEventProps,
|
|
getCycleEventPayload,
|
|
getIssueEventPayload,
|
|
getModuleEventPayload,
|
|
getProjectEventPayload,
|
|
} from "constants/event-tracker";
|
|
|
|
export interface IEventTrackerStore {
|
|
// properties
|
|
trackElement: string;
|
|
// computed
|
|
getRequiredPayload: any;
|
|
// actions
|
|
setTrackElement: (element: string) => void;
|
|
captureEvent: (eventName: string, payload: object | [] | null, group?: EventGroupProps) => void;
|
|
captureProjectEvent: (props: EventProps) => void;
|
|
captureCycleEvent: (props: EventProps) => void;
|
|
captureModuleEvent: (props: EventProps) => void;
|
|
captureIssueEvent: (props: IssueEventProps) => void;
|
|
}
|
|
|
|
export class EventTrackerStore implements IEventTrackerStore {
|
|
trackElement: string = "";
|
|
rootStore;
|
|
constructor(_rootStore: RootStore) {
|
|
makeObservable(this, {
|
|
// properties
|
|
trackElement: observable,
|
|
// computed
|
|
getRequiredPayload: computed,
|
|
// actions
|
|
setTrackElement: action,
|
|
captureEvent: action,
|
|
captureProjectEvent: action,
|
|
captureCycleEvent: action,
|
|
});
|
|
// store
|
|
this.rootStore = _rootStore;
|
|
}
|
|
|
|
/**
|
|
* @description: Returns the necessary property for the event tracking
|
|
*/
|
|
get getRequiredPayload() {
|
|
const currentWorkspaceDetails = this.rootStore.workspaceRoot.currentWorkspace;
|
|
const currentProjectDetails = this.rootStore.projectRoot.project.currentProjectDetails;
|
|
return {
|
|
workspace_id: currentWorkspaceDetails?.id ?? "",
|
|
project_id: currentProjectDetails?.id ?? "",
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @description: Set the trigger point of event.
|
|
* @param {string} element
|
|
*/
|
|
setTrackElement = (element: string) => {
|
|
this.trackElement = element;
|
|
};
|
|
|
|
postHogGroup = (group: EventGroupProps) => {
|
|
if (group && group!.isGrouping === true) {
|
|
posthog?.group(group!.groupType!, group!.groupId!, {
|
|
date: new Date(),
|
|
workspace_id: group!.groupId,
|
|
});
|
|
}
|
|
};
|
|
|
|
captureEvent = (eventName: string, payload: object | [] | null) => {
|
|
posthog?.capture(eventName, {
|
|
...payload,
|
|
element: this.trackElement ?? "",
|
|
});
|
|
};
|
|
|
|
/**
|
|
* @description: Captures the project related events.
|
|
* @param {EventProps} props
|
|
*/
|
|
captureProjectEvent = (props: EventProps) => {
|
|
const { eventName, payload, group } = props;
|
|
if (group) {
|
|
this.postHogGroup(group);
|
|
}
|
|
const eventPayload: any = getProjectEventPayload({
|
|
...this.getRequiredPayload,
|
|
...payload,
|
|
element: payload.element ?? this.trackElement,
|
|
});
|
|
posthog?.capture(eventName, eventPayload);
|
|
this.setTrackElement("");
|
|
};
|
|
|
|
/**
|
|
* @description: Captures the cycle related events.
|
|
* @param {EventProps} props
|
|
*/
|
|
captureCycleEvent = (props: EventProps) => {
|
|
const { eventName, payload, group } = props;
|
|
if (group) {
|
|
this.postHogGroup(group);
|
|
}
|
|
const eventPayload: any = getCycleEventPayload({
|
|
...this.getRequiredPayload,
|
|
...payload,
|
|
element: payload.element ?? this.trackElement,
|
|
});
|
|
posthog?.capture(eventName, eventPayload);
|
|
this.setTrackElement("");
|
|
};
|
|
|
|
/**
|
|
* @description: Captures the module related events.
|
|
* @param {EventProps} props
|
|
*/
|
|
captureModuleEvent = (props: EventProps) => {
|
|
const { eventName, payload, group } = props;
|
|
if (group) {
|
|
this.postHogGroup(group);
|
|
}
|
|
const eventPayload: any = getModuleEventPayload({
|
|
...this.getRequiredPayload,
|
|
...payload,
|
|
element: payload.element ?? this.trackElement,
|
|
});
|
|
posthog?.capture(eventName, eventPayload);
|
|
this.setTrackElement("");
|
|
};
|
|
|
|
/**
|
|
* @description: Captures the issue related events.
|
|
* @param {IssueEventProps} props
|
|
*/
|
|
captureIssueEvent = (props: IssueEventProps) => {
|
|
const { eventName, payload, group } = props;
|
|
if (group) {
|
|
this.postHogGroup(group);
|
|
}
|
|
const eventPayload: any = {
|
|
...getIssueEventPayload(props),
|
|
...this.getRequiredPayload,
|
|
state_group: this.rootStore.state.getStateById(payload.state_id)?.group ?? "",
|
|
element: payload.element ?? this.trackElement,
|
|
};
|
|
posthog?.capture(eventName, eventPayload);
|
|
};
|
|
}
|