lbry-desktop/ui/redux/reducers/comments.js

239 lines
7.9 KiB
JavaScript
Raw Normal View History

2020-06-23 19:38:18 +02:00
// @flow
import * as ACTIONS from 'constants/action_types';
import { handleActions } from 'util/redux-utils';
const defaultState: CommentsState = {
commentById: {}, // commentId -> Comment
byId: {}, // ClaimID -> list of comments
2020-08-24 19:35:21 +02:00
repliesByParentId: {}, // ParentCommentID -> list of reply comments
topLevelCommentsById: {}, // ClaimID -> list of top level comments
2020-06-23 19:38:18 +02:00
commentsByUri: {}, // URI -> claimId
isLoading: false,
2020-08-24 19:35:21 +02:00
isCommenting: false,
2020-06-23 19:38:18 +02:00
myComments: undefined,
2020-09-29 16:10:23 +02:00
isFetchingReacts: false,
myReactsByCommentId: {},
othersReactsByCommentId: {},
2020-06-23 19:38:18 +02:00
};
export default handleActions(
{
[ACTIONS.COMMENT_CREATE_STARTED]: (state: CommentsState, action: any): CommentsState => ({
...state,
2020-08-24 19:35:21 +02:00
isCommenting: true,
2020-06-23 19:38:18 +02:00
}),
[ACTIONS.COMMENT_CREATE_FAILED]: (state: CommentsState, action: any) => ({
...state,
2020-08-24 19:35:21 +02:00
isCommenting: false,
2020-06-23 19:38:18 +02:00
}),
[ACTIONS.COMMENT_CREATE_COMPLETED]: (state: CommentsState, action: any): CommentsState => {
const { comment, claimId, uri }: { comment: Comment, claimId: string, uri: string } = action.data;
2020-06-23 19:38:18 +02:00
const commentById = Object.assign({}, state.commentById);
const byId = Object.assign({}, state.byId);
2020-08-24 19:35:21 +02:00
const topLevelCommentsById = Object.assign({}, state.topLevelCommentsById); // was byId {ClaimId -> [commentIds...]}
const repliesByParentId = Object.assign({}, state.repliesByParentId); // {ParentCommentID -> [commentIds...] } list of reply comments
const commentsByUri = Object.assign({}, state.commentsByUri);
const comments = byId[claimId] || [];
2020-06-23 19:38:18 +02:00
const newCommentIds = comments.slice();
// add the comment by its ID
commentById[comment.comment_id] = comment;
// push the comment_id to the top of ID list
newCommentIds.unshift(comment.comment_id);
byId[claimId] = newCommentIds;
2020-08-24 19:35:21 +02:00
if (comment['parent_id']) {
if (!repliesByParentId[comment.parent_id]) {
repliesByParentId[comment.parent_id] = [comment.comment_id];
} else {
repliesByParentId[comment.parent_id].unshift(comment.comment_id);
}
} else {
if (!topLevelCommentsById[claimId]) {
commentsByUri[uri] = claimId;
topLevelCommentsById[claimId] = [comment.comment_id];
} else {
topLevelCommentsById[claimId].unshift(comment.comment_id);
}
}
2020-06-23 19:38:18 +02:00
return {
...state,
2020-08-24 19:35:21 +02:00
topLevelCommentsById,
repliesByParentId,
2020-06-23 19:38:18 +02:00
commentById,
byId,
commentsByUri,
2020-06-23 19:38:18 +02:00
isLoading: false,
2020-08-24 19:35:21 +02:00
isCommenting: false,
2020-06-23 19:38:18 +02:00
};
},
2020-09-29 16:10:23 +02:00
[ACTIONS.COMMENT_REACTION_LIST_STARTED]: (state: CommentsState, action: any): CommentsState => ({
...state,
isFetchingReacts: true,
}),
[ACTIONS.COMMENT_REACTION_LIST_FAILED]: (state: CommentsState, action: any) => ({
...state,
isFetchingReacts: false,
}),
[ACTIONS.COMMENT_REACTION_LIST_COMPLETED]: (state: CommentsState, action: any): CommentsState => {
const { myReactions, othersReactions } = action.data;
const myReacts = Object.assign({}, state.myReactsByCommentId);
const othersReacts = Object.assign({}, state.othersReactsByCommentId);
if (myReactions) {
Object.entries(myReactions).forEach(e => {
myReacts[e[0]] = Object.entries(e[1]).reduce((acc, el) => {
if (el[1] === 1) {
acc.push(el[0]);
}
return acc;
}, []);
});
}
if (othersReactions) {
Object.entries(othersReactions).forEach(e => {
othersReacts[e[0]] = e[1];
});
}
return {
...state,
isFetchingReacts: false,
myReactsByCommentId: myReacts,
othersReactsByCommentId: othersReacts,
};
},
2020-06-23 19:38:18 +02:00
[ACTIONS.COMMENT_LIST_STARTED]: state => ({ ...state, isLoading: true }),
[ACTIONS.COMMENT_LIST_COMPLETED]: (state: CommentsState, action: any) => {
const { comments, claimId, uri } = action.data;
const commentById = Object.assign({}, state.commentById);
const byId = Object.assign({}, state.byId);
2020-08-24 19:35:21 +02:00
const topLevelCommentsById = Object.assign({}, state.topLevelCommentsById); // was byId {ClaimId -> [commentIds...]}
2020-06-23 19:38:18 +02:00
const commentsByUri = Object.assign({}, state.commentsByUri);
2020-08-24 19:35:21 +02:00
const tempRepliesByParent = {};
const topLevelComments = [];
2020-06-23 19:38:18 +02:00
if (comments) {
// we use an Array to preserve order of listing
// in reality this doesn't matter and we can just
// sort comments by their timestamp
const commentIds = Array(comments.length);
// map the comment_ids to the new comments
for (let i = 0; i < comments.length; i++) {
2020-08-24 19:35:21 +02:00
const comment = comments[i];
if (comment['parent_id']) {
if (!tempRepliesByParent[comment.parent_id]) {
tempRepliesByParent[comment.parent_id] = [comment.comment_id];
} else {
tempRepliesByParent[comment.parent_id].push(comment.comment_id);
}
} else {
commentById[comment.comment_id] = comment;
topLevelComments.push(comment.comment_id);
}
2020-06-23 19:38:18 +02:00
commentIds[i] = comments[i].comment_id;
commentById[commentIds[i]] = comments[i];
}
2020-08-24 19:35:21 +02:00
topLevelCommentsById[claimId] = topLevelComments;
2020-06-23 19:38:18 +02:00
byId[claimId] = commentIds;
commentsByUri[uri] = claimId;
}
2020-08-24 19:35:21 +02:00
const repliesByParentId = Object.assign({}, state.repliesByParentId, tempRepliesByParent); // {ParentCommentID -> [commentIds...] } list of reply comments
2020-06-23 19:38:18 +02:00
return {
...state,
2020-08-24 19:35:21 +02:00
topLevelCommentsById,
repliesByParentId,
2020-06-23 19:38:18 +02:00
byId,
commentById,
commentsByUri,
isLoading: false,
};
},
[ACTIONS.COMMENT_LIST_FAILED]: (state: CommentsState, action: any) => ({
...state,
isLoading: false,
}),
[ACTIONS.COMMENT_ABANDON_STARTED]: (state: CommentsState, action: any) => ({
...state,
isLoading: true,
}),
[ACTIONS.COMMENT_ABANDON_COMPLETED]: (state: CommentsState, action: any) => {
const { comment_id } = action.data;
const commentById = Object.assign({}, state.commentById);
const byId = Object.assign({}, state.byId);
// to remove the comment and its references
const claimId = commentById[comment_id].claim_id;
for (let i = 0; i < byId[claimId].length; i++) {
if (byId[claimId][i] === comment_id) {
byId[claimId].splice(i, 1);
break;
}
}
delete commentById[comment_id];
return {
...state,
commentById,
byId,
isLoading: false,
};
},
// do nothing
[ACTIONS.COMMENT_ABANDON_FAILED]: (state: CommentsState, action: any) => ({
...state,
2020-08-24 19:35:21 +02:00
isCommenting: false,
2020-06-23 19:38:18 +02:00
}),
// do nothing
[ACTIONS.COMMENT_UPDATE_STARTED]: (state: CommentsState, action: any) => ({
...state,
2020-08-24 19:35:21 +02:00
isCommenting: true,
2020-06-23 19:38:18 +02:00
}),
// replace existing comment with comment returned here under its comment_id
[ACTIONS.COMMENT_UPDATE_COMPLETED]: (state: CommentsState, action: any) => {
const { comment } = action.data;
const commentById = Object.assign({}, state.commentById);
commentById[comment.comment_id] = comment;
return {
...state,
commentById,
2020-08-24 19:35:21 +02:00
isCommenting: false,
2020-06-23 19:38:18 +02:00
};
},
// nothing can be done here
[ACTIONS.COMMENT_UPDATE_FAILED]: (state: CommentsState, action: any) => ({
...state,
2020-08-24 19:35:21 +02:00
isCmmenting: false,
2020-06-23 19:38:18 +02:00
}),
// nothing can really be done here
[ACTIONS.COMMENT_HIDE_STARTED]: (state: CommentsState, action: any) => ({
...state,
isLoading: true,
}),
[ACTIONS.COMMENT_HIDE_COMPLETED]: (state: CommentsState, action: any) => ({
...state, // todo: add HiddenComments state & create selectors
isLoading: false,
}),
// nothing can be done here
[ACTIONS.COMMENT_HIDE_FAILED]: (state: CommentsState, action: any) => ({
...state,
isLoading: false,
}),
},
defaultState
);