2017-05-03 10:04:16 +10:00
import React from 'react' ;
2016-11-21 05:39:18 +11:00
import { connect } from 'react-redux' ;
2017-04-22 04:05:35 +10:00
import PropTypes from 'prop-types' ;
2016-11-21 05:39:18 +11:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2017-06-04 09:39:38 +10:00
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2017-06-12 20:26:23 +10:00
import { expandNotifications , scrollTopNotifications } from '../../actions/notifications' ;
2017-06-04 09:39:38 +10:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
2016-11-21 05:39:18 +11:00
import NotificationContainer from './containers/notification_container' ;
2017-02-18 12:37:59 +11:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-01-03 00:09:57 +11:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
import { createSelector } from 'reselect' ;
2017-07-11 09:00:14 +10:00
import { List as ImmutableList } from 'immutable' ;
2017-06-24 10:43:26 +10:00
import { debounce } from 'lodash' ;
2017-08-29 06:23:44 +10:00
import ScrollableList from '../../components/scrollable_list' ;
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' } ,
2016-11-21 05:39:18 +11:00
} ) ;
2017-01-03 00:09:57 +11:00
const getNotifications = createSelector ( [
2017-07-11 09:00:14 +10:00
state => ImmutableList ( state . getIn ( [ 'settings' , 'notifications' , 'shows' ] ) . filter ( item => ! item ) . keys ( ) ) ,
2017-05-21 01:31:47 +10:00
state => state . getIn ( [ 'notifications' , 'items' ] ) ,
2017-01-03 00:09:57 +11:00
] , ( excludedTypes , notifications ) => notifications . filterNot ( item => excludedTypes . includes ( item . get ( 'type' ) ) ) ) ;
2016-11-21 05:39:18 +11:00
const mapStateToProps = state => ( {
2017-01-26 14:30:40 +11:00
notifications : getNotifications ( state ) ,
2017-02-21 10:10:49 +11:00
isLoading : state . getIn ( [ 'notifications' , 'isLoading' ] , true ) ,
2017-05-21 01:31:47 +10:00
isUnread : state . getIn ( [ 'notifications' , 'unread' ] ) > 0 ,
2017-06-06 03:18:26 +10:00
hasMore : ! ! state . getIn ( [ 'notifications' , 'next' ] ) ,
2016-11-21 05:39:18 +11:00
} ) ;
2017-06-24 03:36:54 +10:00
@ connect ( mapStateToProps )
@ injectIntl
export default class Notifications extends React . PureComponent {
2016-11-21 05:39:18 +11:00
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 ,
dispatch : PropTypes . func . isRequired ,
shouldUpdateScroll : PropTypes . func ,
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 ,
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
} ;
2017-08-29 06:23:44 +10:00
handleScrollToBottom = debounce ( ( ) => {
this . props . dispatch ( scrollTopNotifications ( false ) ) ;
2017-06-24 10:43:26 +10:00
this . props . dispatch ( expandNotifications ( ) ) ;
} , 300 , { leading : true } ) ;
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' , { } ) ) ;
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
setColumnRef = c => {
this . column = c ;
}
2017-10-06 10:07:59 +11:00
handleMoveUp = id => {
const elementIndex = this . props . notifications . findIndex ( item => item . get ( 'id' ) === id ) - 1 ;
this . _selectChild ( elementIndex ) ;
}
handleMoveDown = id => {
const elementIndex = this . props . notifications . findIndex ( item => item . get ( 'id' ) === id ) + 1 ;
this . _selectChild ( elementIndex ) ;
}
_selectChild ( index ) {
const element = this . column . node . querySelector ( ` article:nth-of-type( ${ index + 1 } ) .focusable ` ) ;
if ( element ) {
element . focus ( ) ;
}
}
2016-11-21 05:39:18 +11:00
render ( ) {
2017-06-06 03:18:26 +10:00
const { intl , notifications , shouldUpdateScroll , isLoading , isUnread , columnId , multiColumn , hasMore } = this . props ;
2017-06-04 09:39:38 +10:00
const pinned = ! ! columnId ;
2017-08-29 06:23:44 +10:00
const emptyMessage = < FormattedMessage id = 'empty_column.notifications' defaultMessage = "You don't have any notifications yet. Interact with others to start the conversation." / > ;
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
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 ) {
2017-10-06 10:07:59 +11:00
scrollableContent = notifications . map ( ( item ) => (
< NotificationContainer
key = { item . get ( 'id' ) }
notification = { item }
accountId = { item . get ( 'account' ) }
onMoveUp = { this . handleMoveUp }
onMoveDown = { this . handleMoveDown }
/ >
) ) ;
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 ;
const scrollContainer = (
< ScrollableList
scrollKey = { ` notifications- ${ columnId } ` }
2017-09-04 04:31:51 +10:00
trackScroll = { ! pinned }
2017-08-29 06:23:44 +10:00
isLoading = { isLoading }
hasMore = { hasMore }
emptyMessage = { emptyMessage }
onScrollToBottom = { this . handleScrollToBottom }
onScrollToTop = { this . handleScrollToTop }
onScroll = { this . handleScroll }
shouldUpdateScroll = { shouldUpdateScroll }
>
{ scrollableContent }
< / S c r o l l a b l e L i s t >
) ;
2017-05-20 09:26:46 +10:00
2017-04-24 12:49:08 +10:00
return (
2017-06-04 09:39:38 +10:00
< Column ref = { this . setColumnRef } >
< ColumnHeader
icon = 'bell'
active = { isUnread }
title = { intl . formatMessage ( messages . title ) }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
>
< ColumnSettingsContainer / >
< / C o l u m n H e a d e r >
2017-06-05 23:20:46 +10:00
{ scrollContainer }
2017-04-24 12:49:08 +10:00
< / C o l u m n >
) ;
2016-11-21 05:39:18 +11:00
}
2017-04-22 04:05:35 +10:00
}