27 lines
909 B
JavaScript
27 lines
909 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import {
|
||
|
selectNotifications,
|
||
|
selectNotificationsFiltered,
|
||
|
selectIsFetchingNotifications,
|
||
|
selectUnreadNotificationCount,
|
||
|
selectUnseenNotificationCount,
|
||
|
selectNotificationCategories,
|
||
|
} from 'redux/selectors/notifications';
|
||
|
import { doReadNotifications, doNotificationList, doSeeAllNotifications } from 'redux/actions/notifications';
|
||
|
import NotificationsPage from './view';
|
||
|
|
||
|
const select = (state) => ({
|
||
|
notifications: selectNotifications(state),
|
||
|
notificationsFiltered: selectNotificationsFiltered(state),
|
||
|
notificationCategories: selectNotificationCategories(state),
|
||
|
fetching: selectIsFetchingNotifications(state),
|
||
|
unreadCount: selectUnreadNotificationCount(state),
|
||
|
unseenCount: selectUnseenNotificationCount(state),
|
||
|
});
|
||
|
|
||
|
export default connect(select, {
|
||
|
doReadNotifications,
|
||
|
doNotificationList,
|
||
|
doSeeAllNotifications,
|
||
|
})(NotificationsPage);
|