163 lines
6.0 KiB
JavaScript
163 lines
6.0 KiB
JavaScript
import { useQuery } from '@apollo/client'
|
|
import Comment, { CommentSkeleton } from './comment'
|
|
import Item from './item'
|
|
import ItemJob from './item-job'
|
|
import { NOTIFICATIONS } from '../fragments/notifications'
|
|
import { useRouter } from 'next/router'
|
|
import MoreFooter from './more-footer'
|
|
import Invite from './invite'
|
|
import { ignoreClick } from '../lib/clicks'
|
|
import { timeSince } from '../lib/time'
|
|
import Link from 'next/link'
|
|
import Check from '../svgs/check-double-line.svg'
|
|
import HandCoin from '../svgs/hand-coin-fill.svg'
|
|
import { COMMENT_DEPTH_LIMIT } from '../lib/constants'
|
|
|
|
// TODO: oh man, this is a mess ... each notification type should just be a component ...
|
|
function Notification ({ n }) {
|
|
const router = useRouter()
|
|
return (
|
|
<div
|
|
className='clickToContext'
|
|
onClick={e => {
|
|
if (n.__typename === 'Earn') {
|
|
return
|
|
}
|
|
|
|
if (ignoreClick(e)) {
|
|
return
|
|
}
|
|
|
|
if (n.__typename === 'InvoicePaid') {
|
|
router.push(`/invoices/${n.invoice.id}`)
|
|
} else if (n.__typename === 'Invitification') {
|
|
router.push('/invites')
|
|
} else if (!n.item.title) {
|
|
if (n.item.path.split('.').length > COMMENT_DEPTH_LIMIT + 1) {
|
|
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.root.id, commentId: n.item.id }
|
|
}, `/items/${n.item.root.id}`)
|
|
}
|
|
} else {
|
|
router.push({
|
|
pathname: '/items/[id]',
|
|
query: { id: n.item.id }
|
|
}, `/items/${n.item.id}`)
|
|
}
|
|
}}
|
|
>
|
|
{n.__typename === 'Invitification'
|
|
? (
|
|
<>
|
|
<small className='font-weight-bold text-secondary ml-2'>
|
|
your invite has been redeemed by {n.invite.invitees.length} users
|
|
</small>
|
|
<div className='ml-4 mr-2 mt-1'>
|
|
<Invite
|
|
invite={n.invite} active={
|
|
!n.invite.revoked &&
|
|
!(n.invite.limit && n.invite.invitees.length >= n.invite.limit)
|
|
}
|
|
/>
|
|
</div>
|
|
</>
|
|
)
|
|
: n.__typename === 'Earn'
|
|
? (
|
|
<div className='d-flex'>
|
|
<HandCoin className='align-self-center fill-boost mx-1' width={24} height={24} style={{ flex: '0 0 24px', transform: 'rotateY(180deg)' }} />
|
|
<div className='ml-2'>
|
|
<div className='font-weight-bold text-boost'>
|
|
you stacked {n.earnedSats} sats <small className='text-muted ml-1'>{timeSince(new Date(n.sortTime))}</small>
|
|
</div>
|
|
<div className='pb-1' style={{ lineHeight: '140%' }}>
|
|
SN distributes the sats it earns back to its best users daily. These sats come from <Link href='/~jobs' passHref><a>jobs</a></Link>, boost, and posting fees.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
: n.__typename === 'InvoicePaid'
|
|
? (
|
|
<div className='font-weight-bold text-info ml-2 py-1'>
|
|
<Check className='fill-info mr-1' />{n.earnedSats} sats were deposited in your account
|
|
<small className='text-muted ml-1'>{timeSince(new Date(n.sortTime))}</small>
|
|
</div>)
|
|
: (
|
|
<>
|
|
{n.__typename === 'Votification' &&
|
|
<small className='font-weight-bold text-success ml-2'>
|
|
your {n.item.title ? 'post' : 'reply'} {n.item.fwdUser ? 'forwarded' : 'stacked'} {n.earnedSats} sats{n.item.fwdUser && ` to @${n.item.fwdUser.name}`}
|
|
</small>}
|
|
{n.__typename === 'Mention' &&
|
|
<small className='font-weight-bold text-info ml-2'>
|
|
you were mentioned in
|
|
</small>}
|
|
{n.__typename === 'JobChanged' &&
|
|
<small className={`font-weight-bold text-${n.item.status === 'NOSATS' ? 'danger' : 'success'} ml-1`}>
|
|
{n.item.status === 'NOSATS'
|
|
? 'your job ran out of sats'
|
|
: 'your job is active again'}
|
|
</small>}
|
|
<div className={n.__typename === 'Votification' || n.__typename === 'Mention' || n.__typename === 'JobChanged' ? '' : 'py-2'}>
|
|
{n.item.maxBid
|
|
? <ItemJob item={n.item} />
|
|
: n.item.title
|
|
? <Item item={n.item} />
|
|
: (
|
|
<div className='pb-2'>
|
|
<Comment item={n.item} noReply includeParent rootText={n.__typename === 'Reply' ? 'replying on:' : undefined} clickToContext />
|
|
</div>)}
|
|
</div>
|
|
</>)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default function Notifications ({ notifications, earn, cursor, lastChecked, variables }) {
|
|
const { data, fetchMore } = useQuery(NOTIFICATIONS, { variables })
|
|
|
|
if (data) {
|
|
({ notifications: { notifications, earn, cursor } } = data)
|
|
}
|
|
|
|
const [fresh, old] =
|
|
notifications.reduce((result, n) => {
|
|
result[new Date(n.sortTime).getTime() > lastChecked ? 0 : 1].push(n)
|
|
return result
|
|
},
|
|
[[], []])
|
|
|
|
return (
|
|
<>
|
|
{/* XXX we shouldn't use the index but we don't have a unique id in this union yet */}
|
|
<div className='fresh'>
|
|
{earn && <Notification n={earn} key='earn' />}
|
|
{fresh.map((n, i) => (
|
|
<Notification n={n} key={i} />
|
|
))}
|
|
</div>
|
|
{old.map((n, i) => (
|
|
<Notification n={n} key={i} />
|
|
))}
|
|
<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>
|
|
)
|
|
}
|