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