File size: 583 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import { get } from 'lodash';
/**
* Create a stripped down comment object containing only the bare minimum fields needed by CommentList's actions.
* @param {Object} comment A comment object.
* @returns {Object} A stripped down comment object.
*/
export const getMinimumComment = ( comment ) => ( {
commentId: get( comment, 'ID' ),
isLiked: get( comment, 'i_like' ),
postId: get( comment, 'post.ID' ),
status: get( comment, 'status' ),
can_moderate: get( comment, 'can_moderate' ),
} );
export function hasBlocks( comment = '' ) {
return comment.includes( '<!-- wp:' );
}
|