lbry-desktop/ui/page/notifications/view.jsx

183 lines
5.9 KiB
React
Raw Normal View History

2020-07-23 16:22:57 +02:00
// @flow
2020-08-11 22:32:03 +02:00
import * as ICONS from 'constants/icons';
2020-07-23 16:22:57 +02:00
import React from 'react';
import Page from 'component/page';
import Spinner from 'component/spinner';
import { FormField } from 'component/common/form';
2020-07-23 16:22:57 +02:00
import Notification from 'component/notification';
2020-08-11 22:32:03 +02:00
import Button from 'component/button';
import usePersistedState from 'effects/use-persisted-state';
2020-08-21 21:44:54 +02:00
import Yrbl from 'component/yrbl';
import * as NOTIFICATIONS from 'constants/notifications';
import useFetched from 'effects/use-fetched';
2021-08-27 12:29:58 +02:00
import { RULE } from 'constants/notifications';
import BrowserNotificationBanner from '$web/component/browserNotificationBanner';
2020-07-23 16:22:57 +02:00
type Props = {
2020-08-21 21:44:54 +02:00
notifications: Array<Notification>,
notificationsFiltered: Array<Notification>,
notificationCategories: Array<NotificationCategory>,
2020-07-23 16:22:57 +02:00
fetching: boolean,
2020-08-10 22:47:39 +02:00
unreadCount: number,
2020-08-21 21:44:54 +02:00
unseenCount: number,
doSeeAllNotifications: () => void,
2020-08-10 22:47:39 +02:00
doReadNotifications: () => void,
doNotificationList: (?Array<string>) => void,
doNotificationCategories: () => void,
2021-08-27 12:29:58 +02:00
activeChannel: ?ChannelClaim,
doCommentReactList: (Array<string>) => Promise<any>,
2020-07-23 16:22:57 +02:00
};
export default function NotificationsPage(props: Props) {
const {
notifications,
notificationsFiltered,
fetching,
unreadCount,
unseenCount,
doSeeAllNotifications,
doReadNotifications,
doNotificationList,
doNotificationCategories,
notificationCategories,
2021-08-27 12:29:58 +02:00
activeChannel,
doCommentReactList,
} = props;
const [name, setName] = usePersistedState('notifications--rule', NOTIFICATIONS.NOTIFICATION_NAME_ALL);
const isFiltered = name !== NOTIFICATIONS.NOTIFICATION_NAME_ALL;
const list = isFiltered ? notificationsFiltered : notifications;
const fetchedOnce = useFetched(fetching);
const categoriesReady = notificationCategories;
const notificationsReady = !isFiltered || fetchedOnce;
const ready = categoriesReady && notificationsReady;
2021-08-27 12:29:58 +02:00
// Fetch reacts
React.useEffect(() => {
if (ready && !fetching && activeChannel) {
2021-08-27 12:29:58 +02:00
let idsForReactionFetch = [];
list.map((notification) => {
const { notification_rule, notification_parameters } = notification;
const isComment =
notification_rule === RULE.COMMENT ||
notification_rule === RULE.COMMENT_REPLY ||
notification_rule === RULE.CREATOR_COMMENT;
const commentId =
isComment &&
notification_parameters &&
notification_parameters.dynamic &&
notification_parameters.dynamic.hash;
if (commentId) {
idsForReactionFetch.push(commentId);
}
});
if (idsForReactionFetch.length !== 0) {
doCommentReactList(idsForReactionFetch);
}
}
}, [ready, doCommentReactList, list, activeChannel, fetching]);
2021-08-27 12:29:58 +02:00
// Mark all as seen
2020-08-10 22:47:39 +02:00
React.useEffect(() => {
2020-12-14 19:52:17 +01:00
if (unseenCount > 0) {
doSeeAllNotifications();
2020-08-10 22:47:39 +02:00
}
2020-12-14 19:52:17 +01:00
}, [unseenCount, doSeeAllNotifications]);
2020-08-10 22:47:39 +02:00
const stringifiedNotificationCategories = notificationCategories ? JSON.stringify(notificationCategories) : '';
// Fetch filtered notifications
React.useEffect(() => {
if (stringifiedNotificationCategories) {
const arrayNotificationCategories = JSON.parse(stringifiedNotificationCategories);
if (name !== NOTIFICATIONS.NOTIFICATION_NAME_ALL) {
try {
const matchingCategory = arrayNotificationCategories.find((category) => category.name === name);
if (matchingCategory) {
doNotificationList(matchingCategory.types);
}
} catch (e) {
console.error(e); // eslint-disable-line no-console
}
}
}
}, [name, notifications, stringifiedNotificationCategories, doNotificationList]);
React.useEffect(() => {
if (!notificationCategories) {
doNotificationCategories();
}
}, []); // eslint-disable-line react-hooks/exhaustive-deps
return (
<Page className="notification-page">
<BrowserNotificationBanner />
{ready && (
<div className="claim-list__header">
<h1 className="card__title">{__('Notifications')}</h1>
<div className="claim-list__alt-controls--wrap">
{fetching && <Spinner type="small" delayed />}
{unreadCount > 0 && (
<Button
icon={ICONS.EYE}
onClick={doReadNotifications}
button="secondary"
label={__('Mark all as read')}
/>
)}
{notificationCategories && (
<FormField type="select" name="filter" value={name} onChange={(e) => setName(e.target.value)}>
{notificationCategories.map((category) => {
return (
<option key={category.name} value={category.name}>
{__(category.name)}
</option>
);
})}
</FormField>
)}
</div>
</div>
)}
{!ready ? (
<div className="main--empty">
<Spinner />
</div>
) : list && list.length > 0 && !(isFiltered && fetching) ? (
<div className="card">
<div className="notification_list">
2021-08-27 12:29:58 +02:00
{list.map((notification) => {
return <Notification key={notification.id} notification={notification} />;
})}
</div>
</div>
) : (
<div className="main--empty">
{!fetching && (
<Yrbl
title={__('No notifications')}
subtitle={
2021-08-27 12:29:58 +02:00
isFiltered
? __('Try selecting another filter.')
: __("You don't have any notifications yet, but they will be here when you do!")
}
actions={
<div className="section__actions">
<Button button="primary" icon={ICONS.HOME} label={__('Go Home')} navigate="/" />
</div>
}
/>
)}
</div>
)}
2020-07-23 16:22:57 +02:00
</Page>
);
}