2017-05-02 20:04:16 -04:00
import React from 'react' ;
2016-11-20 13:39:18 -05:00
import { connect } from 'react-redux' ;
2017-04-21 14:05:35 -04:00
import PropTypes from 'prop-types' ;
2016-11-20 13:39:18 -05:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-06-03 19:39:38 -04:00
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2020-09-26 14:57:07 -04:00
import {
expandNotifications ,
scrollTopNotifications ,
loadPending ,
mountNotifications ,
unmountNotifications ,
markNotificationsAsRead ,
} from '../../actions/notifications' ;
2020-09-30 22:17:46 -04:00
import { submitMarkers } from '../../actions/markers' ;
2017-06-03 19:39:38 -04:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
2016-11-20 13:39:18 -05:00
import NotificationContainer from './containers/notification_container' ;
2017-02-17 20:37:59 -05:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-01-02 08:09:57 -05:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2018-12-15 23:56:41 -05:00
import FilterBarContainer from './containers/filter_bar_container' ;
2017-01-02 08:09:57 -05:00
import { createSelector } from 'reselect' ;
2017-07-10 19:00:14 -04:00
import { List as ImmutableList } from 'immutable' ;
2017-06-23 20:43:26 -04:00
import { debounce } from 'lodash' ;
2017-08-28 16:23:44 -04:00
import ScrollableList from '../../components/scrollable_list' ;
2018-04-10 11:12:10 -04:00
import LoadGap from '../../components/load_gap' ;
2020-09-26 14:57:07 -04:00
import Icon from 'mastodon/components/icon' ;
import compareId from 'mastodon/compare_id' ;
2020-10-15 10:24:47 -04:00
import NotificationsPermissionBanner from './components/notifications_permission_banner' ;
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-09-26 14:57:07 -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-15 23:56:41 -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-15 23:56:41 -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-15 23:56:41 -05:00
} ) ;
2018-03-24 17:07:23 -04:00
2016-11-20 13:39:18 -05:00
const mapStateToProps = state => ( {
2018-12-15 23:56:41 -05:00
showFilterBar : state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'show' ] ) ,
2017-01-25 22:30:40 -05:00
notifications : getNotifications ( state ) ,
2017-02-20 18:10:49 -05:00
isLoading : state . getIn ( [ 'notifications' , 'isLoading' ] , true ) ,
2019-09-16 09:45:06 -04:00
isUnread : state . getIn ( [ 'notifications' , 'unread' ] ) > 0 || state . getIn ( [ 'notifications' , 'pendingItems' ] ) . size > 0 ,
2018-03-24 17:07:23 -04:00
hasMore : state . getIn ( [ 'notifications' , 'hasMore' ] ) ,
2019-07-16 00:30:47 -04:00
numPending : state . getIn ( [ 'notifications' , 'pendingItems' ] , ImmutableList ( ) ) . size ,
2021-03-18 21:44:57 -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
} ) ;
2018-09-14 11:59:48 -04:00
export default @ connect ( mapStateToProps )
2017-06-23 13:36:54 -04:00
@ injectIntl
2018-09-14 11:59:48 -04:00
class Notifications extends React . PureComponent {
2016-11-20 13:39:18 -05:00
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-15 23:56:41 -05:00
showFilterBar : PropTypes . bool . isRequired ,
2017-05-12 08:44:10 -04:00
dispatch : PropTypes . func . isRequired ,
shouldUpdateScroll : PropTypes . func ,
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 ,
2020-09-26 14:57:07 -04:00
lastReadId : PropTypes . string ,
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
} ;
2019-09-21 03:12:13 -04:00
componentWillMount ( ) {
this . props . dispatch ( mountNotifications ( ) ) ;
}
2018-03-04 02:55:15 -05:00
componentWillUnmount ( ) {
2018-03-24 17:07:23 -04:00
this . handleLoadOlder . cancel ( ) ;
2018-03-04 02:55:15 -05:00
this . handleScrollToTop . cancel ( ) ;
this . handleScroll . cancel ( ) ;
this . props . dispatch ( scrollTopNotifications ( false ) ) ;
2019-09-21 03:12:13 -04:00
this . props . dispatch ( unmountNotifications ( ) ) ;
2018-03-04 02:55:15 -05:00
}
2018-03-24 17:07:23 -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' , { } ) ) ;
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
setColumnRef = c => {
this . column = c ;
}
2017-10-05 19:07:59 -04:00
handleMoveUp = id => {
2018-03-24 17:07:23 -04:00
const elementIndex = this . props . notifications . findIndex ( item => item !== null && item . get ( 'id' ) === id ) - 1 ;
2019-05-03 00:20:36 -04:00
this . _selectChild ( elementIndex , true ) ;
2017-10-05 19:07:59 -04:00
}
handleMoveDown = id => {
2018-03-24 17:07:23 -04:00
const elementIndex = this . props . notifications . findIndex ( item => item !== null && item . get ( 'id' ) === id ) + 1 ;
2019-05-03 00:20:36 -04:00
this . _selectChild ( elementIndex , false ) ;
2017-10-05 19:07:59 -04:00
}
2019-05-03 00:20:36 -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-05-03 00:20:36 -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-09-26 14:57:07 -04:00
handleMarkAsRead = ( ) => {
this . props . dispatch ( markNotificationsAsRead ( ) ) ;
2020-09-30 22:17:46 -04:00
this . props . dispatch ( submitMarkers ( { immediate : true } ) ) ;
2020-09-26 14:57:07 -04:00
} ;
2016-11-20 13:39:18 -05:00
render ( ) {
2020-10-15 10:24:47 -04:00
const { intl , notifications , shouldUpdateScroll , isLoading , isUnread , columnId , multiColumn , hasMore , numPending , showFilterBar , lastReadId , canMarkAsRead , needsNotificationPermission } = this . props ;
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." / > ;
2017-01-30 12:04:15 -05:00
2017-08-28 16:23:44 -04:00
let scrollableContent = null ;
2017-01-30 12:04:15 -05:00
2018-12-15 23:56:41 -05:00
const filterBarContainer = showFilterBar
? ( < 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-03-24 17:07:23 -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-26 14:57:07 -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 ;
const scrollContainer = (
< ScrollableList
scrollKey = { ` notifications- ${ columnId } ` }
2017-09-03 14:31:51 -04:00
trackScroll = { ! pinned }
2017-08-28 16:23:44 -04:00
isLoading = { isLoading }
2018-11-10 09:04:13 -05:00
showLoading = { isLoading && notifications . size === 0 }
2017-08-28 16:23:44 -04:00
hasMore = { hasMore }
2019-07-16 00:30:47 -04:00
numPending = { numPending }
2020-10-15 10:24:47 -04:00
prepend = { needsNotificationPermission && < NotificationsPermissionBanner / > }
alwaysPrepend
2017-08-28 16:23:44 -04:00
emptyMessage = { emptyMessage }
2018-03-24 17:07:23 -04:00
onLoadMore = { this . handleLoadOlder }
2019-07-16 00:30:47 -04:00
onLoadPending = { this . handleLoadPending }
2017-08-28 16:23:44 -04:00
onScrollToTop = { this . handleScrollToTop }
onScroll = { this . handleScroll }
shouldUpdateScroll = { shouldUpdateScroll }
2019-07-19 03:25:22 -04:00
bindToDocument = { ! multiColumn }
2017-08-28 16:23:44 -04:00
>
{ scrollableContent }
< / S c r o l l a b l e L i s t >
) ;
2017-05-19 19:26:46 -04:00
2020-09-26 14:57:07 -04:00
let extraButton = null ;
if ( canMarkAsRead ) {
extraButton = (
< button
aria - label = { intl . formatMessage ( messages . markAsRead ) }
title = { intl . formatMessage ( messages . markAsRead ) }
onClick = { this . handleMarkAsRead }
className = 'column-header__button'
>
< Icon id = 'check' / >
< / b u t t o n >
) ;
}
2017-04-23 22:49:08 -04:00
return (
2019-08-01 13:17:17 -04:00
< Column bindToDocument = { ! multiColumn } ref = { this . setColumnRef } label = { intl . formatMessage ( messages . title ) } >
2017-06-03 19:39:38 -04:00
< ColumnHeader
icon = 'bell'
active = { isUnread }
title = { intl . formatMessage ( messages . title ) }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
2020-09-26 14:57:07 -04:00
extraButton = { extraButton }
2017-06-03 19:39:38 -04:00
>
< ColumnSettingsContainer / >
< / C o l u m n H e a d e r >
2018-12-15 23:56:41 -05:00
{ filterBarContainer }
2017-06-05 09:20:46 -04:00
{ scrollContainer }
2017-04-23 22:49:08 -04:00
< / C o l u m n >
) ;
2016-11-20 13:39:18 -05:00
}
2017-04-21 14:05:35 -04:00
}