lbry-desktop/ui/component/notificationHeaderButton/view.jsx

51 lines
1.2 KiB
React
Raw Normal View History

2020-07-23 10:22:57 -04:00
// @flow
import * as PAGES from 'constants/pages';
import * as ICONS from 'constants/icons';
import React from 'react';
import Icon from 'component/common/icon';
2020-08-11 16:32:03 -04:00
import NotificationBubble from 'component/notificationBubble';
2020-07-23 10:22:57 -04:00
import Button from 'component/button';
import { useHistory } from 'react-router';
type Props = {
2020-12-14 13:52:17 -05:00
unseenCount: number,
doSeeAllNotifications: () => void,
2020-07-23 10:22:57 -04:00
user: ?User,
};
export default function NotificationHeaderButton(props: Props) {
2020-08-21 11:49:13 -04:00
const {
2020-12-14 13:52:17 -05:00
unseenCount,
2020-08-21 11:49:13 -04:00
// notifications,
// fetching,
2020-12-14 13:52:17 -05:00
doSeeAllNotifications,
2020-08-21 11:49:13 -04:00
user,
} = props;
2020-07-23 10:22:57 -04:00
const notificationsEnabled = user && user.experimental_ui;
const { push } = useHistory();
function handleMenuClick() {
2020-12-14 13:52:17 -05:00
if (unseenCount > 0) {
doSeeAllNotifications();
2020-07-23 10:22:57 -04:00
}
push(`/$/${PAGES.NOTIFICATIONS}`);
}
if (!notificationsEnabled) {
return null;
}
return (
<Button
onClick={handleMenuClick}
aria-label={__('Notifications')}
title={__('Notifications')}
2020-12-11 13:33:27 -05:00
className="header__navigation-item menu__title header__navigation-item--icon mobile-hidden"
2020-07-23 10:22:57 -04:00
>
<Icon size={18} icon={ICONS.NOTIFICATION} aria-hidden />
2020-08-11 16:32:03 -04:00
<NotificationBubble />
2020-07-23 10:22:57 -04:00
</Button>
);
}