2017-05-03 00:04:16 +00:00
import React from 'react' ;
2016-11-20 18:39:18 +00:00
import { connect } from 'react-redux' ;
2020-01-26 11:17:20 +00:00
import classNames from 'classnames' ;
2017-04-21 18:05:35 +00:00
import PropTypes from 'prop-types' ;
2016-11-20 18:39:18 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-12-04 07:26:40 +00:00
import Column from 'flavours/glitch/components/column' ;
import ColumnHeader from 'flavours/glitch/components/column_header' ;
2017-07-21 18:33:16 +00:00
import {
2017-07-30 16:36:28 +00:00
enterNotificationClearingMode ,
2017-07-21 18:33:16 +00:00
expandNotifications ,
scrollTopNotifications ,
2018-09-06 13:47:13 +00:00
mountNotifications ,
unmountNotifications ,
2019-07-16 04:30:47 +00:00
loadPending ,
2020-09-15 21:42:58 +00:00
markNotificationsAsRead ,
2017-12-04 07:26:40 +00:00
} from 'flavours/glitch/actions/notifications' ;
import { addColumn , removeColumn , moveColumn } from 'flavours/glitch/actions/columns' ;
2020-09-17 09:27:20 +00:00
import { submitMarkers } from 'flavours/glitch/actions/markers' ;
2017-11-18 03:11:18 +00:00
import NotificationContainer from './containers/notification_container' ;
2017-02-18 01:37:59 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-01-02 13:09:57 +00:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2018-12-18 16:22:01 +00:00
import FilterBarContainer from './containers/filter_bar_container' ;
2017-01-02 13:09:57 +00:00
import { createSelector } from 'reselect' ;
2017-07-10 23:00:14 +00:00
import { List as ImmutableList } from 'immutable' ;
2017-06-24 00:43:26 +00:00
import { debounce } from 'lodash' ;
2017-12-04 07:26:40 +00:00
import ScrollableList from 'flavours/glitch/components/scrollable_list' ;
2018-05-27 18:23:56 +00:00
import LoadGap from 'flavours/glitch/components/load_gap' ;
2020-01-26 11:17:20 +00:00
import Icon from 'flavours/glitch/components/icon' ;
2022-10-11 09:39:52 +00:00
import compareId from 'flavours/glitch/compare_id' ;
2020-10-15 14:24:47 +00:00
import NotificationsPermissionBanner from './components/notifications_permission_banner' ;
2022-10-04 18:13:23 +00:00
import NotSignedInIndicator from 'flavours/glitch/components/not_signed_in_indicator' ;
import { Helmet } from 'react-helmet' ;
2020-01-26 11:17:20 +00:00
import NotificationPurgeButtonsContainer from 'flavours/glitch/containers/notification_purge_buttons_container' ;
2016-11-20 18:39:18 +00:00
const messages = defineMessages ( {
2017-03-02 18:24:12 +00:00
title : { id : 'column.notifications' , defaultMessage : 'Notifications' } ,
2020-01-26 11:17:20 +00:00
enterNotifCleaning : { id : 'notification_purge.start' , defaultMessage : 'Enter notification cleaning mode' } ,
2020-09-15 21:42:58 +00:00
markAsRead : { id : 'notifications.mark_as_read' , defaultMessage : 'Mark every notification as read' } ,
2016-11-20 18:39:18 +00:00
} ) ;
2020-12-09 18:16:30 +00:00
const getExcludedTypes = createSelector ( [
state => state . getIn ( [ 'settings' , 'notifications' , 'shows' ] ) ,
] , ( shows ) => {
return ImmutableList ( shows . filter ( item => ! item ) . keys ( ) ) ;
} ) ;
2017-01-02 13:09:57 +00:00
const getNotifications = createSelector ( [
2018-12-18 16:22:01 +00:00
state => state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'show' ] ) ,
state => state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'active' ] ) ,
2020-12-09 18:16:30 +00:00
getExcludedTypes ,
2017-05-20 15:31:47 +00:00
state => state . getIn ( [ 'notifications' , 'items' ] ) ,
2018-12-18 16:22:01 +00:00
] , ( showFilterBar , allowedType , excludedTypes , notifications ) => {
if ( ! showFilterBar || allowedType === 'all' ) {
// used if user changed the notification settings after loading the notifications from the server
// otherwise a list of notifications will come pre-filtered from the backend
// we need to turn it off for FilterBar in order not to block ourselves from seeing a specific category
return notifications . filterNot ( item => item !== null && excludedTypes . includes ( item . get ( 'type' ) ) ) ;
}
2020-09-16 18:17:16 +00:00
return notifications . filter ( item => item === null || allowedType === item . get ( 'type' ) ) ;
2018-12-18 16:22:01 +00:00
} ) ;
2018-05-27 17:30:52 +00:00
2016-11-20 18:39:18 +00:00
const mapStateToProps = state => ( {
2018-12-18 16:22:01 +00:00
showFilterBar : state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'show' ] ) ,
2017-01-26 03:30:40 +00:00
notifications : getNotifications ( state ) ,
2017-07-21 18:33:16 +00:00
localSettings : state . get ( 'local_settings' ) ,
2022-11-05 12:45:06 +00:00
isLoading : state . getIn ( [ 'notifications' , 'isLoading' ] , 0 ) > 0 ,
2019-09-16 13:45:06 +00:00
isUnread : state . getIn ( [ 'notifications' , 'unread' ] ) > 0 || state . getIn ( [ 'notifications' , 'pendingItems' ] ) . size > 0 ,
2018-05-27 17:30:52 +00:00
hasMore : state . getIn ( [ 'notifications' , 'hasMore' ] ) ,
2019-07-16 04:30:47 +00:00
numPending : state . getIn ( [ 'notifications' , 'pendingItems' ] , ImmutableList ( ) ) . size ,
2017-07-21 18:33:16 +00:00
notifCleaningActive : state . getIn ( [ 'notifications' , 'cleaningMode' ] ) ,
2021-03-19 11:47:31 +00:00
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 ) ,
2020-12-15 17:43:54 +00:00
needsNotificationPermission : state . getIn ( [ 'settings' , 'notifications' , 'alerts' ] ) . includes ( true ) && state . getIn ( [ 'notifications' , 'browserSupport' ] ) && state . getIn ( [ 'notifications' , 'browserPermission' ] ) === 'default' && ! state . getIn ( [ 'settings' , 'notifications' , 'dismissPermissionBanner' ] ) ,
2016-11-20 18:39:18 +00:00
} ) ;
2017-07-30 16:36:28 +00:00
/* glitch */
const mapDispatchToProps = dispatch => ( {
onEnterCleaningMode ( yes ) {
dispatch ( enterNotificationClearingMode ( yes ) ) ;
} ,
2020-09-15 21:42:58 +00:00
onMarkAsRead ( ) {
dispatch ( markNotificationsAsRead ( ) ) ;
2020-10-01 02:17:46 +00:00
dispatch ( submitMarkers ( { immediate : true } ) ) ;
2020-09-15 21:42:58 +00:00
} ,
2018-09-06 13:47:13 +00:00
onMount ( ) {
dispatch ( mountNotifications ( ) ) ;
} ,
onUnmount ( ) {
dispatch ( unmountNotifications ( ) ) ;
} ,
2017-07-30 16:36:28 +00:00
dispatch ,
} ) ;
2019-09-09 13:16:08 +00:00
class Notifications extends React . PureComponent {
2016-11-20 18:39:18 +00:00
2022-10-04 18:13:23 +00:00
static contextTypes = {
identity : PropTypes . object ,
} ;
2017-05-12 12:44:10 +00:00
static propTypes = {
2017-06-03 23:39:38 +00:00
columnId : PropTypes . string ,
2017-05-12 12:44:10 +00:00
notifications : ImmutablePropTypes . list . isRequired ,
2018-12-18 16:22:01 +00:00
showFilterBar : PropTypes . bool . isRequired ,
2017-05-12 12:44:10 +00:00
dispatch : PropTypes . func . isRequired ,
intl : PropTypes . object . isRequired ,
isLoading : PropTypes . bool ,
2017-05-20 15:31:47 +00:00
isUnread : PropTypes . bool ,
2017-06-03 23:39:38 +00:00
multiColumn : PropTypes . bool ,
2017-06-05 17:18:26 +00:00
hasMore : PropTypes . bool ,
2019-07-16 04:30:47 +00:00
numPending : PropTypes . number ,
2017-07-21 18:33:16 +00:00
localSettings : ImmutablePropTypes . map ,
notifCleaningActive : PropTypes . bool ,
2017-07-30 16:36:28 +00:00
onEnterCleaningMode : PropTypes . func ,
2018-09-06 13:47:13 +00:00
onMount : PropTypes . func ,
onUnmount : PropTypes . func ,
2020-09-15 16:09:08 +00:00
lastReadId : PropTypes . string ,
2020-09-15 21:42:58 +00:00
canMarkAsRead : PropTypes . bool ,
2020-10-12 22:37:21 +00:00
needsNotificationPermission : PropTypes . bool ,
2017-05-12 12:44:10 +00:00
} ;
static defaultProps = {
2017-05-20 15:31:47 +00:00
trackScroll : true ,
2017-05-12 12:44:10 +00:00
} ;
2020-01-26 11:17:20 +00:00
state = {
animatingNCD : false ,
} ;
2018-05-27 17:30:52 +00:00
handleLoadGap = ( maxId ) => {
this . props . dispatch ( expandNotifications ( { maxId } ) ) ;
} ;
handleLoadOlder = debounce ( ( ) => {
const last = this . props . notifications . last ( ) ;
this . props . dispatch ( expandNotifications ( { maxId : last && last . get ( 'id' ) } ) ) ;
2017-06-24 00:43:26 +00:00
} , 300 , { leading : true } ) ;
2019-07-16 04:30:47 +00:00
handleLoadPending = ( ) => {
this . props . dispatch ( loadPending ( ) ) ;
} ;
2017-08-28 20:23:44 +00:00
handleScrollToTop = debounce ( ( ) => {
this . props . dispatch ( scrollTopNotifications ( true ) ) ;
2017-06-24 00:43:26 +00:00
} , 100 ) ;
2017-08-28 20:23:44 +00:00
handleScroll = debounce ( ( ) => {
this . props . dispatch ( scrollTopNotifications ( false ) ) ;
} , 100 ) ;
2017-01-30 17:04:15 +00:00
2017-06-03 23:39:38 +00:00
handlePin = ( ) => {
const { columnId , dispatch } = this . props ;
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
dispatch ( addColumn ( 'NOTIFICATIONS' , { } ) ) ;
}
2023-02-03 19:52:07 +00:00
} ;
2017-06-03 23:39:38 +00:00
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
2023-02-03 19:52:07 +00:00
} ;
2017-06-03 23:39:38 +00:00
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
2023-02-03 19:52:07 +00:00
} ;
2017-06-03 23:39:38 +00:00
setColumnRef = c => {
this . column = c ;
2023-02-03 19:52:07 +00:00
} ;
2017-06-03 23:39:38 +00:00
2017-10-05 23:07:59 +00:00
handleMoveUp = id => {
2018-05-27 17:30:52 +00:00
const elementIndex = this . props . notifications . findIndex ( item => item !== null && item . get ( 'id' ) === id ) - 1 ;
2019-04-15 18:40:05 +00:00
this . _selectChild ( elementIndex , true ) ;
2023-02-03 19:52:07 +00:00
} ;
2017-10-05 23:07:59 +00:00
handleMoveDown = id => {
2018-05-27 17:30:52 +00:00
const elementIndex = this . props . notifications . findIndex ( item => item !== null && item . get ( 'id' ) === id ) + 1 ;
2019-04-15 18:40:05 +00:00
this . _selectChild ( elementIndex , false ) ;
2023-02-03 19:52:07 +00:00
} ;
2017-10-05 23:07:59 +00:00
2019-04-15 18:40:05 +00:00
_selectChild ( index , align _top ) {
const container = this . column . node ;
const element = container . querySelector ( ` article:nth-of-type( ${ index + 1 } ) .focusable ` ) ;
2017-10-05 23:07:59 +00:00
if ( element ) {
2019-04-15 18:40:05 +00:00
if ( align _top && container . scrollTop > element . offsetTop ) {
element . scrollIntoView ( true ) ;
} else if ( ! align _top && container . scrollTop + container . clientHeight < element . offsetTop + element . offsetHeight ) {
element . scrollIntoView ( false ) ;
}
2017-10-05 23:07:59 +00:00
element . focus ( ) ;
}
}
2018-09-06 13:47:13 +00:00
componentDidMount ( ) {
const { onMount } = this . props ;
if ( onMount ) {
onMount ( ) ;
}
}
componentWillUnmount ( ) {
const { onUnmount } = this . props ;
if ( onUnmount ) {
onUnmount ( ) ;
}
}
2020-01-26 11:17:20 +00:00
handleTransitionEndNCD = ( ) => {
this . setState ( { animatingNCD : false } ) ;
2023-02-03 19:52:07 +00:00
} ;
2020-01-26 11:17:20 +00:00
onEnterCleaningMode = ( ) => {
this . setState ( { animatingNCD : true } ) ;
this . props . onEnterCleaningMode ( ! this . props . notifCleaningActive ) ;
2023-02-03 19:52:07 +00:00
} ;
2020-01-26 11:17:20 +00:00
2020-09-15 21:42:58 +00:00
handleMarkAsRead = ( ) => {
this . props . onMarkAsRead ( ) ;
2023-02-03 19:52:07 +00:00
} ;
2020-09-15 21:42:58 +00:00
2016-11-20 18:39:18 +00:00
render ( ) {
2021-07-13 10:40:15 +00:00
const { intl , notifications , isLoading , isUnread , columnId , multiColumn , hasMore , numPending , showFilterBar , lastReadId , canMarkAsRead , needsNotificationPermission } = this . props ;
2020-01-26 11:17:20 +00:00
const { notifCleaning , notifCleaningActive } = this . props ;
const { animatingNCD } = this . state ;
2017-06-03 23:39:38 +00:00
const pinned = ! ! columnId ;
2021-05-07 12:33:57 +00:00
const emptyMessage = < FormattedMessage id = 'empty_column.notifications' defaultMessage = "You don't have any notifications yet. When other people interact with you, you will see it here." / > ;
2022-10-04 18:13:23 +00:00
const { signedIn } = this . context . identity ;
2017-01-30 17:04:15 +00:00
2017-08-28 20:23:44 +00:00
let scrollableContent = null ;
2017-02-20 23:10:49 +00:00
2022-10-04 18:13:23 +00:00
const filterBarContainer = ( signedIn && showFilterBar )
2018-12-18 16:22:01 +00:00
? ( < FilterBarContainer / > )
: null ;
2017-08-28 20:23:44 +00:00
if ( isLoading && this . scrollableContent ) {
scrollableContent = this . scrollableContent ;
2017-07-05 12:51:53 +00:00
} else if ( notifications . size > 0 || hasMore ) {
2018-05-27 17:30:52 +00:00
scrollableContent = notifications . map ( ( item , index ) => item === null ? (
< LoadGap
key = { 'gap:' + notifications . getIn ( [ index + 1 , 'id' ] ) }
disabled = { isLoading }
maxId = { index > 0 ? notifications . getIn ( [ index - 1 , 'id' ] ) : null }
onClick = { this . handleLoadGap }
/ >
) : (
2017-10-05 23:07:59 +00:00
< NotificationContainer
key = { item . get ( 'id' ) }
notification = { item }
accountId = { item . get ( 'account' ) }
onMoveUp = { this . handleMoveUp }
onMoveDown = { this . handleMoveDown }
2020-09-15 18:54:26 +00:00
unread = { lastReadId !== '0' && compareId ( item . get ( 'id' ) , lastReadId ) > 0 }
2017-10-05 23:07:59 +00:00
/ >
) ) ;
2017-02-18 01:37:59 +00:00
} else {
2017-08-28 20:23:44 +00:00
scrollableContent = null ;
2017-02-18 01:37:59 +00:00
}
2016-11-21 09:03:55 +00:00
2017-08-28 20:23:44 +00:00
this . scrollableContent = scrollableContent ;
2022-10-04 18:13:23 +00:00
let scrollContainer ;
if ( signedIn ) {
scrollContainer = (
< ScrollableList
scrollKey = { ` notifications- ${ columnId } ` }
trackScroll = { ! pinned }
isLoading = { isLoading }
showLoading = { isLoading && notifications . size === 0 }
hasMore = { hasMore }
numPending = { numPending }
prepend = { needsNotificationPermission && < NotificationsPermissionBanner / > }
alwaysPrepend
emptyMessage = { emptyMessage }
onLoadMore = { this . handleLoadOlder }
onLoadPending = { this . handleLoadPending }
onScrollToTop = { this . handleScrollToTop }
onScroll = { this . handleScroll }
bindToDocument = { ! multiColumn }
>
{ scrollableContent }
< / ScrollableList >
) ;
} else {
scrollContainer = < NotSignedInIndicator / > ;
}
2017-05-19 23:26:46 +00:00
2020-09-15 21:42:58 +00:00
const extraButtons = [ ] ;
if ( canMarkAsRead ) {
extraButtons . push (
< button
2022-08-27 13:17:27 +00:00
key = 'mark-as-read'
2020-09-15 21:42:58 +00:00
aria - label = { intl . formatMessage ( messages . markAsRead ) }
title = { intl . formatMessage ( messages . markAsRead ) }
onClick = { this . handleMarkAsRead }
className = 'column-header__button'
>
< Icon id = 'check' / >
2022-08-27 13:17:27 +00:00
< / button > ,
2020-09-15 21:42:58 +00:00
) ;
}
2020-01-26 11:17:20 +00:00
const notifCleaningButtonClassName = classNames ( 'column-header__button' , {
'active' : notifCleaningActive ,
} ) ;
const notifCleaningDrawerClassName = classNames ( 'ncd column-header__collapsible' , {
'collapsed' : ! notifCleaningActive ,
'animating' : animatingNCD ,
} ) ;
const msgEnterNotifCleaning = intl . formatMessage ( messages . enterNotifCleaning ) ;
2020-09-15 21:42:58 +00:00
extraButtons . push (
2020-01-26 11:17:20 +00:00
< button
2022-08-27 13:17:27 +00:00
key = 'notif-cleaning'
2020-01-26 11:17:20 +00:00
aria - label = { msgEnterNotifCleaning }
title = { msgEnterNotifCleaning }
onClick = { this . onEnterCleaningMode }
className = { notifCleaningButtonClassName }
>
< Icon id = 'eraser' / >
2022-08-27 13:17:27 +00:00
< / button > ,
2020-01-26 11:17:20 +00:00
) ;
const notifCleaningDrawer = (
< div className = { notifCleaningDrawerClassName } onTransitionEnd = { this . handleTransitionEndNCD } >
< div className = 'column-header__collapsible-inner nopad-drawer' >
{ ( notifCleaningActive || animatingNCD ) ? ( < NotificationPurgeButtonsContainer / > ) : null }
< / div >
< / div >
) ;
2022-08-27 13:17:27 +00:00
const extraButton = (
< >
{ extraButtons }
< / >
) ;
2017-04-24 02:49:08 +00:00
return (
2017-07-21 18:33:16 +00:00
< Column
2019-08-01 17:17:17 +00:00
bindToDocument = { ! multiColumn }
2017-07-21 18:33:16 +00:00
ref = { this . setColumnRef }
2017-08-06 19:27:47 +00:00
name = 'notifications'
2017-07-30 16:36:28 +00:00
extraClasses = { this . props . notifCleaningActive ? 'notif-cleaning' : null }
2018-08-28 10:01:04 +00:00
label = { intl . formatMessage ( messages . title ) }
2017-07-21 18:33:16 +00:00
>
2017-06-03 23:39:38 +00:00
< ColumnHeader
icon = 'bell'
active = { isUnread }
title = { intl . formatMessage ( messages . title ) }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
2017-07-21 18:33:16 +00:00
localSettings = { this . props . localSettings }
2022-08-27 13:17:27 +00:00
extraButton = { extraButton }
2020-01-26 11:17:20 +00:00
appendContent = { notifCleaningDrawer }
2017-06-03 23:39:38 +00:00
>
< ColumnSettingsContainer / >
< / ColumnHeader >
2022-10-04 18:13:23 +00:00
2018-12-18 16:22:01 +00:00
{ filterBarContainer }
2017-06-05 13:20:46 +00:00
{ scrollContainer }
2022-10-04 18:13:23 +00:00
< Helmet >
2022-10-09 04:08:37 +00:00
< title > { intl . formatMessage ( messages . title ) } < / title >
2022-10-20 12:35:29 +00:00
< meta name = 'robots' content = 'noindex' / >
2022-10-04 18:13:23 +00:00
< / Helmet >
2017-04-24 02:49:08 +00:00
< / Column >
) ;
2016-11-20 18:39:18 +00:00
}
2017-04-21 18:05:35 +00:00
}
2023-03-24 22:15:25 +00:00
export default connect ( mapStateToProps , mapDispatchToProps ) ( injectIntl ( Notifications ) ) ;