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' ;
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-06-04 01:39:38 +02:00
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2017-06-12 12:26:23 +02:00
import { expandNotifications , scrollTopNotifications } from '../../actions/notifications' ;
2017-06-04 01:39:38 +02:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
2016-11-20 19:39: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' ;
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-08-28 22:23:44 +02:00
import ScrollableList from '../../components/scrollable_list' ;
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' } ,
2016-11-20 19:39:18 +01:00
} ) ;
2017-01-02 14:09:57 +01:00
const getNotifications = createSelector ( [
2017-07-11 01:00:14 +02:00
state => ImmutableList ( state . getIn ( [ 'settings' , 'notifications' , 'shows' ] ) . filter ( item => ! item ) . keys ( ) ) ,
2017-05-20 17:31:47 +02:00
state => state . getIn ( [ 'notifications' , 'items' ] ) ,
2017-01-02 14:09:57 +01:00
] , ( excludedTypes , notifications ) => notifications . filterNot ( item => excludedTypes . includes ( item . get ( 'type' ) ) ) ) ;
2016-11-20 19:39:18 +01:00
const mapStateToProps = state => ( {
2017-01-26 04:30:40 +01:00
notifications : getNotifications ( state ) ,
2017-02-21 00:10:49 +01:00
isLoading : state . getIn ( [ 'notifications' , 'isLoading' ] , true ) ,
2017-05-20 17:31:47 +02:00
isUnread : state . getIn ( [ 'notifications' , 'unread' ] ) > 0 ,
2017-06-05 19:18:26 +02:00
hasMore : ! ! state . getIn ( [ 'notifications' , 'next' ] ) ,
2016-11-20 19:39:18 +01:00
} ) ;
2017-06-23 19:36:54 +02:00
@ connect ( mapStateToProps )
@ injectIntl
export default class Notifications extends React . PureComponent {
2016-11-20 19:39:18 +01:00
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 ,
dispatch : PropTypes . func . isRequired ,
shouldUpdateScroll : PropTypes . func ,
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 ,
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
} ;
2017-08-28 22:23:44 +02:00
handleScrollToBottom = debounce ( ( ) => {
this . props . dispatch ( scrollTopNotifications ( false ) ) ;
2017-06-24 02:43:26 +02:00
this . props . dispatch ( expandNotifications ( ) ) ;
} , 300 , { leading : true } ) ;
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 => {
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-20 19:39:18 +01:00
render ( ) {
2017-06-05 19:18:26 +02:00
const { intl , notifications , shouldUpdateScroll , isLoading , isUnread , columnId , multiColumn , hasMore } = this . props ;
2017-06-04 01:39:38 +02:00
const pinned = ! ! columnId ;
2017-08-28 22:23:44 +02: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-30 18:04:15 +01:00
2017-08-28 22:23:44 +02:00
let scrollableContent = null ;
2017-01-30 18:04:15 +01:00
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 ) {
2017-10-06 01:07:59 +02: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 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 ;
const scrollContainer = (
< ScrollableList
scrollKey = { ` notifications- ${ columnId } ` }
2017-09-03 20:31:51 +02:00
trackScroll = { ! pinned }
2017-08-28 22:23:44 +02: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 01:26:46 +02:00
2017-04-24 04:49:08 +02:00
return (
2017-06-04 01:39:38 +02: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 15:20:46 +02:00
{ scrollContainer }
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
}