mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
efd3ebf067
* refactor: updated preloaded function for the list view quick add * fix: resolved bug in the assignee dropdown * chore: issue sidebar link improvement * fix: resolved subscription store bug * chore: updated preloaded function for the kanban layout quick add * chore: resolved issues in the list filters and component * chore: filter store updated * fix: issue serializer changed * chore: quick add preload function updated * fix: build error * fix: serializer changed * fix: minor request change * chore: resolved build issues and updated the prepopulated data in the quick add issue. * fix: build fix and code refactor * fix: spreadsheet layout quick add fix * fix: issue peek overview link section updated * fix: cycle status bug fix * fix: serializer changes * fix: assignee and labels listing * chore: issue modal parent_id default value updated * fix: cycle and module issue serializer change * fix: cycle list serializer changed * chore: prepopulated validation in both list and kanban for quick add and group header add issues * chore: group header validation added * fix: issue response payload change * dev: make cycle and module issue create response simillar * chore: custom control link component added * dev: make issue create and update response simillar to list and retrieve * fix: build error * chore: control link component improvement * chore: globalise issue peek overview * chore: control link component improvement * chore: made changes and optimised the issue peek overview root * build-error: resolved build erros for issueId dependancy from issue detail store * chore: peek overview link fix * dev: update state nullable rule --------- Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
87 lines
2.5 KiB
TypeScript
87 lines
2.5 KiB
TypeScript
import { action, computed, makeObservable, observable, runInAction } from "mobx";
|
|
import set from "lodash/set";
|
|
// services
|
|
import { IssueService } from "services/issue";
|
|
// types
|
|
import { IIssueDetail } from "./root.store";
|
|
import { TIssueActivity, TIssueActivityIdMap, TIssueActivityMap } from "@plane/types";
|
|
|
|
export interface IIssueActivityStoreActions {
|
|
// actions
|
|
fetchActivities: (workspaceSlug: string, projectId: string, issueId: string) => Promise<TIssueActivity[]>;
|
|
}
|
|
|
|
export interface IIssueActivityStore extends IIssueActivityStoreActions {
|
|
// observables
|
|
activities: TIssueActivityIdMap;
|
|
activityMap: TIssueActivityMap;
|
|
// computed
|
|
issueActivities: string[] | undefined;
|
|
// helper methods
|
|
getActivitiesByIssueId: (issueId: string) => string[] | undefined;
|
|
getActivityById: (activityId: string) => TIssueActivity | undefined;
|
|
}
|
|
|
|
export class IssueActivityStore implements IIssueActivityStore {
|
|
// observables
|
|
activities: TIssueActivityIdMap = {};
|
|
activityMap: TIssueActivityMap = {};
|
|
// root store
|
|
rootIssueDetailStore: IIssueDetail;
|
|
// services
|
|
issueService;
|
|
|
|
constructor(rootStore: IIssueDetail) {
|
|
makeObservable(this, {
|
|
// observables
|
|
activities: observable,
|
|
activityMap: observable,
|
|
// computed
|
|
issueActivities: computed,
|
|
// actions
|
|
fetchActivities: action,
|
|
});
|
|
// root store
|
|
this.rootIssueDetailStore = rootStore;
|
|
// services
|
|
this.issueService = new IssueService();
|
|
}
|
|
|
|
// computed
|
|
get issueActivities() {
|
|
const issueId = this.rootIssueDetailStore.peekIssue?.issueId;
|
|
if (!issueId) return undefined;
|
|
return this.activities[issueId] ?? undefined;
|
|
}
|
|
|
|
// helper methods
|
|
getActivitiesByIssueId = (issueId: string) => {
|
|
if (!issueId) return undefined;
|
|
return this.activities[issueId] ?? undefined;
|
|
};
|
|
|
|
getActivityById = (activityId: string) => {
|
|
if (!activityId) return undefined;
|
|
return this.activityMap[activityId] ?? undefined;
|
|
};
|
|
|
|
// actions
|
|
fetchActivities = async (workspaceSlug: string, projectId: string, issueId: string) => {
|
|
try {
|
|
const activities = await this.issueService.getIssueActivities(workspaceSlug, projectId, issueId);
|
|
|
|
const activityIds = activities.map((activity) => activity.id);
|
|
runInAction(() => {
|
|
set(this.activities, issueId, activityIds);
|
|
activities.forEach((activity) => {
|
|
set(this.activityMap, activity.id, activity);
|
|
});
|
|
});
|
|
|
|
return activities;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
}
|