2022-06-01 13:11:25 +00:00
|
|
|
import { BellIcon } from '@heroicons/react/outline'
|
|
|
|
import clsx from 'clsx'
|
|
|
|
import { Row } from 'web/components/layout/row'
|
|
|
|
import { useEffect, useState } from 'react'
|
2022-07-05 17:29:26 +00:00
|
|
|
import { usePrivateUser, useUser } from 'web/hooks/use-user'
|
2022-06-01 13:11:25 +00:00
|
|
|
import { useRouter } from 'next/router'
|
2022-07-07 20:41:50 +00:00
|
|
|
import { useUnseenPreferredNotificationGroups } from 'web/hooks/use-notifications'
|
2022-07-05 17:29:26 +00:00
|
|
|
import { NOTIFICATIONS_PER_PAGE } from 'web/pages/notifications'
|
|
|
|
import { requestBonuses } from 'web/lib/firebase/api-call'
|
2022-07-07 20:41:50 +00:00
|
|
|
import { PrivateUser } from 'common/user'
|
2022-06-01 13:11:25 +00:00
|
|
|
|
|
|
|
export default function NotificationsIcon(props: { className?: string }) {
|
|
|
|
const user = useUser()
|
2022-07-05 17:29:26 +00:00
|
|
|
const privateUser = usePrivateUser(user?.id)
|
2022-06-06 17:36:59 +00:00
|
|
|
|
2022-07-05 17:29:26 +00:00
|
|
|
useEffect(() => {
|
2022-07-07 20:41:50 +00:00
|
|
|
if (
|
|
|
|
privateUser &&
|
|
|
|
privateUser.lastTimeCheckedBonuses &&
|
|
|
|
Date.now() - privateUser.lastTimeCheckedBonuses > 1000 * 70
|
|
|
|
)
|
|
|
|
requestBonuses({}).catch(() => console.log('no bonuses for you (yet)'))
|
2022-07-05 17:29:26 +00:00
|
|
|
}, [privateUser])
|
|
|
|
|
2022-07-07 20:41:50 +00:00
|
|
|
return (
|
|
|
|
<Row className={clsx('justify-center')}>
|
|
|
|
<div className={'relative'}>
|
|
|
|
{privateUser && <UnseenNotificationsBubble privateUser={privateUser} />}
|
|
|
|
<BellIcon className={clsx(props.className)} />
|
|
|
|
</div>
|
|
|
|
</Row>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
function UnseenNotificationsBubble(props: { privateUser: PrivateUser }) {
|
2022-06-01 13:11:25 +00:00
|
|
|
const router = useRouter()
|
2022-07-07 20:41:50 +00:00
|
|
|
const { privateUser } = props
|
|
|
|
const [seen, setSeen] = useState(false)
|
|
|
|
|
2022-06-01 13:11:25 +00:00
|
|
|
useEffect(() => {
|
2022-06-06 17:36:59 +00:00
|
|
|
if (router.pathname.endsWith('notifications')) return setSeen(true)
|
|
|
|
else setSeen(false)
|
2022-06-01 13:11:25 +00:00
|
|
|
}, [router.pathname])
|
|
|
|
|
2022-07-07 20:41:50 +00:00
|
|
|
const notifications = useUnseenPreferredNotificationGroups(privateUser)
|
|
|
|
if (!notifications || notifications.length === 0 || seen) {
|
|
|
|
return <div />
|
|
|
|
}
|
|
|
|
|
2022-06-01 13:11:25 +00:00
|
|
|
return (
|
2022-07-07 20:41:50 +00:00
|
|
|
<div className="-mt-0.75 absolute ml-3.5 min-w-[15px] rounded-full bg-indigo-500 p-[2px] text-center text-[10px] leading-3 text-white lg:-mt-1 lg:ml-2">
|
|
|
|
{notifications.length > NOTIFICATIONS_PER_PAGE
|
|
|
|
? `${NOTIFICATIONS_PER_PAGE}+`
|
|
|
|
: notifications.length}
|
|
|
|
</div>
|
2022-06-01 13:11:25 +00:00
|
|
|
)
|
|
|
|
}
|