|
|
|
@ -60,8 +60,8 @@ const mapStateToProps = state => ({ |
|
|
|
|
isUnread: state.getIn(['notifications', 'unread']) > 0 || state.getIn(['notifications', 'pendingItems']).size > 0, |
|
|
|
|
hasMore: state.getIn(['notifications', 'hasMore']), |
|
|
|
|
numPending: state.getIn(['notifications', 'pendingItems'], ImmutableList()).size, |
|
|
|
|
lastReadId: state.getIn(['notifications', 'readMarkerId']), |
|
|
|
|
canMarkAsRead: state.getIn(['notifications', 'readMarkerId']) !== '0' && getNotifications(state).some(item => item !== null && compareId(item.get('id'), state.getIn(['notifications', 'readMarkerId'])) > 0), |
|
|
|
|
lastReadId: state.getIn(['settings', 'notifications', 'showUnread']) ? state.getIn(['notifications', 'readMarkerId']) : '0', |
|
|
|
|
canMarkAsRead: state.getIn(['settings', 'notifications', 'showUnread']) && state.getIn(['notifications', 'readMarkerId']) !== '0' && getNotifications(state).some(item => item !== null && compareId(item.get('id'), state.getIn(['notifications', 'readMarkerId'])) > 0), |
|
|
|
|
needsNotificationPermission: state.getIn(['settings', 'notifications', 'alerts']).includes(true) && state.getIn(['notifications', 'browserSupport']) && state.getIn(['notifications', 'browserPermission']) === 'default' && !state.getIn(['settings', 'notifications', 'dismissPermissionBanner']), |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|