stacker.news/components/comments.js

32 lines
769 B
JavaScript
Raw Normal View History

2021-04-22 22:14:32 +00:00
import { useQuery } from '@apollo/client'
import Comment, { CommentSkeleton } from './comment'
2021-04-15 19:41:02 +00:00
2021-04-27 00:55:48 +00:00
export default function Comments ({ comments, ...props }) {
return comments.map(item => (
<div key={item.id} className='mt-2'>
<Comment item={item} {...props} />
</div>
))
}
export function CommentsSkeleton () {
const comments = new Array(3).fill(null)
return comments.map((_, i) => (
<div key={i} className='mt-2'>
<CommentSkeleton skeletonChildren />
</div>
))
}
export function CommentsQuery ({ query, ...props }) {
2021-04-22 22:14:32 +00:00
const { loading, error, data } = useQuery(query)
2021-04-17 18:15:18 +00:00
2021-04-22 22:14:32 +00:00
if (error) return <div>Failed to load!</div>
if (loading) {
2021-04-27 00:55:48 +00:00
return <CommentsSkeleton />
2021-04-22 22:14:32 +00:00
}
2021-04-15 19:41:02 +00:00
2021-04-27 00:55:48 +00:00
return <Comments comments={data.comments} {...props} />
2021-04-15 19:41:02 +00:00
}