File size: 2,187 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
import treeSelect from '@automattic/tree-select';
import { filter, groupBy, keyBy, map, mapValues, partition } from 'lodash';
import { getPostCommentItems } from 'calypso/state/comments/selectors/get-post-comment-items';
import 'calypso/state/comments/init';
/**
* Gets comment tree for a given post
* @param {Object} state redux state
* @param {number} siteId site identification
* @param {number} postId site identification
* @param {string} status String representing the comment status to show. Defaults to 'approved'.
* @param {number} authorId - when specified we only return pending comments that match this id
* @returns {Object} comments tree, and in addition a children array
*/
export const getPostCommentsTree = treeSelect(
( state, siteId, postId ) => [ getPostCommentItems( state, siteId, postId ) ],
( [ allItems ], siteId, postId, status = 'approved', authorId ) => {
const items = filter( allItems, ( item ) => {
//only return pending comments that match the comment author
const commentAuthorId = item?.author?.ID;
if (
authorId &&
commentAuthorId &&
item.status === 'unapproved' &&
commentAuthorId !== authorId
) {
return false;
}
if ( status !== 'all' ) {
return item.isPlaceholder || item.status === status;
}
return true;
} );
// separate out root comments from comments that have parents
const [ roots, children ] = partition( items, ( item ) => item.parent === false );
// group children by their parent ID
const childrenGroupedByParent = groupBy( children, 'parent.ID' );
// Generate a new map of parent ID to an array of chilren IDs
// Reverse the order to keep it in chrono order
const parentToChildIdMap = mapValues( childrenGroupedByParent, ( _children ) =>
map( _children, 'ID' ).reverse()
);
// convert all of the comments to comment nodes for our tree structure
const transformItemToNode = ( item ) => ( {
data: item,
children: parentToChildIdMap[ item.ID ] || [],
} );
const commentsByIdMap = keyBy( map( items, transformItemToNode ), 'data.ID' );
return {
...commentsByIdMap,
children: map( roots, ( root ) => root.ID ).reverse(),
};
}
);
|