54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import { useQuery } from '@apollo/client'
|
|
import { MORE_FLAT_COMMENTS } from '../fragments/comments'
|
|
import Comment, { CommentSkeleton } from './comment'
|
|
import styles from './notifications.module.css'
|
|
import { useRouter } from 'next/router'
|
|
import MoreFooter from './more-footer'
|
|
|
|
export default function CommentsFlat ({ variables, comments, cursor, ...props }) {
|
|
const router = useRouter()
|
|
const { data, fetchMore } = useQuery(MORE_FLAT_COMMENTS, {
|
|
variables,
|
|
fetchPolicy: router.query.cache ? 'cache-first' : undefined
|
|
})
|
|
|
|
if (!data && !comments) {
|
|
return <CommentsFlatSkeleton />
|
|
}
|
|
|
|
if (data) {
|
|
({ moreFlatComments: { comments, cursor } } = data)
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{comments.map(item => (
|
|
<div
|
|
key={item.id}
|
|
className={styles.clickToContext}
|
|
onClick={() => {
|
|
router.push({
|
|
pathname: '/items/[id]',
|
|
query: { id: item.parentId, commentId: item.id }
|
|
}, `/items/${item.parentId}`)
|
|
}}
|
|
>
|
|
<Comment item={item} {...props} />
|
|
</div>
|
|
))}
|
|
<MoreFooter cursor={cursor} fetchMore={fetchMore} Skeleton={CommentsFlatSkeleton} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
function CommentsFlatSkeleton () {
|
|
const comments = new Array(21).fill(null)
|
|
|
|
return (
|
|
<div>{comments.map((_, i) => (
|
|
<CommentSkeleton key={i} skeletonChildren={0} />
|
|
))}
|
|
</div>
|
|
)
|
|
}
|