2017-05-03 02:04:16 +02:00
import React from 'react' ;
2016-11-20 19:39:18 +01:00
import { connect } from 'react-redux' ;
2020-01-26 12:17:20 +01:00
import classNames from 'classnames' ;
2017-04-21 20:05:35 +02:00
import PropTypes from 'prop-types' ;
2016-11-20 19:39:18 +01:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-12-04 08:26:40 +01:00
import Column from 'flavours/glitch/components/column' ;
import ColumnHeader from 'flavours/glitch/components/column_header' ;
2017-07-21 20:33:16 +02:00
import {
2017-07-30 18:36:28 +02:00
enterNotificationClearingMode ,
2017-07-21 20:33:16 +02:00
expandNotifications ,
scrollTopNotifications ,
2018-09-06 15:47:13 +02:00
mountNotifications ,
unmountNotifications ,
2019-07-16 06:30:47 +02:00
loadPending ,
2020-09-15 23:42:58 +02:00
markNotificationsAsRead ,
2017-12-04 08:26:40 +01:00
} from 'flavours/glitch/actions/notifications' ;
import { addColumn , removeColumn , moveColumn } from 'flavours/glitch/actions/columns' ;
2020-09-17 11:27:20 +02:00
import { submitMarkers } from 'flavours/glitch/actions/markers' ;
2017-11-18 04:11:18 +01:00
import NotificationContainer from './containers/notification_container' ;
2017-02-18 02:37:59 +01:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-01-02 14:09:57 +01:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2018-12-18 17:22:01 +01:00
import FilterBarContainer from './containers/filter_bar_container' ;
2017-01-02 14:09:57 +01:00
import { createSelector } from 'reselect' ;
2017-07-11 01:00:14 +02:00
import { List as ImmutableList } from 'immutable' ;
2017-06-24 02:43:26 +02:00
import { debounce } from 'lodash' ;
2017-12-04 08:26:40 +01:00
import ScrollableList from 'flavours/glitch/components/scrollable_list' ;
2018-05-27 20:23:56 +02:00
import LoadGap from 'flavours/glitch/components/load_gap' ;
2020-01-26 12:17:20 +01:00
import Icon from 'flavours/glitch/components/icon' ;
2020-09-15 18:09:08 +02:00
import compareId from 'flavours/glitch/util/compare_id' ;
2020-10-15 16:24:47 +02:00
import NotificationsPermissionBanner from './components/notifications_permission_banner' ;
2022-10-04 20:13:23 +02:00
import NotSignedInIndicator from 'flavours/glitch/components/not_signed_in_indicator' ;
import { Helmet } from 'react-helmet' ;
import { title } from 'flavours/glitch/util/initial_state' ;
2020-01-26 12:17:20 +01:00
import NotificationPurgeButtonsContainer from 'flavours/glitch/containers/notification_purge_buttons_container' ;
2016-11-20 19:39:18 +01:00
const messages = defineMessages ( {
2017-03-02 19:24:12 +01:00
title : { id : 'column.notifications' , defaultMessage : 'Notifications' } ,
2020-01-26 12:17:20 +01:00
enterNotifCleaning : { id : 'notification_purge.start' , defaultMessage : 'Enter notification cleaning mode' } ,
2020-09-15 23:42:58 +02:00
markAsRead : { id : 'notifications.mark_as_read' , defaultMessage : 'Mark every notification as read' } ,
2016-11-20 19:39:18 +01:00
} ) ;
2020-12-09 19:16:30 +01:00
const getExcludedTypes = createSelector ( [
state => state . getIn ( [ 'settings' , 'notifications' , 'shows' ] ) ,
] , ( shows ) => {
return ImmutableList ( shows . filter ( item => ! item ) . keys ( ) ) ;
} ) ;
2017-01-02 14:09:57 +01:00
const getNotifications = createSelector ( [
2018-12-18 17:22:01 +01:00
state => state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'show' ] ) ,
state => state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'active' ] ) ,
2020-12-09 19:16:30 +01:00
getExcludedTypes ,
2017-05-20 17:31:47 +02:00
state => state . getIn ( [ 'notifications' , 'items' ] ) ,
2018-12-18 17:22:01 +01: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 20:17:16 +02:00
return notifications . filter ( item => item === null || allowedType === item . get ( 'type' ) ) ;
2018-12-18 17:22:01 +01:00
} ) ;
2018-05-27 19:30:52 +02:00
2016-11-20 19:39:18 +01:00
const mapStateToProps = state => ( {
2018-12-18 17:22:01 +01:00
showFilterBar : state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'show' ] ) ,
2017-01-26 04:30:40 +01:00
notifications : getNotifications ( state ) ,
2017-07-21 20:33:16 +02:00
localSettings : state . get ( 'local_settings' ) ,
2017-02-21 00:10:49 +01:00
isLoading : state . getIn ( [ 'notifications' , 'isLoading' ] , true ) ,
2019-09-16 15:45:06 +02:00
isUnread : state . getIn ( [ 'notifications' , 'unread' ] ) > 0 || state . getIn ( [ 'notifications' , 'pendingItems' ] ) . size > 0 ,
2018-05-27 19:30:52 +02:00
hasMore : state . getIn ( [ 'notifications' , 'hasMore' ] ) ,
2019-07-16 06:30:47 +02:00
numPending : state . getIn ( [ 'notifications' , 'pendingItems' ] , ImmutableList ( ) ) . size ,
2017-07-21 20:33:16 +02:00
notifCleaningActive : state . getIn ( [ 'notifications' , 'cleaningMode' ] ) ,
2021-03-19 12:47:31 +01: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 18:43:54 +01: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 19:39:18 +01:00
} ) ;
2017-07-30 18:36:28 +02:00
/* glitch */
const mapDispatchToProps = dispatch => ( {
onEnterCleaningMode ( yes ) {
dispatch ( enterNotificationClearingMode ( yes ) ) ;
} ,
2020-09-15 23:42:58 +02:00
onMarkAsRead ( ) {
dispatch ( markNotificationsAsRead ( ) ) ;
2020-10-01 04:17:46 +02:00
dispatch ( submitMarkers ( { immediate : true } ) ) ;
2020-09-15 23:42:58 +02:00
} ,
2018-09-06 15:47:13 +02:00
onMount ( ) {
dispatch ( mountNotifications ( ) ) ;
} ,
onUnmount ( ) {
dispatch ( unmountNotifications ( ) ) ;
} ,
2017-07-30 18:36:28 +02:00
dispatch ,
} ) ;
2019-09-09 15:16:08 +02:00
export default @ connect ( mapStateToProps , mapDispatchToProps )
2017-06-23 19:36:54 +02:00
@ injectIntl
2019-09-09 15:16:08 +02:00
class Notifications extends React . PureComponent {
2016-11-20 19:39:18 +01:00
2022-10-04 20:13:23 +02:00
static contextTypes = {
identity : PropTypes . object ,
} ;
2017-05-12 14:44:10 +02:00
static propTypes = {
2017-06-04 01:39:38 +02:00
columnId : PropTypes . string ,
2017-05-12 14:44:10 +02:00
notifications : ImmutablePropTypes . list . isRequired ,
2018-12-18 17:22:01 +01:00
showFilterBar : PropTypes . bool . isRequired ,
2017-05-12 14:44:10 +02:00
dispatch : PropTypes . func . isRequired ,
intl : PropTypes . object . isRequired ,
isLoading : PropTypes . bool ,
2017-05-20 17:31:47 +02:00
isUnread : PropTypes . bool ,
2017-06-04 01:39:38 +02:00
multiColumn : PropTypes . bool ,
2017-06-05 19:18:26 +02:00
hasMore : PropTypes . bool ,
2019-07-16 06:30:47 +02:00
numPending : PropTypes . number ,
2017-07-21 20:33:16 +02:00
localSettings : ImmutablePropTypes . map ,
notifCleaningActive : PropTypes . bool ,
2017-07-30 18:36:28 +02:00
onEnterCleaningMode : PropTypes . func ,
2018-09-06 15:47:13 +02:00
onMount : PropTypes . func ,
onUnmount : PropTypes . func ,
2020-09-15 18:09:08 +02:00
lastReadId : PropTypes . string ,
2020-09-15 23:42:58 +02:00
canMarkAsRead : PropTypes . bool ,
2020-10-13 00:37:21 +02:00
needsNotificationPermission : PropTypes . bool ,
2017-05-12 14:44:10 +02:00
} ;
static defaultProps = {
2017-05-20 17:31:47 +02:00
trackScroll : true ,
2017-05-12 14:44:10 +02:00
} ;
2020-01-26 12:17:20 +01:00
state = {
animatingNCD : false ,
} ;
2018-05-27 19:30:52 +02: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 02:43:26 +02:00
} , 300 , { leading : true } ) ;
2019-07-16 06:30:47 +02:00
handleLoadPending = ( ) => {
this . props . dispatch ( loadPending ( ) ) ;
} ;
2017-08-28 22:23:44 +02:00
handleScrollToTop = debounce ( ( ) => {
this . props . dispatch ( scrollTopNotifications ( true ) ) ;
2017-06-24 02:43:26 +02:00
} , 100 ) ;
2017-08-28 22:23:44 +02:00
handleScroll = debounce ( ( ) => {
this . props . dispatch ( scrollTopNotifications ( false ) ) ;
} , 100 ) ;
2017-01-30 18:04:15 +01:00
2017-06-04 01:39:38 +02:00
handlePin = ( ) => {
const { columnId , dispatch } = this . props ;
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
dispatch ( addColumn ( 'NOTIFICATIONS' , { } ) ) ;
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
setColumnRef = c => {
this . column = c ;
}
2017-10-06 01:07:59 +02:00
handleMoveUp = id => {
2018-05-27 19:30:52 +02:00
const elementIndex = this . props . notifications . findIndex ( item => item !== null && item . get ( 'id' ) === id ) - 1 ;
2019-04-15 20:40:05 +02:00
this . _selectChild ( elementIndex , true ) ;
2017-10-06 01:07:59 +02:00
}
handleMoveDown = id => {
2018-05-27 19:30:52 +02:00
const elementIndex = this . props . notifications . findIndex ( item => item !== null && item . get ( 'id' ) === id ) + 1 ;
2019-04-15 20:40:05 +02:00
this . _selectChild ( elementIndex , false ) ;
2017-10-06 01:07:59 +02:00
}
2019-04-15 20:40:05 +02:00
_selectChild ( index , align _top ) {
const container = this . column . node ;
const element = container . querySelector ( ` article:nth-of-type( ${ index + 1 } ) .focusable ` ) ;
2017-10-06 01:07:59 +02:00
if ( element ) {
2019-04-15 20:40:05 +02: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-06 01:07:59 +02:00
element . focus ( ) ;
}
}
2018-09-06 15:47:13 +02:00
componentDidMount ( ) {
const { onMount } = this . props ;
if ( onMount ) {
onMount ( ) ;
}
}
componentWillUnmount ( ) {
const { onUnmount } = this . props ;
if ( onUnmount ) {
onUnmount ( ) ;
}
}
2020-01-26 12:17:20 +01:00
handleTransitionEndNCD = ( ) => {
this . setState ( { animatingNCD : false } ) ;
}
onEnterCleaningMode = ( ) => {
this . setState ( { animatingNCD : true } ) ;
this . props . onEnterCleaningMode ( ! this . props . notifCleaningActive ) ;
}
2020-09-15 23:42:58 +02:00
handleMarkAsRead = ( ) => {
this . props . onMarkAsRead ( ) ;
}
2016-11-20 19:39:18 +01:00
render ( ) {
2021-07-13 12:40:15 +02:00
const { intl , notifications , isLoading , isUnread , columnId , multiColumn , hasMore , numPending , showFilterBar , lastReadId , canMarkAsRead , needsNotificationPermission } = this . props ;
2020-01-26 12:17:20 +01:00
const { notifCleaning , notifCleaningActive } = this . props ;
const { animatingNCD } = this . state ;
2017-06-04 01:39:38 +02:00
const pinned = ! ! columnId ;
2021-05-07 14:33:57 +02: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 20:13:23 +02:00
const { signedIn } = this . context . identity ;
2017-01-30 18:04:15 +01:00
2017-08-28 22:23:44 +02:00
let scrollableContent = null ;
2017-02-21 00:10:49 +01:00
2022-10-04 20:13:23 +02:00
const filterBarContainer = ( signedIn && showFilterBar )
2018-12-18 17:22:01 +01:00
? ( < FilterBarContainer / > )
: null ;
2017-08-28 22:23:44 +02:00
if ( isLoading && this . scrollableContent ) {
scrollableContent = this . scrollableContent ;
2017-07-05 14:51:53 +02:00
} else if ( notifications . size > 0 || hasMore ) {
2018-05-27 19:30:52 +02: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-06 01:07:59 +02:00
< NotificationContainer
key = { item . get ( 'id' ) }
notification = { item }
accountId = { item . get ( 'account' ) }
onMoveUp = { this . handleMoveUp }
onMoveDown = { this . handleMoveDown }
2020-09-15 20:54:26 +02:00
unread = { lastReadId !== '0' && compareId ( item . get ( 'id' ) , lastReadId ) > 0 }
2017-10-06 01:07:59 +02:00
/ >
) ) ;
2017-02-18 02:37:59 +01:00
} else {
2017-08-28 22:23:44 +02:00
scrollableContent = null ;
2017-02-18 02:37:59 +01:00
}
2016-11-21 10:03:55 +01:00
2017-08-28 22:23:44 +02:00
this . scrollableContent = scrollableContent ;
2022-10-04 20:13:23 +02: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 }
< / S c r o l l a b l e L i s t >
) ;
} else {
scrollContainer = < NotSignedInIndicator / > ;
}
2017-05-20 01:26:46 +02:00
2020-09-15 23:42:58 +02:00
const extraButtons = [ ] ;
if ( canMarkAsRead ) {
extraButtons . push (
< button
2022-08-27 15:17:27 +02:00
key = 'mark-as-read'
2020-09-15 23:42:58 +02: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 15:17:27 +02:00
< / b u t t o n > ,
2020-09-15 23:42:58 +02:00
) ;
}
2020-01-26 12:17:20 +01: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 23:42:58 +02:00
extraButtons . push (
2020-01-26 12:17:20 +01:00
< button
2022-08-27 15:17:27 +02:00
key = 'notif-cleaning'
2020-01-26 12:17:20 +01:00
aria - label = { msgEnterNotifCleaning }
title = { msgEnterNotifCleaning }
onClick = { this . onEnterCleaningMode }
className = { notifCleaningButtonClassName }
>
< Icon id = 'eraser' / >
2022-08-27 15:17:27 +02:00
< / b u t t o n > ,
2020-01-26 12:17:20 +01:00
) ;
const notifCleaningDrawer = (
< div className = { notifCleaningDrawerClassName } onTransitionEnd = { this . handleTransitionEndNCD } >
< div className = 'column-header__collapsible-inner nopad-drawer' >
{ ( notifCleaningActive || animatingNCD ) ? ( < NotificationPurgeButtonsContainer / > ) : null }
< / d i v >
< / d i v >
) ;
2022-08-27 15:17:27 +02:00
const extraButton = (
< >
{ extraButtons }
< / >
) ;
2017-04-24 04:49:08 +02:00
return (
2017-07-21 20:33:16 +02:00
< Column
2019-08-01 19:17:17 +02:00
bindToDocument = { ! multiColumn }
2017-07-21 20:33:16 +02:00
ref = { this . setColumnRef }
2017-08-06 21:27:47 +02:00
name = 'notifications'
2017-07-30 18:36:28 +02:00
extraClasses = { this . props . notifCleaningActive ? 'notif-cleaning' : null }
2018-08-28 12:01:04 +02:00
label = { intl . formatMessage ( messages . title ) }
2017-07-21 20:33:16 +02:00
>
2017-06-04 01:39:38 +02: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 20:33:16 +02:00
localSettings = { this . props . localSettings }
2022-08-27 15:17:27 +02:00
extraButton = { extraButton }
2020-01-26 12:17:20 +01:00
appendContent = { notifCleaningDrawer }
2017-06-04 01:39:38 +02:00
>
< ColumnSettingsContainer / >
< / C o l u m n H e a d e r >
2022-10-04 20:13:23 +02:00
2018-12-18 17:22:01 +01:00
{ filterBarContainer }
2017-06-05 15:20:46 +02:00
{ scrollContainer }
2022-10-04 20:13:23 +02:00
< Helmet >
< title > { intl . formatMessage ( messages . title ) } - { title } < / t i t l e >
< / H e l m e t >
2017-04-24 04:49:08 +02:00
< / C o l u m n >
) ;
2016-11-20 19:39:18 +01:00
}
2017-04-21 20:05:35 +02:00
}