@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
41 lines • 1.75 kB
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
export function removeCommentFromTree(state, commentId) {
var _a;
var comment = state[commentId];
var newState = __assign({}, state);
// Remove the comment itself
delete newState[commentId];
// Remove the comment from its parent’s replies
if ((_a = comment.comment) === null || _a === void 0 ? void 0 : _a.parentId) {
var parent_1 = newState[comment.comment.parentId];
var _b = parent_1.replies, _c = commentId, _1 = _b[_c], remainingReplies = __rest(_b, [typeof _c === "symbol" ? _c : _c + ""]);
newState[comment.comment.parentId] = __assign(__assign({}, parent_1), { replies: remainingReplies });
}
// Recursively remove all replies
Object.keys(comment.replies).forEach(function (replyId) {
delete newState[replyId];
});
return newState;
}
//# sourceMappingURL=removeCommentFromTree.js.map