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';
|
2021-03-05 05:02:20 +01:00
|
|
|
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';
|
2021-03-05 05:02:20 +01:00
|
|
|
import usePersistedState from 'effects/use-persisted-state';
|
2020-08-21 21:44:54 +02:00
|
|
|
import Yrbl from 'component/yrbl';
|
2021-03-05 05:02:20 +01:00
|
|
|
import * as NOTIFICATIONS from 'constants/notifications';
|
2021-03-25 05:37:53 +01:00
|
|
|
import useFetched from 'effects/use-fetched';
|
|
|
|
|
|
|
|
const RULE_LABELS = {
|
|
|
|
[NOTIFICATIONS.NOTIFICATION_RULE_NONE]: 'All',
|
|
|
|
[NOTIFICATIONS.NOTIFICATION_RULE_COMMENTS]: 'Comments',
|
|
|
|
[NOTIFICATIONS.NOTIFICATION_RULE_REPLIES]: 'Replies',
|
|
|
|
[NOTIFICATIONS.NOTIFICATION_RULE_FOLLOWERS]: 'Followers',
|
|
|
|
[NOTIFICATIONS.NOTIFICATION_RULE_NEW_CONTENT]: 'New content',
|
|
|
|
[NOTIFICATIONS.NOTIFICATION_RULE_OTHERS]: 'Others',
|
|
|
|
};
|
2020-07-23 16:22:57 +02:00
|
|
|
|
|
|
|
type Props = {
|
2020-08-21 21:44:54 +02:00
|
|
|
notifications: Array<Notification>,
|
2021-03-25 05:37:53 +01:00
|
|
|
notificationsFiltered: Array<Notification>,
|
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,
|
2021-03-25 05:37:53 +01:00
|
|
|
doNotificationList: (string) => void,
|
2020-07-23 16:22:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function NotificationsPage(props: Props) {
|
2021-03-25 05:37:53 +01:00
|
|
|
const {
|
|
|
|
notifications,
|
|
|
|
notificationsFiltered,
|
|
|
|
fetching,
|
|
|
|
unreadCount,
|
|
|
|
unseenCount,
|
|
|
|
doSeeAllNotifications,
|
|
|
|
doReadNotifications,
|
|
|
|
doNotificationList,
|
|
|
|
} = props;
|
2021-03-05 05:02:20 +01:00
|
|
|
|
2021-03-25 05:37:53 +01:00
|
|
|
const initialFetchDone = useFetched(fetching);
|
|
|
|
const [rule, setRule] = usePersistedState('notifications--rule', NOTIFICATIONS.NOTIFICATION_RULE_NONE);
|
|
|
|
const isFiltered = rule !== NOTIFICATIONS.NOTIFICATION_RULE_NONE;
|
|
|
|
const list = isFiltered ? notificationsFiltered : notifications;
|
2021-03-05 05:02:20 +01:00
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
if (unseenCount > 0 || unreadCount > 0) {
|
|
|
|
// If there are unread notifications when entering the page, reset to All.
|
2021-03-25 05:37:53 +01:00
|
|
|
setRule(NOTIFICATIONS.NOTIFICATION_RULE_NONE);
|
2021-03-05 05:02:20 +01:00
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
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
|
|
|
|
2021-03-25 05:37:53 +01:00
|
|
|
React.useEffect(() => {
|
|
|
|
if (rule && rule !== '') {
|
|
|
|
// Fetch filtered list when:
|
|
|
|
// (1) 'rule' changed
|
|
|
|
// (2) new "all" notifications received (e.g. from websocket).
|
|
|
|
doNotificationList(rule);
|
|
|
|
}
|
|
|
|
}, [rule, notifications]);
|
|
|
|
|
|
|
|
const notificationListElement = (
|
|
|
|
<>
|
|
|
|
<div className="claim-list__header">
|
|
|
|
<h1 className="card__title">{__('Notifications')}</h1>
|
|
|
|
<div className="claim-list__alt-controls--wrap">
|
|
|
|
{fetching && <Spinner type="small" />}
|
|
|
|
|
|
|
|
{unreadCount > 0 && (
|
|
|
|
<Button icon={ICONS.EYE} onClick={doReadNotifications} button="secondary" label={__('Mark all as read')} />
|
|
|
|
)}
|
|
|
|
<FormField
|
|
|
|
className="notification__filter"
|
|
|
|
type="select"
|
|
|
|
name="filter"
|
|
|
|
value={rule}
|
|
|
|
onChange={(e) => setRule(e.target.value)}
|
|
|
|
>
|
|
|
|
{Object.entries(RULE_LABELS).map((r) => {
|
|
|
|
return (
|
|
|
|
<option key={r[0]} value={r[0]}>
|
|
|
|
{__(String(r[1]))}
|
|
|
|
</option>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</FormField>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{list && list.length > 0 ? (
|
|
|
|
<div className="card">
|
|
|
|
<div className="notification_list">
|
|
|
|
{list.map((notification, index) => {
|
|
|
|
return <Notification key={notification.id} notification={notification} />;
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div className="main--empty">
|
|
|
|
{!fetching && (
|
|
|
|
<Yrbl
|
|
|
|
title={__('No notifications')}
|
|
|
|
subtitle={
|
|
|
|
<p>
|
|
|
|
{isFiltered
|
|
|
|
? __('Try selecting another filter.')
|
|
|
|
: __("You don't have any notifications yet, but they will be here when you do!")}
|
|
|
|
</p>
|
|
|
|
}
|
|
|
|
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
|
|
|
return (
|
|
|
|
<Page>
|
2021-03-25 05:37:53 +01:00
|
|
|
{initialFetchDone ? (
|
|
|
|
notificationListElement
|
|
|
|
) : fetching ? (
|
2020-07-23 16:22:57 +02:00
|
|
|
<div className="main--empty">
|
|
|
|
<Spinner delayed />
|
|
|
|
</div>
|
2021-03-25 05:37:53 +01:00
|
|
|
) : (
|
|
|
|
notificationListElement
|
2020-07-23 16:22:57 +02:00
|
|
|
)}
|
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
}
|