mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
44 lines
No EOL
1.2 KiB
JavaScript
44 lines
No EOL
1.2 KiB
JavaScript
import Telescope, { removeMutation } from 'meteor/nova:lib';
|
|
import Posts from "meteor/nova:posts";
|
|
import Comments from '../collection.js';
|
|
import Users from 'meteor/nova:users';
|
|
|
|
const CommentsRemovePostCommenters = (comment, currentUser) => {
|
|
const userId = comment.userId;
|
|
|
|
// dec comment count
|
|
Users.update({_id: userId}, {
|
|
$inc: {'__commentCount': -1}
|
|
});
|
|
|
|
// update post
|
|
Posts.update(comment.postId, {
|
|
$inc: {commentCount: -1},
|
|
// note: the others parameters should be queried by graphql from the post
|
|
// $set: {lastCommentedAt: new Date()},
|
|
// $pull: {commenters: userId}
|
|
});
|
|
|
|
return comment;
|
|
};
|
|
|
|
Telescope.callbacks.add("comments.remove.async", CommentsRemovePostCommenters);
|
|
|
|
const CommentsRemoveChildrenComments = (comment, currentUser) => {
|
|
|
|
const childrenComments = Comments.find({parentCommentId: comment._id}).fetch();
|
|
|
|
childrenComments.forEach(childComment => {
|
|
removeMutation({
|
|
action: 'comments.remove',
|
|
collection: Comments,
|
|
document: childComment,
|
|
currentUser: currentUser,
|
|
validate: false
|
|
});
|
|
});
|
|
|
|
return comment;
|
|
};
|
|
|
|
Telescope.callbacks.add("comments.remove.async", CommentsRemoveChildrenComments); |