// @flow import 'scss/component/_header.scss'; import { ENABLE_UI_NOTIFICATIONS } from 'config'; import { useHistory } from 'react-router'; import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import Icon from 'component/common/icon'; import NotificationBubble from 'component/notificationBubble'; import React from 'react'; import Tooltip from 'component/common/tooltip'; import { formatLbryUrlForWeb } from 'util/url'; import Notification from 'component/notification'; import DateTime from 'component/dateTime'; import ChannelThumbnail from 'component/channelThumbnail'; import { Menu as MuiMenu } from '@mui/material'; import Button from 'component/button'; import ClickAwayListener from '@mui/material/ClickAwayListener'; import { RULE } from 'constants/notifications'; import UriIndicator from 'component/uriIndicator'; import { generateNotificationTitle } from '../notification/helpers/title'; import { generateNotificationText } from '../notification/helpers/text'; import { parseURI } from 'util/lbryURI'; type Props = { notifications: Array, unseenCount: number, user: ?User, authenticated: boolean, readNotification: (Array) => void, seeNotification: (Array) => void, deleteNotification: (number) => void, doSeeAllNotifications: () => void, }; export default function NotificationHeaderButton(props: Props) { const { notifications, unseenCount, user, authenticated, readNotification, seeNotification, deleteNotification, doSeeAllNotifications, } = props; const list = notifications.slice(0, 20); const { push } = useHistory(); const notificationsEnabled = authenticated && (ENABLE_UI_NOTIFICATIONS || (user && user.experimental_ui)); const [anchorEl, setAnchorEl] = React.useState(null); const [clicked, setClicked] = React.useState(false); const open = Boolean(anchorEl); const handleClick = (event) => setAnchorEl(!anchorEl ? event.currentTarget : null); const handleClose = () => setAnchorEl(null); const menuProps = { id: 'notification-menu', anchorEl, open, onClose: handleClose, MenuListProps: { 'aria-labelledby': 'basic-button', sx: { padding: 'var(--spacing-xs)' }, }, className: 'menu__list--header menu__list--notifications', sx: { 'z-index': 2 }, PaperProps: { className: 'MuiMenu-list--paper' }, disableScrollLock: true, }; const handleClickAway = () => { if (!clicked) { if (open) setClicked(true); } else { setAnchorEl(null); setClicked(false); } }; const creatorIcon = (channelUrl, channelThumbnail) => ( ); function handleMenuClick() { if (unseenCount > 0) doSeeAllNotifications(); push(`/$/${PAGES.NOTIFICATIONS}`); } function handleNotificationDelete(e, id) { e.stopPropagation(); deleteNotification(id); } React.useEffect(() => { if (!open) setClicked(false); }, [open]); if (!notificationsEnabled) return null; function handleNotificationClick(notification) { const { id, notification_parameters, is_read } = notification; if (!is_read) { seeNotification([id]); readNotification([id]); } let notificationLink = formatLbryUrlForWeb(notification_parameters.device.target); if (notification_parameters.dynamic.hash) { notificationLink += '?lc=' + notification_parameters.dynamic.hash + '&view=discussion'; } push(notificationLink); } function menuEntry(notification) { const { id, active_at, notification_rule, notification_parameters, is_read, type } = notification; let channelUrl; let icon; switch (notification_rule) { case RULE.CREATOR_SUBSCRIBER: icon = ; break; case RULE.COMMENT: case RULE.CREATOR_COMMENT: channelUrl = notification_parameters.dynamic.comment_author; icon = creatorIcon(channelUrl, notification_parameters?.dynamic?.comment_author_thumbnail); break; case RULE.COMMENT_REPLY: channelUrl = notification_parameters.dynamic.reply_author; icon = creatorIcon(channelUrl, notification_parameters?.dynamic?.comment_author_thumbnail); break; case RULE.NEW_CONTENT: channelUrl = notification_parameters.dynamic.channel_url; icon = creatorIcon(channelUrl, notification_parameters?.dynamic?.channel_thumbnail); break; case RULE.NEW_LIVESTREAM: channelUrl = notification_parameters.dynamic.channel_url; icon = creatorIcon(channelUrl, notification_parameters?.dynamic?.channel_thumbnail); break; case RULE.WEEKLY_WATCH_REMINDER: case RULE.DAILY_WATCH_AVAILABLE: case RULE.DAILY_WATCH_REMIND: case RULE.MISSED_OUT: case RULE.REWARDS_APPROVAL_PROMPT: icon = ; break; case RULE.FIAT_TIP: icon = ; break; default: icon = ; } let channelName; if (channelUrl) { try { ({ claimName: channelName } = parseURI(channelUrl)); } catch (e) {} } return ( handleNotificationClick(notification)} key={id}>
{icon}
{generateNotificationTitle(notification_rule, notification_parameters, channelName)}
{generateNotificationText(notification_rule, notification_parameters)}
{!is_read && }
handleNotificationDelete(e, id)}>
); } return ( notificationsEnabled && ( <>
{list.map((notification) => { return menuEntry(notification); })} {list.length === 0 && (
{__('No notifications')}
{__("You don't have any notifications yet, but they will be here when you do!")}
)}
{__('View all')}
) ); }