Po prostu przechowuj komentarze tak, jak chcesz, aby były reprezentowane na swoim blogu. Chcesz komentarze z wątkami/zagnieżdżonymi? Następnie przechowuj je w sposób zagnieżdżony:
postId: {
comments: [
{
id: "47cc67093475061e3d95369d" // ObjectId
title: "Title of comment",
body: "Comment body",
timestamp: 123456789,
author: "authorIdentifier",
upVotes: 11,
downVotes: 2,
comments: [
{
id: "58ab67093475061e3d95a684"
title: "Nested comment",
body: "Hello, this is a nested/threaded comment",
timestamp: 123456789,
author: "authorIdentifier",
upVotes: 11,
downVotes: 2,
comments: [
// More nested comments
]
}
]
},
{
// Another top-level comment
}
]
}
postId
odnosi się do wpisu na blogu, do którego należą komentarze i został użyty jako klucz (lub _id
w MongoDB) dokumentu. Każdy komentarz ma unikalny id
, aby głosować lub komentować poszczególne komentarze.
Aby uzyskać zagregowane głosy, musisz napisać funkcje map-reduce gdzieś w następujący sposób:
function map() {
mapRecursive(this.comments)
}
function mapRecursive(comments) {
comments.forEach(
function (c) {
emit(comment.author, { upVotes: c.upVotes, downVotes: c.downVotes });
mapRecursive(c.comments);
}
);
}
function reduce(key, values) {
var upVotes = 0;
var downVotes = 0;
values.forEach(
function(votes) {
upVotes += votes.upVotes;
downVotes += votes.downVotes;
}
);
return { upVotes: upVotes, downVotes: downVotes };
}
Nie testowałem tych funkcji i nie sprawdzają, czy nie ma null
wartości. To zależy od Ciebie :)