68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
import orderBy from "lodash/orderBy";
|
|
import { action, computed } from "mobx";
|
|
import Comment from "~/models/Comment";
|
|
import RootStore from "./RootStore";
|
|
import Store from "./base/Store";
|
|
|
|
export default class CommentsStore extends Store<Comment> {
|
|
constructor(rootStore: RootStore) {
|
|
super(rootStore, Comment);
|
|
}
|
|
|
|
/**
|
|
* Returns a list of comments in a document.
|
|
*
|
|
* @param documentId ID of the document to get comments for
|
|
* @returns Array of comments
|
|
*/
|
|
inDocument(documentId: string): Comment[] {
|
|
return this.filter((comment: Comment) => comment.documentId === documentId);
|
|
}
|
|
|
|
/**
|
|
* Returns a list of comments in a document that are not replies to other
|
|
* comments.
|
|
*
|
|
* @param documentId ID of the document to get comments for
|
|
* @returns Array of comments
|
|
*/
|
|
threadsInDocument(documentId: string): Comment[] {
|
|
return this.filter(
|
|
(comment: Comment) =>
|
|
comment.documentId === documentId && !comment.parentCommentId
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns a list of comments that are replies to the given comment.
|
|
*
|
|
* @param commentId ID of the comment to get replies for
|
|
* @returns Array of comments
|
|
*/
|
|
inThread(threadId: string): Comment[] {
|
|
return this.filter(
|
|
(comment: Comment) =>
|
|
comment.parentCommentId === threadId || comment.id === threadId
|
|
);
|
|
}
|
|
|
|
@action
|
|
setTyping({
|
|
commentId,
|
|
userId,
|
|
}: {
|
|
commentId: string;
|
|
userId: string;
|
|
}): void {
|
|
const comment = this.get(commentId);
|
|
if (comment) {
|
|
comment.typingUsers.set(userId, new Date());
|
|
}
|
|
}
|
|
|
|
@computed
|
|
get orderedData(): Comment[] {
|
|
return orderBy(Array.from(this.data.values()), "createdAt", "asc");
|
|
}
|
|
}
|