33 lines
827 B
JavaScript
33 lines
827 B
JavaScript
import { useQuery } from '@apollo/client'
|
|
import { useEffect } from 'react'
|
|
import Comment, { CommentSkeleton } from './comment'
|
|
|
|
export default function Comments ({ comments, ...props }) {
|
|
useEffect(() => {
|
|
// Your code here
|
|
const hash = window.location.hash
|
|
if (hash) {
|
|
document.querySelector(hash).scrollIntoView({ behavior: 'smooth' })
|
|
}
|
|
}, [])
|
|
|
|
return comments.map(item => (
|
|
<Comment key={item.id} item={item} {...props} />
|
|
))
|
|
}
|
|
|
|
export function CommentsSkeleton () {
|
|
return <CommentSkeleton skeletonChildren={7} />
|
|
}
|
|
|
|
export function CommentsQuery ({ query, ...props }) {
|
|
const { loading, error, data } = useQuery(query)
|
|
|
|
if (error) return <div>Failed to load!</div>
|
|
if (loading) {
|
|
return <CommentsSkeleton />
|
|
}
|
|
|
|
return <Comments comments={data.comments} {...props} />
|
|
}
|