2017-04-22 04:05:35 +10:00
import PropTypes from 'prop-types' ;
2023-05-24 01:15:17 +10:00
import { PureComponent } from 'react' ;
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import { Helmet } from 'react-helmet' ;
import { List as ImmutableList } from 'immutable' ;
2016-11-21 05:39:18 +11:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2023-05-24 01:15:17 +10:00
import { connect } from 'react-redux' ;
import { createSelector } from 'reselect' ;
import { debounce } from 'lodash' ;
import { compareId } from 'mastodon/compare_id' ;
import { Icon } from 'mastodon/components/icon' ;
import { NotSignedInIndicator } from 'mastodon/components/not_signed_in_indicator' ;
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
import { submitMarkers } from '../../actions/markers' ;
2020-09-27 04:57:07 +10:00
import {
expandNotifications ,
scrollTopNotifications ,
loadPending ,
mountNotifications ,
unmountNotifications ,
markNotificationsAsRead ,
} from '../../actions/notifications' ;
2023-05-24 01:15:17 +10:00
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2023-05-24 17:20:39 +10:00
import { LoadGap } from '../../components/load_gap' ;
2023-05-24 01:15:17 +10:00
import ScrollableList from '../../components/scrollable_list' ;
2020-10-16 01:24:47 +11:00
import NotificationsPermissionBanner from './components/notifications_permission_banner' ;
2023-05-24 01:15:17 +10:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
import FilterBarContainer from './containers/filter_bar_container' ;
import NotificationContainer from './containers/notification_container' ;
2016-11-21 05:39:18 +11:00
const messages = defineMessages ( {
2017-03-03 05:24:12 +11:00
title : { id : 'column.notifications' , defaultMessage : 'Notifications' } ,
2020-09-27 04:57:07 +10:00
markAsRead : { id : 'notifications.mark_as_read' , defaultMessage : 'Mark every notification as read' } ,
2016-11-21 05:39:18 +11:00
} ) ;
2020-12-10 05:16:30 +11:00
const getExcludedTypes = createSelector ( [
state => state . getIn ( [ 'settings' , 'notifications' , 'shows' ] ) ,
] , ( shows ) => {
return ImmutableList ( shows . filter ( item => ! item ) . keys ( ) ) ;
} ) ;
2017-01-03 00:09:57 +11:00
const getNotifications = createSelector ( [
2018-12-16 15:56:41 +11:00
state => state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'show' ] ) ,
state => state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'active' ] ) ,
2020-12-10 05:16:30 +11:00
getExcludedTypes ,
2017-05-21 01:31:47 +10:00
state => state . getIn ( [ 'notifications' , 'items' ] ) ,
2018-12-16 15:56:41 +11: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-17 04:17:16 +10:00
return notifications . filter ( item => item === null || allowedType === item . get ( 'type' ) ) ;
2018-12-16 15:56:41 +11:00
} ) ;
2018-03-25 08:07:23 +11:00
2016-11-21 05:39:18 +11:00
const mapStateToProps = state => ( {
2018-12-16 15:56:41 +11:00
showFilterBar : state . getIn ( [ 'settings' , 'notifications' , 'quickFilter' , 'show' ] ) ,
2017-01-26 14:30:40 +11:00
notifications : getNotifications ( state ) ,
2022-11-05 23:45:06 +11:00
isLoading : state . getIn ( [ 'notifications' , 'isLoading' ] , 0 ) > 0 ,
2019-09-16 23:45:06 +10:00
isUnread : state . getIn ( [ 'notifications' , 'unread' ] ) > 0 || state . getIn ( [ 'notifications' , 'pendingItems' ] ) . size > 0 ,
2018-03-25 08:07:23 +11:00
hasMore : state . getIn ( [ 'notifications' , 'hasMore' ] ) ,
2019-07-16 14:30:47 +10:00
numPending : state . getIn ( [ 'notifications' , 'pendingItems' ] , ImmutableList ( ) ) . size ,
2021-03-19 12:44:57 +11: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-16 04:43:54 +11: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-21 05:39:18 +11:00
} ) ;
2023-05-23 18:52:27 +10:00
class Notifications extends PureComponent {
2016-11-21 05:39:18 +11:00
2022-10-05 05:13:23 +11:00
static contextTypes = {
identity : PropTypes . object ,
} ;
2017-05-12 22:44:10 +10:00
static propTypes = {
2017-06-04 09:39:38 +10:00
columnId : PropTypes . string ,
2017-05-12 22:44:10 +10:00
notifications : ImmutablePropTypes . list . isRequired ,
2018-12-16 15:56:41 +11:00
showFilterBar : PropTypes . bool . isRequired ,
2017-05-12 22:44:10 +10:00
dispatch : PropTypes . func . isRequired ,
intl : PropTypes . object . isRequired ,
isLoading : PropTypes . bool ,
2017-05-21 01:31:47 +10:00
isUnread : PropTypes . bool ,
2017-06-04 09:39:38 +10:00
multiColumn : PropTypes . bool ,
2017-06-06 03:18:26 +10:00
hasMore : PropTypes . bool ,
2019-07-16 14:30:47 +10:00
numPending : PropTypes . number ,
2020-09-27 04:57:07 +10:00
lastReadId : PropTypes . string ,
canMarkAsRead : PropTypes . bool ,
2020-10-13 09:37:21 +11:00
needsNotificationPermission : PropTypes . bool ,
2017-05-12 22:44:10 +10:00
} ;
static defaultProps = {
2017-05-21 01:31:47 +10:00
trackScroll : true ,
2017-05-12 22:44:10 +10:00
} ;
2023-05-10 17:05:32 +10:00
UNSAFE _componentWillMount ( ) {
2019-09-21 17:12:13 +10:00
this . props . dispatch ( mountNotifications ( ) ) ;
}
2018-03-04 18:55:15 +11:00
componentWillUnmount ( ) {
2018-03-25 08:07:23 +11:00
this . handleLoadOlder . cancel ( ) ;
2018-03-04 18:55:15 +11:00
this . handleScrollToTop . cancel ( ) ;
this . handleScroll . cancel ( ) ;
this . props . dispatch ( scrollTopNotifications ( false ) ) ;
2019-09-21 17:12:13 +10:00
this . props . dispatch ( unmountNotifications ( ) ) ;
2018-03-04 18:55:15 +11:00
}
2018-03-25 08:07:23 +11: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 10:43:26 +10:00
} , 300 , { leading : true } ) ;
2019-07-16 14:30:47 +10:00
handleLoadPending = ( ) => {
this . props . dispatch ( loadPending ( ) ) ;
} ;
2017-08-29 06:23:44 +10:00
handleScrollToTop = debounce ( ( ) => {
this . props . dispatch ( scrollTopNotifications ( true ) ) ;
2017-06-24 10:43:26 +10:00
} , 100 ) ;
2017-08-29 06:23:44 +10:00
handleScroll = debounce ( ( ) => {
this . props . dispatch ( scrollTopNotifications ( false ) ) ;
} , 100 ) ;
2017-01-31 04:04:15 +11:00
2017-06-04 09:39:38 +10:00
handlePin = ( ) => {
const { columnId , dispatch } = this . props ;
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
dispatch ( addColumn ( 'NOTIFICATIONS' , { } ) ) ;
}
2023-01-30 11:45:35 +11:00
} ;
2017-06-04 09:39:38 +10:00
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
2023-01-30 11:45:35 +11:00
} ;
2017-06-04 09:39:38 +10:00
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
2023-01-30 11:45:35 +11:00
} ;
2017-06-04 09:39:38 +10:00
setColumnRef = c => {
this . column = c ;
2023-01-30 11:45:35 +11:00
} ;
2017-06-04 09:39:38 +10:00
2017-10-06 10:07:59 +11:00
handleMoveUp = id => {
2018-03-25 08:07:23 +11:00
const elementIndex = this . props . notifications . findIndex ( item => item !== null && item . get ( 'id' ) === id ) - 1 ;
2019-05-03 14:20:36 +10:00
this . _selectChild ( elementIndex , true ) ;
2023-01-30 11:45:35 +11:00
} ;
2017-10-06 10:07:59 +11:00
handleMoveDown = id => {
2018-03-25 08:07:23 +11:00
const elementIndex = this . props . notifications . findIndex ( item => item !== null && item . get ( 'id' ) === id ) + 1 ;
2019-05-03 14:20:36 +10:00
this . _selectChild ( elementIndex , false ) ;
2023-01-30 11:45:35 +11:00
} ;
2017-10-06 10:07:59 +11:00
2019-05-03 14:20:36 +10:00
_selectChild ( index , align _top ) {
const container = this . column . node ;
const element = container . querySelector ( ` article:nth-of-type( ${ index + 1 } ) .focusable ` ) ;
2017-10-06 10:07:59 +11:00
if ( element ) {
2019-05-03 14:20:36 +10: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 10:07:59 +11:00
element . focus ( ) ;
}
}
2020-09-27 04:57:07 +10:00
handleMarkAsRead = ( ) => {
this . props . dispatch ( markNotificationsAsRead ( ) ) ;
2020-10-01 12:17:46 +10:00
this . props . dispatch ( submitMarkers ( { immediate : true } ) ) ;
2020-09-27 04:57:07 +10:00
} ;
2016-11-21 05:39:18 +11:00
render ( ) {
2021-07-13 23:45:17 +10:00
const { intl , notifications , isLoading , isUnread , columnId , multiColumn , hasMore , numPending , showFilterBar , lastReadId , canMarkAsRead , needsNotificationPermission } = this . props ;
2017-06-04 09:39:38 +10:00
const pinned = ! ! columnId ;
2021-05-07 22:33:57 +10: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-05 05:13:23 +11:00
const { signedIn } = this . context . identity ;
2017-01-31 04:04:15 +11:00
2017-08-29 06:23:44 +10:00
let scrollableContent = null ;
2017-01-31 04:04:15 +11:00
2022-10-05 05:13:23 +11:00
const filterBarContainer = ( signedIn && showFilterBar )
2018-12-16 15:56:41 +11:00
? ( < FilterBarContainer / > )
: null ;
2017-08-29 06:23:44 +10:00
if ( isLoading && this . scrollableContent ) {
scrollableContent = this . scrollableContent ;
2017-07-05 22:51:53 +10:00
} else if ( notifications . size > 0 || hasMore ) {
2018-03-25 08:07:23 +11: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 10:07:59 +11:00
< NotificationContainer
key = { item . get ( 'id' ) }
notification = { item }
accountId = { item . get ( 'account' ) }
onMoveUp = { this . handleMoveUp }
onMoveDown = { this . handleMoveDown }
2020-09-27 04:57:07 +10:00
unread = { lastReadId !== '0' && compareId ( item . get ( 'id' ) , lastReadId ) > 0 }
2017-10-06 10:07:59 +11:00
/ >
) ) ;
2017-02-18 12:37:59 +11:00
} else {
2017-08-29 06:23:44 +10:00
scrollableContent = null ;
2017-02-18 12:37:59 +11:00
}
2016-11-21 20:03:55 +11:00
2017-08-29 06:23:44 +10:00
this . scrollableContent = scrollableContent ;
2022-10-05 05:13:23 +11: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-20 09:26:46 +10:00
2020-09-27 04:57:07 +10: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' / >
< / button >
) ;
}
2017-04-24 12:49:08 +10:00
return (
2019-08-02 03:17:17 +10:00
< Column bindToDocument = { ! multiColumn } ref = { this . setColumnRef } label = { intl . formatMessage ( messages . title ) } >
2017-06-04 09:39:38 +10: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-27 04:57:07 +10:00
extraButton = { extraButton }
2017-06-04 09:39:38 +10:00
>
< ColumnSettingsContainer / >
< / ColumnHeader >
2022-10-05 05:13:23 +11:00
2018-12-16 15:56:41 +11:00
{ filterBarContainer }
2017-06-05 23:20:46 +10:00
{ scrollContainer }
2022-10-05 05:13:23 +11:00
< Helmet >
2022-10-09 12:55:09 +11:00
< title > { intl . formatMessage ( messages . title ) } < / title >
2022-10-20 23:35:29 +11:00
< meta name = 'robots' content = 'noindex' / >
2022-10-05 05:13:23 +11:00
< / Helmet >
2017-04-24 12:49:08 +10:00
< / Column >
) ;
2016-11-21 05:39:18 +11:00
}
2017-04-22 04:05:35 +10:00
}
2023-03-24 13:17:53 +11:00
export default connect ( mapStateToProps ) ( injectIntl ( Notifications ) ) ;