Files
plane/web/ee/store/projects/projects.ts
rahulramesha 8676edea84 feat: Workflow Engine (#1877)
* feat workflows working commit

* fix minor change

* chore: workflow migration

* workflow changes

* add worflow link

* chore: customer model migration

* fix: build errors

* chore: added the actor endpoint for workflow

* chore: workspace level workflow endpoint

* chore: patch endpoint for states

* improvement: workflow engine

* improvement: workspace level workflows

* fix: disabled workflow overlay message position

* chore: handeled the actors logic

* chore: bulk operations validation

* chore: add unique approvers count in state transition

* chore: update overlay opacity

* chore: reset workflow endpoint

* chore: creation validation for issue

* chore: workflows enable disable flow

* chore: default state validation

* minor icon sizes improvement

* chore: created the activity for workflows

* feat: workflow change history and reset

* fix: state option alignment

* chore: state transition approver activity:

* fix: build errors

* chore: enable workflow empty state

* chore: workflow activity changes

* chore: language support and Ui improvements

* chore: code cleanup

* improvement: worflow UI and UX

* chore: translations update

* chore: minor UI fixes

* improvement: issue to work item in workflow related files

* fix: sync state transition and work item creation map

* improvement: issue to work item in workflow related files

* improvement: workflow group overlay code seperation

* chore: bulk operations error message when workflow is enabled

* chore: workflows feature flag check while fetching

* chore: update workflow icon

* fix: workflow settings scroll

* chore: translations

* minor improvements

* fix: toggle project features

* fix: add is_workflow_enabled to project features response

* chore: handle state workflow from command pallette

* fix: build errors

---------

Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
2025-02-24 15:01:49 +05:30

179 lines
5.7 KiB
TypeScript

/* eslint-disable no-useless-catch */
import update from "lodash/update";
import { action, makeObservable, observable, reaction, runInAction } from "mobx";
// store
import { ProjectService } from "@/plane-web/services";
import { TProjectAttributesParams, TProjectAttributesResponse, TProjectFeatures, TProjectFeaturesList } from "@/plane-web/types";
import { CoreRootStore } from "@/store/root.store";
import { IProjectAttachmentStore, ProjectAttachmentStore } from "./project-details/attachment.store";
import { IProjectLinkStore, ProjectLinkStore } from "./project-details/link.store";
import { IProjectReactionStore, ProjectReactionStore } from "./project-details/project_reaction.store";
import { IProjectUpdateStore, ProjectUpdateStore } from "./project-details/updates.store";
export interface IProjectStore {
reactionStore: IProjectReactionStore;
attachmentStore: IProjectAttachmentStore;
featuresLoader: boolean;
features: Record<string, TProjectFeatures>; // projectId -> project features
// computed methods
isProjectFeatureEnabled: (
projectId: string,
featureKey: keyof TProjectFeaturesList
) => boolean;
// helpers
getProjectFeatures: (projectId: string) => TProjectFeatures | undefined;
// actions
toggleProjectFeatures: (
workspaceSlug: string,
projectId: string,
data: Partial<TProjectFeaturesList>,
shouldSync?: boolean
) => Promise<void>;
fetchProjectFeatures: (workspaceSlug: string) => Promise<void>;
fetchProjectAttributes: (
workspaceSlug: string,
params?: TProjectAttributesParams
) => Promise<TProjectAttributesResponse[]>;
// store
linkStore: IProjectLinkStore;
updatesStore: IProjectUpdateStore;
}
export class ProjectStore implements IProjectStore {
features: Record<string, TProjectFeatures> = {};
featuresLoader: boolean = false;
//store
rootStore: CoreRootStore;
linkStore: IProjectLinkStore;
attachmentStore: IProjectAttachmentStore;
updatesStore: IProjectUpdateStore;
reactionStore: IProjectReactionStore;
// services
projectService;
constructor(public store: CoreRootStore) {
makeObservable(this, {
// observables
featuresLoader: observable.ref,
features: observable,
// actions
fetchProjectAttributes: action,
});
this.rootStore = store;
this.linkStore = new ProjectLinkStore(this);
this.attachmentStore = new ProjectAttachmentStore(this);
this.updatesStore = new ProjectUpdateStore();
this.reactionStore = new ProjectReactionStore();
// services
this.projectService = new ProjectService();
// reaction to add project features when a new project is added to project map
reaction(
() => ({
projectIds: Object.keys(this.rootStore.projectRoot.project.projectMap),
}),
({ projectIds }) => {
for (const projectId of projectIds) {
if (!this.features[projectId]) {
this.features[projectId] = {
is_project_updates_enabled: false,
is_epic_enabled: false,
is_issue_type_enabled: false,
is_time_tracking_enabled: false,
is_workflow_enabled: false,
project_id: projectId,
};
}
}
}
);
}
// computed methods
/**
* @description check if a project feature is enabled
* @param { string } projectId
* @param { keyof TProjectFeatures } featureKey
* @returns { boolean }
*/
isProjectFeatureEnabled = (
projectId: string,
featureKey: keyof TProjectFeaturesList
): boolean => {
const projectFeatures = this.features[projectId];
return projectFeatures?.[featureKey] ?? false;
};
// helpers
/**
* Get project feature by project id
* @param projectId
* @returns project feature
*/
getProjectFeatures = (projectId: string): TProjectFeatures | undefined => this.features[projectId];
// actions
fetchProjectFeatures = async (workspaceSlug: string): Promise<void> => {
try {
this.featuresLoader = true;
const projectFeatures = await this.projectService.getProjectFeatures(workspaceSlug);
runInAction(() => {
for (const feature of projectFeatures) {
this.features[feature.project_id] = feature;
}
});
} catch (error) {
console.error("Error fetching project features", error);
throw error;
} finally {
runInAction(() => {
this.featuresLoader = false;
});
}
};
toggleProjectFeatures = async (
workspaceSlug: string,
projectId: string,
data: Partial<TProjectFeaturesList>,
shouldSync: boolean = true
): Promise<void> => {
const initialState = this.features[projectId];
try {
this.features[projectId] = {
...this.features[projectId],
...data,
};
if (shouldSync) {
await this.projectService.toggleProjectFeatures(workspaceSlug, projectId, data);
}
} catch (error) {
console.error(error);
this.features[projectId] = initialState;
throw error;
}
};
/**
* Fetches project attributes.
* @param workspaceSlug
* @param params optional params to filter attributes to filter projects
* @returns array of project attributes
*/
fetchProjectAttributes = async (workspaceSlug: string, params?: TProjectAttributesParams) => {
try {
const response = await this.projectService.getProjectAttributes(workspaceSlug, params);
runInAction(() => {
for (const attribute of response) {
const { project_id, ...rest } = attribute;
update(this.store.projectRoot.project.projectMap, [project_id], (p) => ({ ...p, ...rest }));
}
});
return response;
} catch (error) {
console.log("Error while fetching project attributes", error);
throw error;
}
};
}