Compare commits
6 commits
master
...
comment-re
Author | SHA1 | Date | |
---|---|---|---|
|
8c350a18a1 | ||
|
7b4fccaf20 | ||
|
4d772d875c | ||
|
711d64bde0 | ||
|
624ef0c9b7 | ||
|
40cea617ee |
7 changed files with 254 additions and 72 deletions
137
dist/bundle.es.js
vendored
137
dist/bundle.es.js
vendored
|
@ -1260,6 +1260,18 @@ function buildURI(UrlObj, includeProto = true, protoDefault = 'lbry://') {
|
|||
deprecatedParts = _objectWithoutProperties(UrlObj, ['streamName', 'streamClaimId', 'channelName', 'channelClaimId', 'primaryClaimSequence', 'primaryBidPosition', 'secondaryClaimSequence', 'secondaryBidPosition']);
|
||||
const { claimId, claimName, contentName } = deprecatedParts;
|
||||
|
||||
{
|
||||
if (claimId) {
|
||||
console.error(__("'claimId' should no longer be used. Use 'streamClaimId' or 'channelClaimId' instead"));
|
||||
}
|
||||
if (claimName) {
|
||||
console.error(__("'claimName' should no longer be used. Use 'streamClaimName' or 'channelClaimName' instead"));
|
||||
}
|
||||
if (contentName) {
|
||||
console.error(__("'contentName' should no longer be used. Use 'streamName' instead"));
|
||||
}
|
||||
}
|
||||
|
||||
if (!claimName && !channelName && !streamName) {
|
||||
console.error(__("'claimName', 'channelName', and 'streamName' are all empty. One must be present to build a url."));
|
||||
}
|
||||
|
@ -4239,7 +4251,9 @@ const doDeleteTag = name => ({
|
|||
|
||||
//
|
||||
|
||||
function doCommentList(uri, page = 1, pageSize = 99999) {
|
||||
// if parentId is provided, `uri` is ignored
|
||||
function doCommentList(uri, page = 1, pageSize = 99999, // while the desktop app doesn't paginate
|
||||
parentId) {
|
||||
return (dispatch, getState) => {
|
||||
const state = getState();
|
||||
const claim = selectClaimsByUri(state)[uri];
|
||||
|
@ -4251,7 +4265,8 @@ function doCommentList(uri, page = 1, pageSize = 99999) {
|
|||
lbryProxy.comment_list({
|
||||
claim_id: claimId,
|
||||
page,
|
||||
page_size: pageSize
|
||||
page_size: pageSize,
|
||||
parentId: parentId
|
||||
}).then(result => {
|
||||
const { items: comments } = result;
|
||||
dispatch({
|
||||
|
@ -4259,7 +4274,8 @@ function doCommentList(uri, page = 1, pageSize = 99999) {
|
|||
data: {
|
||||
comments,
|
||||
claimId: claimId,
|
||||
uri: uri
|
||||
uri: uri,
|
||||
parentId: parentId
|
||||
}
|
||||
});
|
||||
}).catch(error => {
|
||||
|
@ -4291,7 +4307,8 @@ function doCommentCreate(comment = '', claim_id = '', channel, parent_id) {
|
|||
type: COMMENT_CREATE_COMPLETED,
|
||||
data: {
|
||||
comment: result,
|
||||
claimId: claim_id
|
||||
claimId: claim_id,
|
||||
parentId: parent_id
|
||||
}
|
||||
});
|
||||
}).catch(error => {
|
||||
|
@ -4835,6 +4852,7 @@ const defaultState$1 = {
|
|||
byId: {}, // ClaimID -> list of comments
|
||||
commentsByUri: {}, // URI -> claimId
|
||||
isLoading: false,
|
||||
repliesByCommentId: {}, // commentId -> list of commentIds
|
||||
myComments: undefined
|
||||
};
|
||||
|
||||
|
@ -4848,9 +4866,10 @@ const commentReducer = handleActions({
|
|||
}),
|
||||
|
||||
[COMMENT_CREATE_COMPLETED]: (state, action) => {
|
||||
const { comment, claimId } = action.data;
|
||||
const { comment, claimId, parentId } = action.data;
|
||||
const commentById = Object.assign({}, state.commentById);
|
||||
const byId = Object.assign({}, state.byId);
|
||||
const repliesByCommentId = Object.assign({}, state.repliesByCommentId);
|
||||
const comments = byId[claimId];
|
||||
const newCommentIds = comments.slice();
|
||||
|
||||
|
@ -4861,6 +4880,13 @@ const commentReducer = handleActions({
|
|||
newCommentIds.unshift(comment.comment_id);
|
||||
byId[claimId] = newCommentIds;
|
||||
|
||||
if (parentId) {
|
||||
const newReplies = repliesByCommentId[parentId] || [];
|
||||
// unlike regular comments, newest replies should be at the bottom of list
|
||||
newReplies.push(comment.comment_id);
|
||||
repliesByCommentId[parentId] = newReplies;
|
||||
}
|
||||
|
||||
return _extends$a({}, state, {
|
||||
commentById,
|
||||
byId,
|
||||
|
@ -4871,31 +4897,49 @@ const commentReducer = handleActions({
|
|||
[COMMENT_LIST_STARTED]: state => _extends$a({}, state, { isLoading: true }),
|
||||
|
||||
[COMMENT_LIST_COMPLETED]: (state, action) => {
|
||||
const { comments, claimId, uri } = action.data;
|
||||
const { comments, claimId, uri, parentId } = action.data;
|
||||
|
||||
const commentById = Object.assign({}, state.commentById);
|
||||
const byId = Object.assign({}, state.byId);
|
||||
const commentsByUri = Object.assign({}, state.commentsByUri);
|
||||
const repliesByCommentId = Object.assign({}, state.repliesByCommentId);
|
||||
|
||||
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);
|
||||
const replyThreads = {};
|
||||
|
||||
// map the comment_ids to the new comments
|
||||
for (let i = 0; i < comments.length; i++) {
|
||||
commentIds[i] = comments[i].comment_id;
|
||||
commentById[commentIds[i]] = comments[i];
|
||||
const comment = comments[i];
|
||||
commentIds[i] = comment.comment_id;
|
||||
commentById[commentIds[i]] = comment;
|
||||
|
||||
if (comment.parent_id) {
|
||||
if (!(comment.parent_id in replyThreads)) {
|
||||
replyThreads[comment.parent_id] = [];
|
||||
}
|
||||
replyThreads[comment.parent_id].push(comment.comment_id);
|
||||
}
|
||||
}
|
||||
|
||||
byId[claimId] = commentIds;
|
||||
Object.entries(replyThreads).forEach((parent_id, replyIds) => {
|
||||
repliesByCommentId[parent_id] = replyIds;
|
||||
});
|
||||
|
||||
commentsByUri[uri] = claimId;
|
||||
// don't override the entire list with the replies to one comment
|
||||
if (parentId == null) {
|
||||
byId[claimId] = commentIds;
|
||||
}
|
||||
}
|
||||
return _extends$a({}, state, {
|
||||
byId,
|
||||
commentById,
|
||||
commentsByUri,
|
||||
repliesByCommentId,
|
||||
isLoading: false
|
||||
});
|
||||
},
|
||||
|
@ -4910,8 +4954,12 @@ const commentReducer = handleActions({
|
|||
const { comment_id } = action.data;
|
||||
const commentById = Object.assign({}, state.commentById);
|
||||
const byId = Object.assign({}, state.byId);
|
||||
const repliesByCommentId = Object.assign({}, state.repliesByCommentId);
|
||||
|
||||
// to remove the comment and its references
|
||||
const comment = commentById[comment_id];
|
||||
|
||||
// keep record of comment's existence if it has replies
|
||||
if (!(comment.comment_id in repliesByCommentId)) {
|
||||
const claimId = commentById[comment_id].claim_id;
|
||||
for (let i = 0; i < byId[claimId].length; i++) {
|
||||
if (byId[claimId][i] === comment_id) {
|
||||
|
@ -4919,11 +4967,23 @@ const commentReducer = handleActions({
|
|||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (comment.parent_id) {
|
||||
for (let i = 0; i < repliesByCommentId[comment.parent_id]; i++) {
|
||||
if (repliesByCommentId[comment.parent_id][i] === comment.comment_id) {
|
||||
repliesByCommentId[comment.parent_id].splice(i, 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
delete commentById[comment_id];
|
||||
|
||||
return _extends$a({}, state, {
|
||||
commentById,
|
||||
byId,
|
||||
repliesByCommentId,
|
||||
isLoading: false
|
||||
});
|
||||
},
|
||||
|
@ -5875,17 +5935,46 @@ const selectState$8 = state => state.comments || {};
|
|||
|
||||
const selectCommentsById = reselect.createSelector(selectState$8, state => state.commentById || {});
|
||||
|
||||
const selectCommentsByClaimId = reselect.createSelector(selectState$8, selectCommentsById, (state, byId) => {
|
||||
const byClaimId = state.byId || {};
|
||||
const selectReplyIdsById = reselect.createSelector(selectState$8, state => state.repliesByCommentId || {});
|
||||
|
||||
const selectRepliesById = reselect.createSelector(selectState$8, selectReplyIdsById, (state, repliesById) => {
|
||||
const byCommentId = state.commentById || {};
|
||||
const comments = {};
|
||||
|
||||
Object.keys(repliesById).forEach(parentId => {
|
||||
comments[parentId] = [];
|
||||
for (const commentId of repliesById[parentId]) {
|
||||
comments[parentId].push(byCommentId[commentId]);
|
||||
}
|
||||
});
|
||||
return comments;
|
||||
});
|
||||
|
||||
const selectRepliesByClaimId = reselect.createSelector(selectState$8, selectRepliesById, (state, repliesById) => {
|
||||
const byClaimId = state.byId || {};
|
||||
const claimThreads = {};
|
||||
|
||||
Object.keys(byClaimId).forEach(claimId => {
|
||||
claimThreads[claimId] = {};
|
||||
for (const commentId of byClaimId[claimId]) {
|
||||
if (repliesById[commentId]) {
|
||||
claimThreads[claimId][commentId] = repliesById[commentId];
|
||||
}
|
||||
}
|
||||
});
|
||||
return claimThreads;
|
||||
});
|
||||
|
||||
const selectAllCommentsByClaimId = reselect.createSelector(selectState$8, selectCommentsById, (state, commentById) => {
|
||||
const byClaimId = state.byId || {};
|
||||
const comments = {};
|
||||
// replace every comment_id in the list with the actual comment object
|
||||
Object.keys(byClaimId).forEach(claimId => {
|
||||
const commentIds = byClaimId[claimId];
|
||||
const commentIds = byClaimId[claimId] || [];
|
||||
|
||||
comments[claimId] = Array(commentIds === null ? 0 : commentIds.length);
|
||||
for (let i = 0; i < commentIds.length; i++) {
|
||||
comments[claimId][i] = byId[commentIds[i]];
|
||||
comments[claimId] = [];
|
||||
for (const commentId of commentIds) {
|
||||
comments[claimId].push(commentById[commentId]);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -5897,28 +5986,18 @@ const selectCommentsByClaimId = reselect.createSelector(selectState$8, selectCom
|
|||
selectState,
|
||||
state => state.byId || {}
|
||||
); */
|
||||
const selectCommentsByUri = reselect.createSelector(selectState$8, state => {
|
||||
const selectCommentsByUri = reselect.createSelector(selectState$8, selectAllCommentsByClaimId, (state, commentsByClaimId) => {
|
||||
const byUri = state.commentsByUri || {};
|
||||
const comments = {};
|
||||
Object.keys(byUri).forEach(uri => {
|
||||
const claimId = byUri[uri];
|
||||
if (claimId === null) {
|
||||
comments[uri] = null;
|
||||
} else {
|
||||
comments[uri] = claimId;
|
||||
}
|
||||
comments[uri] = commentsByClaimId[claimId];
|
||||
});
|
||||
|
||||
return comments;
|
||||
});
|
||||
|
||||
const makeSelectCommentsForUri = uri => reselect.createSelector(selectCommentsByClaimId, selectCommentsByUri, (byClaimId, byUri) => {
|
||||
const claimId = byUri[uri];
|
||||
return byClaimId && byClaimId[claimId];
|
||||
});
|
||||
|
||||
// todo: allow SDK to retrieve user comments through comment_list
|
||||
// todo: implement selectors for selecting comments owned by user
|
||||
const makeSelectCommentsForUri = uri => reselect.createSelector(selectCommentsByUri, byUri => byUri[uri]);
|
||||
|
||||
//
|
||||
|
||||
|
|
6
dist/flow-typed/Comment.js
vendored
6
dist/flow-typed/Comment.js
vendored
|
@ -10,12 +10,14 @@ declare type Comment = {
|
|||
signature?: string, // signature of comment by originating channel
|
||||
signing_ts?: string, // timestamp used when signing this comment
|
||||
is_channel_signature_valid?: boolean, // whether or not the signature could be validated
|
||||
parent_id?: number, // comment_id of comment this is in reply to
|
||||
parent_id?: string, // if present, the comment is a reply
|
||||
};
|
||||
|
||||
// todo: relate individual comments to their commentId
|
||||
// todo: implement --is_mine for comment_list
|
||||
// todo: rename byId to commentsByClaimId
|
||||
declare type CommentsState = {
|
||||
commentsByUri: { [string]: string },
|
||||
repliesByCommentId: { [string]: Array<string> },
|
||||
byId: { [string]: Array<string> },
|
||||
commentById: { [string]: Comment },
|
||||
isLoading: boolean,
|
||||
|
|
6
flow-typed/Comment.js
vendored
6
flow-typed/Comment.js
vendored
|
@ -10,12 +10,14 @@ declare type Comment = {
|
|||
signature?: string, // signature of comment by originating channel
|
||||
signing_ts?: string, // timestamp used when signing this comment
|
||||
is_channel_signature_valid?: boolean, // whether or not the signature could be validated
|
||||
parent_id?: number, // comment_id of comment this is in reply to
|
||||
parent_id?: string, // if present, the comment is a reply
|
||||
};
|
||||
|
||||
// todo: relate individual comments to their commentId
|
||||
// todo: implement --is_mine for comment_list
|
||||
// todo: rename byId to commentsByClaimId
|
||||
declare type CommentsState = {
|
||||
commentsByUri: { [string]: string },
|
||||
repliesByCommentId: { [string]: Array<string> },
|
||||
byId: { [string]: Array<string> },
|
||||
commentById: { [string]: Comment },
|
||||
isLoading: boolean,
|
||||
|
|
|
@ -234,7 +234,11 @@ export {
|
|||
selectMyStreamUrlsCount,
|
||||
} from 'redux/selectors/claims';
|
||||
|
||||
export { makeSelectCommentsForUri } from 'redux/selectors/comments';
|
||||
export {
|
||||
makeSelectCommentsForUri,
|
||||
makeSelectCommentReplyCount,
|
||||
makeSelectCommentReplyList,
|
||||
} from 'redux/selectors/comments';
|
||||
|
||||
export {
|
||||
makeSelectFileInfoForUri,
|
||||
|
|
|
@ -4,7 +4,13 @@ import Lbry from 'lbry';
|
|||
import { selectClaimsByUri, selectMyChannelClaims } from 'redux/selectors/claims';
|
||||
import { doToast } from 'redux/actions/notifications';
|
||||
|
||||
export function doCommentList(uri: string, page: number = 1, pageSize: number = 99999) {
|
||||
// if parentId is provided, `uri` is ignored
|
||||
export function doCommentList(
|
||||
uri: string,
|
||||
page: number = 1,
|
||||
pageSize: number = 99999, // while the desktop app doesn't paginate
|
||||
parentId?: string
|
||||
) {
|
||||
return (dispatch: Dispatch, getState: GetState) => {
|
||||
const state = getState();
|
||||
const claim = selectClaimsByUri(state)[uri];
|
||||
|
@ -17,6 +23,7 @@ export function doCommentList(uri: string, page: number = 1, pageSize: number =
|
|||
claim_id: claimId,
|
||||
page,
|
||||
page_size: pageSize,
|
||||
parentId: parentId,
|
||||
})
|
||||
.then((result: CommentListResponse) => {
|
||||
const { items: comments } = result;
|
||||
|
@ -26,6 +33,7 @@ export function doCommentList(uri: string, page: number = 1, pageSize: number =
|
|||
comments,
|
||||
claimId: claimId,
|
||||
uri: uri,
|
||||
parentId: parentId,
|
||||
},
|
||||
});
|
||||
})
|
||||
|
@ -66,6 +74,7 @@ export function doCommentCreate(
|
|||
data: {
|
||||
comment: result,
|
||||
claimId: claim_id,
|
||||
parentId: parent_id,
|
||||
},
|
||||
});
|
||||
})
|
||||
|
|
|
@ -7,6 +7,7 @@ const defaultState: CommentsState = {
|
|||
byId: {}, // ClaimID -> list of comments
|
||||
commentsByUri: {}, // URI -> claimId
|
||||
isLoading: false,
|
||||
repliesByCommentId: {}, // commentId -> list of commentIds
|
||||
myComments: undefined,
|
||||
};
|
||||
|
||||
|
@ -23,9 +24,10 @@ export const commentReducer = handleActions(
|
|||
}),
|
||||
|
||||
[ACTIONS.COMMENT_CREATE_COMPLETED]: (state: CommentsState, action: any): CommentsState => {
|
||||
const { comment, claimId }: { comment: Comment, claimId: string } = action.data;
|
||||
const { comment, claimId, parentId } = action.data;
|
||||
const commentById = Object.assign({}, state.commentById);
|
||||
const byId = Object.assign({}, state.byId);
|
||||
const repliesByCommentId = Object.assign({}, state.repliesByCommentId);
|
||||
const comments = byId[claimId];
|
||||
const newCommentIds = comments.slice();
|
||||
|
||||
|
@ -36,6 +38,13 @@ export const commentReducer = handleActions(
|
|||
newCommentIds.unshift(comment.comment_id);
|
||||
byId[claimId] = newCommentIds;
|
||||
|
||||
if (parentId) {
|
||||
const newReplies = repliesByCommentId[parentId] || [];
|
||||
// unlike regular comments, newest replies should be at the bottom of list
|
||||
newReplies.push(comment.comment_id);
|
||||
repliesByCommentId[parentId] = newReplies;
|
||||
}
|
||||
|
||||
return {
|
||||
...state,
|
||||
commentById,
|
||||
|
@ -47,32 +56,50 @@ export const commentReducer = handleActions(
|
|||
[ACTIONS.COMMENT_LIST_STARTED]: state => ({ ...state, isLoading: true }),
|
||||
|
||||
[ACTIONS.COMMENT_LIST_COMPLETED]: (state: CommentsState, action: any) => {
|
||||
const { comments, claimId, uri } = action.data;
|
||||
const { comments, claimId, uri, parentId } = action.data;
|
||||
|
||||
const commentById = Object.assign({}, state.commentById);
|
||||
const byId = Object.assign({}, state.byId);
|
||||
const commentsByUri = Object.assign({}, state.commentsByUri);
|
||||
const repliesByCommentId = Object.assign({}, state.repliesByCommentId);
|
||||
|
||||
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);
|
||||
const replyThreads = {};
|
||||
|
||||
// map the comment_ids to the new comments
|
||||
for (let i = 0; i < comments.length; i++) {
|
||||
commentIds[i] = comments[i].comment_id;
|
||||
commentById[commentIds[i]] = comments[i];
|
||||
const comment = comments[i];
|
||||
commentIds[i] = comment.comment_id;
|
||||
commentById[commentIds[i]] = comment;
|
||||
|
||||
if (comment.parent_id) {
|
||||
if (!(comment.parent_id in replyThreads)) {
|
||||
replyThreads[comment.parent_id] = [];
|
||||
}
|
||||
replyThreads[comment.parent_id].push(comment.comment_id);
|
||||
}
|
||||
}
|
||||
|
||||
byId[claimId] = commentIds;
|
||||
Object.entries(replyThreads).forEach((parent_id, replyIds) => {
|
||||
repliesByCommentId[parent_id] = replyIds;
|
||||
});
|
||||
|
||||
commentsByUri[uri] = claimId;
|
||||
// don't override the entire list with the replies to one comment
|
||||
if (parentId == null) {
|
||||
byId[claimId] = commentIds;
|
||||
}
|
||||
}
|
||||
return {
|
||||
...state,
|
||||
byId,
|
||||
commentById,
|
||||
commentsByUri,
|
||||
repliesByCommentId,
|
||||
isLoading: false,
|
||||
};
|
||||
},
|
||||
|
@ -89,8 +116,12 @@ export const commentReducer = handleActions(
|
|||
const { comment_id } = action.data;
|
||||
const commentById = Object.assign({}, state.commentById);
|
||||
const byId = Object.assign({}, state.byId);
|
||||
const repliesByCommentId = Object.assign({}, state.repliesByCommentId);
|
||||
|
||||
// to remove the comment and its references
|
||||
const comment: Comment = commentById[comment_id];
|
||||
|
||||
// keep record of comment's existence if it has replies
|
||||
if (!(comment.comment_id in repliesByCommentId)) {
|
||||
const claimId = commentById[comment_id].claim_id;
|
||||
for (let i = 0; i < byId[claimId].length; i++) {
|
||||
if (byId[claimId][i] === comment_id) {
|
||||
|
@ -98,12 +129,24 @@ export const commentReducer = handleActions(
|
|||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (comment.parent_id) {
|
||||
for (let i = 0; i < repliesByCommentId[comment.parent_id]; i++) {
|
||||
if (repliesByCommentId[comment.parent_id][i] === comment.comment_id) {
|
||||
repliesByCommentId[comment.parent_id].splice(i, 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
delete commentById[comment_id];
|
||||
|
||||
return {
|
||||
...state,
|
||||
commentById,
|
||||
byId,
|
||||
repliesByCommentId,
|
||||
isLoading: false,
|
||||
};
|
||||
},
|
||||
|
|
|
@ -8,20 +8,60 @@ export const selectCommentsById = createSelector(
|
|||
state => state.commentById || {}
|
||||
);
|
||||
|
||||
export const selectCommentsByClaimId = createSelector(
|
||||
export const selectReplyIdsById = createSelector(
|
||||
selectState,
|
||||
selectCommentsById,
|
||||
(state, byId) => {
|
||||
const byClaimId = state.byId || {};
|
||||
state => state.repliesByCommentId || {}
|
||||
);
|
||||
|
||||
export const selectRepliesById = createSelector(
|
||||
selectState,
|
||||
selectReplyIdsById,
|
||||
(state, repliesById) => {
|
||||
const byCommentId = state.commentById || {};
|
||||
const comments = {};
|
||||
|
||||
Object.keys(repliesById).forEach(parentId => {
|
||||
comments[parentId] = [];
|
||||
for (const commentId of repliesById[parentId]) {
|
||||
comments[parentId].push(byCommentId[commentId]);
|
||||
}
|
||||
});
|
||||
return comments;
|
||||
}
|
||||
);
|
||||
|
||||
export const selectRepliesByClaimId = createSelector(
|
||||
selectState,
|
||||
selectRepliesById,
|
||||
(state, repliesById) => {
|
||||
const byClaimId = state.byId || {};
|
||||
const claimThreads = {};
|
||||
|
||||
Object.keys(byClaimId).forEach(claimId => {
|
||||
claimThreads[claimId] = {};
|
||||
for (const commentId of byClaimId[claimId]) {
|
||||
if (repliesById[commentId]) {
|
||||
claimThreads[claimId][commentId] = repliesById[commentId];
|
||||
}
|
||||
}
|
||||
});
|
||||
return claimThreads;
|
||||
}
|
||||
);
|
||||
|
||||
export const selectAllCommentsByClaimId = createSelector(
|
||||
selectState,
|
||||
selectCommentsById,
|
||||
(state, commentById) => {
|
||||
const byClaimId = state.byId || {};
|
||||
const comments = {};
|
||||
// replace every comment_id in the list with the actual comment object
|
||||
Object.keys(byClaimId).forEach(claimId => {
|
||||
const commentIds = byClaimId[claimId];
|
||||
const commentIds = byClaimId[claimId] || [];
|
||||
|
||||
comments[claimId] = Array(commentIds === null ? 0 : commentIds.length);
|
||||
for (let i = 0; i < commentIds.length; i++) {
|
||||
comments[claimId][i] = byId[commentIds[i]];
|
||||
comments[claimId] = [];
|
||||
for (const commentId of commentIds) {
|
||||
comments[claimId].push(commentById[commentId]);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -36,16 +76,13 @@ export const selectCommentsByClaimId = createSelector(
|
|||
); */
|
||||
export const selectCommentsByUri = createSelector(
|
||||
selectState,
|
||||
state => {
|
||||
selectAllCommentsByClaimId,
|
||||
(state, commentsByClaimId) => {
|
||||
const byUri = state.commentsByUri || {};
|
||||
const comments = {};
|
||||
Object.keys(byUri).forEach(uri => {
|
||||
const claimId = byUri[uri];
|
||||
if (claimId === null) {
|
||||
comments[uri] = null;
|
||||
} else {
|
||||
comments[uri] = claimId;
|
||||
}
|
||||
comments[uri] = commentsByClaimId[claimId];
|
||||
});
|
||||
|
||||
return comments;
|
||||
|
@ -54,13 +91,19 @@ export const selectCommentsByUri = createSelector(
|
|||
|
||||
export const makeSelectCommentsForUri = (uri: string) =>
|
||||
createSelector(
|
||||
selectCommentsByClaimId,
|
||||
selectCommentsByUri,
|
||||
(byClaimId, byUri) => {
|
||||
const claimId = byUri[uri];
|
||||
return byClaimId && byClaimId[claimId];
|
||||
}
|
||||
byUri => byUri[uri]
|
||||
);
|
||||
|
||||
// todo: allow SDK to retrieve user comments through comment_list
|
||||
// todo: implement selectors for selecting comments owned by user
|
||||
export const makeSelectCommentReplyCount = (commentId: string) =>
|
||||
createSelector(
|
||||
selectReplyIdsById,
|
||||
repliesById => (repliesById[commentId] ? repliesById[commentId].length : 0)
|
||||
);
|
||||
|
||||
export const makeSelectCommentReplyList = (commentId: string) => {
|
||||
createSelector(
|
||||
selectRepliesById,
|
||||
repliesById => repliesById[commentId]
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue