mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
f88109ef04
* fix: issue activity and comment change * chore: posthog enabled * chore: comment creation in activity * chore: comment crud in store mutation * fix: issue activity/ comments `disable` and `showAccessSpecifier` logic. * chore: comment reaction serializer change * conflicts: merge conflicts resolved * conflicts: merge conflicts resolved * chore: add issue activity/ comments to peek-overview. * imporve `showAccessIdentifier` logic. * chore: remove quotes from issue activity. * chore: use `projectLabels` instead of `workspaceLabels` in labels activity. * fix: project publish `is_deployed` not updating bug. * cleanup * fix: posthog enabled * fix: typos and the comment endpoint updates * fix: issue activity icons update --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
186 lines
5.3 KiB
TypeScript
186 lines
5.3 KiB
TypeScript
import { action, makeObservable, observable, runInAction } from "mobx";
|
|
import set from "lodash/set";
|
|
import update from "lodash/update";
|
|
import concat from "lodash/concat";
|
|
import uniq from "lodash/uniq";
|
|
import pull from "lodash/pull";
|
|
// services
|
|
import { IssueCommentService } from "services/issue";
|
|
// types
|
|
import { IIssueDetail } from "./root.store";
|
|
import { TIssueComment, TIssueCommentMap, TIssueCommentIdMap } from "@plane/types";
|
|
|
|
export type TCommentLoader = "fetch" | "create" | "update" | "delete" | "mutate" | undefined;
|
|
|
|
export interface IIssueCommentStoreActions {
|
|
fetchComments: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
loaderType?: TCommentLoader
|
|
) => Promise<TIssueComment[]>;
|
|
createComment: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
data: Partial<TIssueComment>
|
|
) => Promise<any>;
|
|
updateComment: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
commentId: string,
|
|
data: Partial<TIssueComment>
|
|
) => Promise<any>;
|
|
removeComment: (workspaceSlug: string, projectId: string, issueId: string, commentId: string) => Promise<any>;
|
|
}
|
|
|
|
export interface IIssueCommentStore extends IIssueCommentStoreActions {
|
|
// observables
|
|
loader: TCommentLoader;
|
|
comments: TIssueCommentIdMap;
|
|
commentMap: TIssueCommentMap;
|
|
// helper methods
|
|
getCommentsByIssueId: (issueId: string) => string[] | undefined;
|
|
getCommentById: (activityId: string) => TIssueComment | undefined;
|
|
}
|
|
|
|
export class IssueCommentStore implements IIssueCommentStore {
|
|
// observables
|
|
loader: TCommentLoader = "fetch";
|
|
comments: TIssueCommentIdMap = {};
|
|
commentMap: TIssueCommentMap = {};
|
|
// root store
|
|
rootIssueDetail: IIssueDetail;
|
|
// services
|
|
issueCommentService;
|
|
|
|
constructor(rootStore: IIssueDetail) {
|
|
makeObservable(this, {
|
|
// observables
|
|
loader: observable.ref,
|
|
comments: observable,
|
|
commentMap: observable,
|
|
// actions
|
|
fetchComments: action,
|
|
createComment: action,
|
|
updateComment: action,
|
|
removeComment: action,
|
|
});
|
|
// root store
|
|
this.rootIssueDetail = rootStore;
|
|
// services
|
|
this.issueCommentService = new IssueCommentService();
|
|
}
|
|
|
|
// helper methods
|
|
getCommentsByIssueId = (issueId: string) => {
|
|
if (!issueId) return undefined;
|
|
return this.comments[issueId] ?? undefined;
|
|
};
|
|
|
|
getCommentById = (commentId: string) => {
|
|
if (!commentId) return undefined;
|
|
return this.commentMap[commentId] ?? undefined;
|
|
};
|
|
|
|
fetchComments = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
loaderType: TCommentLoader = "fetch"
|
|
) => {
|
|
try {
|
|
this.loader = loaderType;
|
|
|
|
let props = {};
|
|
const _commentIds = this.getCommentsByIssueId(issueId);
|
|
if (_commentIds && _commentIds.length > 0) {
|
|
const _comment = this.getCommentById(_commentIds[_commentIds.length - 1]);
|
|
if (_comment) props = { created_at__gt: _comment.created_at };
|
|
}
|
|
|
|
const comments = await this.issueCommentService.getIssueComments(workspaceSlug, projectId, issueId, props);
|
|
|
|
const commentIds = comments.map((comment) => comment.id);
|
|
runInAction(() => {
|
|
update(this.comments, issueId, (_commentIds) => {
|
|
if (!_commentIds) return commentIds;
|
|
return uniq(concat(_commentIds, commentIds));
|
|
});
|
|
comments.forEach((comment) => {
|
|
this.rootIssueDetail.commentReaction.applyCommentReactions(comment.id, comment?.comment_reactions || []);
|
|
set(this.commentMap, comment.id, comment);
|
|
});
|
|
this.loader = undefined;
|
|
});
|
|
|
|
return comments;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
createComment = async (workspaceSlug: string, projectId: string, issueId: string, data: Partial<TIssueComment>) => {
|
|
try {
|
|
const response = await this.issueCommentService.createIssueComment(workspaceSlug, projectId, issueId, data);
|
|
|
|
runInAction(() => {
|
|
update(this.comments, issueId, (_commentIds) => {
|
|
if (!_commentIds) return [response.id];
|
|
return uniq(concat(_commentIds, [response.id]));
|
|
});
|
|
set(this.commentMap, response.id, response);
|
|
});
|
|
|
|
return response;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
updateComment = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
issueId: string,
|
|
commentId: string,
|
|
data: Partial<TIssueComment>
|
|
) => {
|
|
try {
|
|
runInAction(() => {
|
|
Object.keys(data).forEach((key) => {
|
|
set(this.commentMap, [commentId, key], data[key as keyof TIssueComment]);
|
|
});
|
|
});
|
|
|
|
const response = await this.issueCommentService.patchIssueComment(
|
|
workspaceSlug,
|
|
projectId,
|
|
issueId,
|
|
commentId,
|
|
data
|
|
);
|
|
|
|
return response;
|
|
} catch (error) {
|
|
this.rootIssueDetail.activity.fetchActivities(workspaceSlug, projectId, issueId);
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
removeComment = async (workspaceSlug: string, projectId: string, issueId: string, commentId: string) => {
|
|
try {
|
|
const response = await this.issueCommentService.deleteIssueComment(workspaceSlug, projectId, issueId, commentId);
|
|
|
|
runInAction(() => {
|
|
pull(this.comments[issueId], commentId);
|
|
delete this.commentMap[commentId];
|
|
});
|
|
|
|
return response;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
}
|