stacker.news/components/comments.js

37 lines
956 B
JavaScript
Raw Normal View History

2021-04-22 17:14:32 -05:00
import { useQuery } from '@apollo/client'
import { useRouter } from 'next/router'
2021-06-24 18:56:01 -05:00
import { useEffect } from 'react'
2021-04-22 17:14:32 -05:00
import Comment, { CommentSkeleton } from './comment'
2021-04-15 14:41:02 -05:00
2021-04-26 19:55:48 -05:00
export default function Comments ({ comments, ...props }) {
2021-06-24 18:56:01 -05:00
useEffect(() => {
// Your code here
const hash = window.location.hash
if (hash) {
document.querySelector(hash).scrollIntoView({ behavior: 'smooth' })
}
}, [])
2021-04-26 19:55:48 -05:00
return comments.map(item => (
2021-04-28 14:30:14 -05:00
<Comment key={item.id} item={item} {...props} />
2021-04-26 19:55:48 -05:00
))
}
export function CommentsSkeleton () {
2021-05-05 13:13:14 -05:00
return <CommentSkeleton skeletonChildren={7} />
2021-04-26 19:55:48 -05:00
}
export function CommentsQuery ({ query, ...props }) {
const router = useRouter()
const { error, data } = useQuery(query, {
fetchPolicy: router.query.cache ? 'cache-first' : undefined
})
2021-04-17 13:15:18 -05:00
2021-04-22 17:14:32 -05:00
if (error) return <div>Failed to load!</div>
if (!data) {
2021-04-26 19:55:48 -05:00
return <CommentsSkeleton />
2021-04-22 17:14:32 -05:00
}
2021-04-15 14:41:02 -05:00
2021-04-26 19:55:48 -05:00
return <Comments comments={data.comments} {...props} />
2021-04-15 14:41:02 -05:00
}