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>
198 lines
6.3 KiB
TypeScript
198 lines
6.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 find from "lodash/find";
|
|
import pull from "lodash/pull";
|
|
// services
|
|
import { IssueReactionService } from "services/issue";
|
|
// types
|
|
import { IIssueDetail } from "./root.store";
|
|
import { TIssueCommentReaction, TIssueCommentReactionIdMap, TIssueCommentReactionMap } from "@plane/types";
|
|
// helpers
|
|
import { groupReactions } from "helpers/emoji.helper";
|
|
|
|
export interface IIssueCommentReactionStoreActions {
|
|
// actions
|
|
fetchCommentReactions: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
commentId: string
|
|
) => Promise<TIssueCommentReaction[]>;
|
|
applyCommentReactions: (commentId: string, commentReactions: TIssueCommentReaction[]) => void;
|
|
createCommentReaction: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
commentId: string,
|
|
reaction: string
|
|
) => Promise<any>;
|
|
removeCommentReaction: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
commentId: string,
|
|
reaction: string,
|
|
userId: string
|
|
) => Promise<any>;
|
|
}
|
|
|
|
export interface IIssueCommentReactionStore extends IIssueCommentReactionStoreActions {
|
|
// observables
|
|
commentReactions: TIssueCommentReactionIdMap;
|
|
commentReactionMap: TIssueCommentReactionMap;
|
|
// helper methods
|
|
getCommentReactionsByCommentId: (commentId: string) => { [reaction_id: string]: string[] } | undefined;
|
|
getCommentReactionById: (reactionId: string) => TIssueCommentReaction | undefined;
|
|
commentReactionsByUser: (commentId: string, userId: string) => TIssueCommentReaction[];
|
|
}
|
|
|
|
export class IssueCommentReactionStore implements IIssueCommentReactionStore {
|
|
// observables
|
|
commentReactions: TIssueCommentReactionIdMap = {};
|
|
commentReactionMap: TIssueCommentReactionMap = {};
|
|
// root store
|
|
rootIssueDetailStore: IIssueDetail;
|
|
// services
|
|
issueReactionService;
|
|
|
|
constructor(rootStore: IIssueDetail) {
|
|
makeObservable(this, {
|
|
// observables
|
|
commentReactions: observable,
|
|
commentReactionMap: observable,
|
|
// actions
|
|
fetchCommentReactions: action,
|
|
applyCommentReactions: action,
|
|
createCommentReaction: action,
|
|
removeCommentReaction: action,
|
|
});
|
|
// root store
|
|
this.rootIssueDetailStore = rootStore;
|
|
// services
|
|
this.issueReactionService = new IssueReactionService();
|
|
}
|
|
|
|
// helper methods
|
|
getCommentReactionsByCommentId = (commentId: string) => {
|
|
if (!commentId) return undefined;
|
|
return this.commentReactions[commentId] ?? undefined;
|
|
};
|
|
|
|
getCommentReactionById = (reactionId: string) => {
|
|
if (!reactionId) return undefined;
|
|
return this.commentReactionMap[reactionId] ?? undefined;
|
|
};
|
|
|
|
commentReactionsByUser = (commentId: string, userId: string) => {
|
|
if (!commentId || !userId) return [];
|
|
|
|
const reactions = this.getCommentReactionsByCommentId(commentId);
|
|
if (!reactions) return [];
|
|
|
|
const _userReactions: TIssueCommentReaction[] = [];
|
|
Object.keys(reactions).forEach((reaction) => {
|
|
if (reactions?.[reaction])
|
|
reactions?.[reaction].map((reactionId) => {
|
|
const currentReaction = this.getCommentReactionById(reactionId);
|
|
if (currentReaction && currentReaction.actor === userId) _userReactions.push(currentReaction);
|
|
});
|
|
});
|
|
|
|
return _userReactions;
|
|
};
|
|
|
|
// actions
|
|
fetchCommentReactions = async (workspaceSlug: string, projectId: string, commentId: string) => {
|
|
try {
|
|
const response = await this.issueReactionService.listIssueCommentReactions(workspaceSlug, projectId, commentId);
|
|
|
|
const groupedReactions = groupReactions(response || [], "reaction");
|
|
|
|
const commentReactionIdsMap: { [reaction: string]: string[] } = {};
|
|
|
|
Object.keys(groupedReactions).map((reactionId) => {
|
|
const reactionIds = (groupedReactions[reactionId] || []).map((reaction) => reaction.id);
|
|
commentReactionIdsMap[reactionId] = reactionIds;
|
|
});
|
|
|
|
runInAction(() => {
|
|
set(this.commentReactions, commentId, commentReactionIdsMap);
|
|
response.forEach((reaction) => set(this.commentReactionMap, reaction.id, reaction));
|
|
});
|
|
|
|
return response;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
applyCommentReactions = (commentId: string, commentReactions: TIssueCommentReaction[]) => {
|
|
const groupedReactions = groupReactions(commentReactions || [], "reaction");
|
|
|
|
const commentReactionIdsMap: { [reaction: string]: string[] } = {};
|
|
|
|
Object.keys(groupedReactions).map((reactionId) => {
|
|
const reactionIds = (groupedReactions[reactionId] || []).map((reaction) => reaction.id);
|
|
commentReactionIdsMap[reactionId] = reactionIds;
|
|
});
|
|
|
|
runInAction(() => {
|
|
set(this.commentReactions, commentId, commentReactionIdsMap);
|
|
commentReactions.forEach((reaction) => set(this.commentReactionMap, reaction.id, reaction));
|
|
});
|
|
|
|
return;
|
|
};
|
|
|
|
createCommentReaction = async (workspaceSlug: string, projectId: string, commentId: string, reaction: string) => {
|
|
try {
|
|
const response = await this.issueReactionService.createIssueCommentReaction(workspaceSlug, projectId, commentId, {
|
|
reaction,
|
|
});
|
|
|
|
runInAction(() => {
|
|
update(this.commentReactions, [commentId, reaction], (reactionId) => {
|
|
if (!reactionId) return [response.id];
|
|
return concat(reactionId, response.id);
|
|
});
|
|
set(this.commentReactionMap, response.id, response);
|
|
});
|
|
|
|
return response;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
removeCommentReaction = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
commentId: string,
|
|
reaction: string,
|
|
userId: string
|
|
) => {
|
|
try {
|
|
const userReactions = this.commentReactionsByUser(commentId, userId);
|
|
const currentReaction = find(userReactions, { actor: userId, reaction: reaction });
|
|
|
|
if (currentReaction && currentReaction.id) {
|
|
runInAction(() => {
|
|
pull(this.commentReactions[commentId][reaction], currentReaction.id);
|
|
delete this.commentReactionMap[reaction];
|
|
});
|
|
}
|
|
|
|
const response = await this.issueReactionService.deleteIssueCommentReaction(
|
|
workspaceSlug,
|
|
projectId,
|
|
commentId,
|
|
reaction
|
|
);
|
|
|
|
return response;
|
|
} catch (error) {
|
|
this.fetchCommentReactions(workspaceSlug, projectId, commentId);
|
|
throw error;
|
|
}
|
|
};
|
|
}
|