2021-02-18 15:40:54 +00:00
|
|
|
|
2021-03-09 12:27:26 +00:00
|
|
|
import {makeObservable, observable, action, computed} from 'mobx';
|
2021-02-18 15:40:54 +00:00
|
|
|
|
|
|
|
export class storeComments {
|
2021-03-09 12:27:26 +00:00
|
|
|
constructor() {
|
|
|
|
makeObservable(this, {
|
|
|
|
collectionComments: observable,
|
|
|
|
groupCollectionComments: observable,
|
|
|
|
filter: observable,
|
|
|
|
|
2021-03-10 18:08:59 +00:00
|
|
|
showComments: observable,
|
|
|
|
changeShowComment: action,
|
|
|
|
|
2021-03-09 12:27:26 +00:00
|
|
|
addComment: action,
|
|
|
|
removeComment: action,
|
2021-03-10 18:08:59 +00:00
|
|
|
changeComment: action,
|
2021-03-09 12:27:26 +00:00
|
|
|
changeFilter: action,
|
|
|
|
|
2021-03-26 13:23:17 +00:00
|
|
|
groupCollectionFilter: computed,
|
2021-03-09 12:27:26 +00:00
|
|
|
|
|
|
|
isOpenEditComment: observable,
|
|
|
|
openEditComment: action,
|
|
|
|
isOpenAddReply: observable,
|
|
|
|
openAddReply: action,
|
|
|
|
isOpenEditReply: observable,
|
|
|
|
openEditReply: action
|
|
|
|
})
|
|
|
|
}
|
|
|
|
collectionComments = [];
|
|
|
|
groupCollectionComments = [];
|
|
|
|
|
|
|
|
filter = undefined;
|
2021-02-25 16:26:42 +00:00
|
|
|
|
2021-03-10 18:08:59 +00:00
|
|
|
showComments = [];
|
|
|
|
changeShowComment (uid) {
|
|
|
|
this.showComments.length = 0;
|
|
|
|
uid.forEach((item) => {
|
|
|
|
this.showComments.push(this.findComment(item));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-06-08 13:59:11 +00:00
|
|
|
removeShowComment(id) {
|
|
|
|
const index = this.showComments.findIndex((comment) => {
|
|
|
|
return comment.uid === id;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (index !== -1) {
|
|
|
|
this.showComments.splice(index, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-09 12:27:26 +00:00
|
|
|
addComment (comment) {
|
2021-03-26 13:23:17 +00:00
|
|
|
comment.groupName ? this.groupCollectionComments.push(comment) : this.collectionComments.push(comment);
|
2021-02-25 16:26:42 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 12:27:26 +00:00
|
|
|
removeComment (id) {
|
2021-03-26 13:23:17 +00:00
|
|
|
const collection = this.collectionComments.length > 0 ? this.collectionComments : this.groupCollectionComments;
|
|
|
|
const index = collection.findIndex((comment) => {
|
2021-02-25 16:26:42 +00:00
|
|
|
return comment.uid === id;
|
|
|
|
});
|
|
|
|
if (index !== -1) {
|
2021-03-26 13:23:17 +00:00
|
|
|
collection.splice(index, 1);
|
2021-02-25 16:26:42 +00:00
|
|
|
}
|
2021-06-09 14:17:42 +00:00
|
|
|
this.removeShowComment(id);
|
2021-02-25 16:26:42 +00:00
|
|
|
}
|
|
|
|
|
2021-03-10 18:08:59 +00:00
|
|
|
changeComment (id, changeComment) {
|
|
|
|
const comment = this.findComment(id);
|
|
|
|
if (comment) {
|
|
|
|
comment.comment = changeComment.comment;
|
|
|
|
comment.userId = changeComment.userId;
|
|
|
|
comment.userName = changeComment.userName;
|
2021-07-02 12:48:50 +00:00
|
|
|
comment.parsedName = changeComment.parsedName;
|
2021-07-02 14:49:53 +00:00
|
|
|
comment.userInitials = changeComment.userInitials;
|
2021-03-10 18:08:59 +00:00
|
|
|
comment.userColor = changeComment.userColor;
|
|
|
|
comment.resolved = changeComment.resolved;
|
|
|
|
comment.quote = changeComment.quote;
|
|
|
|
comment.time = changeComment.time;
|
|
|
|
comment.date = changeComment.date;
|
|
|
|
comment.editable = changeComment.editable;
|
|
|
|
comment.removable = changeComment.removable;
|
|
|
|
comment.replies = changeComment.replies;
|
2021-07-06 14:13:55 +00:00
|
|
|
comment.hide =changeComment.hide;
|
2021-03-10 18:08:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-09 12:27:26 +00:00
|
|
|
changeFilter (filter) {
|
2021-02-25 16:26:42 +00:00
|
|
|
this.filter = filter;
|
|
|
|
}
|
|
|
|
|
|
|
|
findComment (id) {
|
2021-03-26 13:23:17 +00:00
|
|
|
const collection = this.collectionComments.length > 0 ? this.collectionComments : this.groupCollectionComments;
|
|
|
|
let comment = collection.find((item) => {
|
2021-02-25 16:26:42 +00:00
|
|
|
return item.uid === id;
|
|
|
|
});
|
|
|
|
return comment;
|
|
|
|
}
|
|
|
|
|
2021-03-26 13:23:17 +00:00
|
|
|
get groupCollectionFilter () {
|
|
|
|
if (this.filter && this.groupCollectionComments.length > 0) {
|
|
|
|
const arr = [];
|
|
|
|
this.filter.forEach((groupName) => {
|
|
|
|
this.groupCollectionComments.forEach((comment) => {
|
|
|
|
if (comment.groupName === groupName) {
|
|
|
|
arr.push(comment);
|
|
|
|
}
|
|
|
|
});
|
2021-02-25 16:26:42 +00:00
|
|
|
});
|
2021-03-26 13:23:17 +00:00
|
|
|
return arr;
|
2021-02-25 16:26:42 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-03 16:49:36 +00:00
|
|
|
// Edit comment
|
|
|
|
currentComment = null;
|
2021-03-09 12:27:26 +00:00
|
|
|
isOpenEditComment = false;
|
|
|
|
openEditComment (open, comment) {
|
2021-03-03 16:49:36 +00:00
|
|
|
if (open !== this.isOpenEditComment) {
|
|
|
|
this.currentComment = open ? comment : null;
|
|
|
|
this.isOpenEditComment = open;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-03 18:21:03 +00:00
|
|
|
currentReply = null;
|
2021-03-09 12:27:26 +00:00
|
|
|
isOpenAddReply = false;
|
|
|
|
openAddReply (open, comment) {
|
2021-03-03 16:49:36 +00:00
|
|
|
if (open !== this.isOpenAddReply) {
|
|
|
|
this.currentComment = open ? comment : null;
|
|
|
|
this.isOpenAddReply = open;
|
|
|
|
}
|
|
|
|
}
|
2021-03-03 18:21:03 +00:00
|
|
|
|
2021-03-09 12:27:26 +00:00
|
|
|
isOpenEditReply = false;
|
|
|
|
openEditReply (open, comment, reply) {
|
2021-03-03 18:21:03 +00:00
|
|
|
if (open !== this.isOpenEditReply) {
|
|
|
|
this.currentComment = open ? comment : null;
|
|
|
|
this.currentReply = open ? reply : null;
|
|
|
|
this.isOpenEditReply = open;
|
|
|
|
}
|
|
|
|
}
|
2021-02-18 15:40:54 +00:00
|
|
|
}
|