mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
30 lines
843 B
React
30 lines
843 B
React
![]() |
import React from 'react';
|
||
|
|
||
|
const CommentsList = ({results, currentUser, hasMore, ready, count, totalCount, loadMore}) => {
|
||
|
|
||
|
({PostsLoadMore, Loading, PostsNoResults, PostsNoMore, CommentsNode} = Telescope.components);
|
||
|
|
||
|
if (!!results.length) {
|
||
|
return (
|
||
|
<div className="comments-list">
|
||
|
{results.map(comment => <CommentsNode comment={comment} key={comment._id} currentUser={currentUser}/>)}
|
||
|
{hasMore ? (ready ? <PostsLoadMore loadMore={loadMore} count={count} totalCount={totalCount} /> : <Loading/>) : <PostsNoMore/>}
|
||
|
</div>
|
||
|
)
|
||
|
} else if (!ready) {
|
||
|
return (
|
||
|
<div className="comments-list">
|
||
|
<Loading/>
|
||
|
</div>
|
||
|
)
|
||
|
} else {
|
||
|
return (
|
||
|
<div className="comments-list">
|
||
|
<p>No comments to display.</p>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
module.exports = CommentsList;
|