stacker.news/components/notifications.js

85 lines
2.5 KiB
JavaScript
Raw Normal View History

import { useQuery } from '@apollo/client'
2021-08-17 18:15:24 +00:00
import Comment, { CommentSkeleton } from './comment'
import Item from './item'
2021-08-17 18:15:24 +00:00
import { NOTIFICATIONS } from '../fragments/notifications'
2021-08-17 23:59:22 +00:00
import { useRouter } from 'next/router'
2021-09-30 15:46:58 +00:00
import MoreFooter from './more-footer'
2021-08-17 18:15:24 +00:00
function Notification ({ n }) {
2021-08-17 23:59:22 +00:00
const router = useRouter()
2021-08-20 00:13:32 +00:00
return (
<div
2021-11-04 18:22:03 +00:00
className='clickToContext'
2021-08-20 00:13:32 +00:00
onClick={() => {
if (n.__typename === 'Reply' || !n.item.title) {
router.push({
pathname: '/items/[id]',
query: { id: n.item.parentId, commentId: n.item.id }
}, `/items/${n.item.parentId}`)
} else {
router.push({
pathname: '/items/[id]',
query: { id: n.item.id }
}, `/items/${n.item.id}`)
2021-08-20 00:13:32 +00:00
}
}}
>
{n.__typename === 'Votification' &&
<small className='font-weight-bold text-success ml-2'>your {n.item.title ? 'post' : 'reply'} stacked {n.earnedSats} sats</small>}
{n.__typename === 'Mention' &&
<small className='font-weight-bold text-info ml-2'>you were mentioned in</small>}
<div className={
n.__typename === 'Votification' || n.__typename === 'Mention'
? `ml-sm-4 ml-3 ${n.item.title ? 'pb-2' : ''}`
: ''
}
>
{n.item.title
? <Item item={n.item} />
: <Comment item={n.item} noReply includeParent rootText={n.__typename === 'Reply' ? 'replying to you on:' : undefined} clickToContext />}
</div>
</div>
)
}
2021-09-30 15:46:58 +00:00
export default function Notifications ({ notifications, cursor, lastChecked, variables }) {
2021-10-26 20:49:37 +00:00
const { data, fetchMore } = useQuery(NOTIFICATIONS, { variables })
2021-08-20 00:13:32 +00:00
2021-09-30 15:46:58 +00:00
if (data) {
({ notifications: { notifications, cursor } } = data)
}
2021-08-20 00:13:32 +00:00
const [fresh, old] =
notifications.reduce((result, n) => {
result[new Date(n.sortTime).getTime() > lastChecked ? 0 : 1].push(n)
return result
},
[[], []])
2021-08-17 23:59:22 +00:00
2021-08-17 18:15:24 +00:00
return (
<>
{/* XXX we shouldn't use the index but we don't have a unique id in this union yet */}
2021-11-04 18:22:03 +00:00
<div className='fresh'>
2021-08-20 00:13:32 +00:00
{fresh.map((n, i) => (
<Notification n={n} key={i} />
))}
</div>
{old.map((n, i) => (
<Notification n={n} key={i} />
2021-08-17 18:15:24 +00:00
))}
2021-09-30 15:46:58 +00:00
<MoreFooter cursor={cursor} fetchMore={fetchMore} Skeleton={CommentsFlatSkeleton} />
2021-08-17 18:15:24 +00:00
</>
)
}
function CommentsFlatSkeleton () {
const comments = new Array(21).fill(null)
return (
<div>{comments.map((_, i) => (
<CommentSkeleton key={i} skeletonChildren={0} />
))}
</div>
)
}