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' ;
2017-06-12 06:26:23 -04:00
import { expandNotifications , scrollTopNotifications } from '../../actions/notifications' ;
2017-06-03 19:39:38 -04:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
2017-07-12 04:02:51 -04:00
import NotificationContainer from '../../../glitch/containers/notification' ;
2016-11-20 13:39:18 -05:00
import { ScrollContainer } from 'react-router-scroll' ;
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' ;
import { createSelector } from 'reselect' ;
2017-07-10 19:00:14 -04:00
import { List as ImmutableList } from 'immutable' ;
2017-01-30 12:04:15 -05:00
import LoadMore from '../../components/load_more' ;
2017-06-23 20:43:26 -04:00
import { debounce } from 'lodash' ;
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' } ,
2016-11-20 13:39:18 -05:00
} ) ;
2017-01-02 08:09:57 -05:00
const getNotifications = createSelector ( [
2017-07-10 19:00:14 -04:00
state => ImmutableList ( state . getIn ( [ 'settings' , 'notifications' , 'shows' ] ) . filter ( item => ! item ) . keys ( ) ) ,
2017-05-20 11:31:47 -04:00
state => state . getIn ( [ 'notifications' , 'items' ] ) ,
2017-01-02 08:09:57 -05:00
] , ( excludedTypes , notifications ) => notifications . filterNot ( item => excludedTypes . includes ( item . get ( 'type' ) ) ) ) ;
2016-11-20 13:39:18 -05:00
const mapStateToProps = state => ( {
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 ) ,
2017-05-20 11:31:47 -04:00
isUnread : state . getIn ( [ 'notifications' , 'unread' ] ) > 0 ,
2017-06-05 13:18:26 -04:00
hasMore : ! ! state . getIn ( [ 'notifications' , 'next' ] ) ,
2016-11-20 13:39:18 -05:00
} ) ;
2017-06-23 13:36:54 -04:00
@ connect ( mapStateToProps )
@ injectIntl
export default 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 ,
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 ,
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
} ;
2017-06-23 20:43:26 -04:00
dispatchExpandNotifications = debounce ( ( ) => {
this . props . dispatch ( expandNotifications ( ) ) ;
} , 300 , { leading : true } ) ;
dispatchScrollToTop = debounce ( ( top ) => {
this . props . dispatch ( scrollTopNotifications ( top ) ) ;
} , 100 ) ;
2017-05-12 08:44:10 -04:00
handleScroll = ( e ) => {
2016-11-20 13:39:18 -05:00
const { scrollTop , scrollHeight , clientHeight } = e . target ;
2017-01-25 22:30:40 -05:00
const offset = scrollHeight - scrollTop - clientHeight ;
2017-01-30 12:04:15 -05:00
this . _oldScrollPosition = scrollHeight - scrollTop ;
2016-11-20 13:39:18 -05:00
2017-06-23 20:43:26 -04:00
if ( 250 > offset && this . props . hasMore && ! this . props . isLoading ) {
this . dispatchExpandNotifications ( ) ;
}
if ( scrollTop < 100 ) {
this . dispatchScrollToTop ( true ) ;
2017-02-20 18:10:49 -05:00
} else {
2017-06-23 20:43:26 -04:00
this . dispatchScrollToTop ( false ) ;
2016-11-20 13:39:18 -05:00
}
2017-04-21 14:05:35 -04:00
}
2016-11-20 13:39:18 -05:00
2017-01-30 12:04:15 -05:00
componentDidUpdate ( prevProps ) {
if ( this . node . scrollTop > 0 && ( prevProps . notifications . size < this . props . notifications . size && prevProps . notifications . first ( ) !== this . props . notifications . first ( ) && ! ! this . _oldScrollPosition ) ) {
this . node . scrollTop = this . node . scrollHeight - this . _oldScrollPosition ;
}
2017-04-21 14:05:35 -04:00
}
2017-01-30 12:04:15 -05:00
2017-05-12 08:44:10 -04:00
handleLoadMore = ( e ) => {
2017-01-30 12:04:15 -05:00
e . preventDefault ( ) ;
2017-06-23 20:43:26 -04:00
this . dispatchExpandNotifications ( ) ;
2017-04-21 14:05:35 -04:00
}
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 ( ) ;
}
2017-05-12 08:44:10 -04:00
setRef = ( c ) => {
2017-01-30 12:04:15 -05:00
this . node = c ;
2017-04-21 14:05:35 -04:00
}
2017-01-30 12:04:15 -05:00
2017-06-03 19:39:38 -04:00
setColumnRef = c => {
this . column = c ;
}
2016-11-20 13:39:18 -05:00
render ( ) {
2017-06-05 13:18:26 -04:00
const { intl , notifications , shouldUpdateScroll , isLoading , isUnread , columnId , multiColumn , hasMore } = this . props ;
2017-06-03 19:39:38 -04:00
const pinned = ! ! columnId ;
2017-01-30 12:04:15 -05:00
2017-02-17 20:37:59 -05:00
let loadMore = '' ;
let scrollableArea = '' ;
2017-02-20 18:10:49 -05:00
let unread = '' ;
2017-06-05 09:20:46 -04:00
let scrollContainer = '' ;
2017-01-30 12:04:15 -05:00
2017-07-05 08:51:53 -04:00
if ( ! isLoading && hasMore ) {
2017-01-30 12:04:15 -05:00
loadMore = < LoadMore onClick = { this . handleLoadMore } / > ;
}
2016-11-21 04:03:55 -05:00
2017-02-20 18:10:49 -05:00
if ( isUnread ) {
unread = < div className = 'notifications__unread-indicator' / > ;
}
2017-05-19 19:26:46 -04:00
if ( isLoading && this . scrollableArea ) {
scrollableArea = this . scrollableArea ;
2017-07-05 08:51:53 -04:00
} else if ( notifications . size > 0 || hasMore ) {
2017-02-17 20:37:59 -05:00
scrollableArea = (
< div className = 'scrollable' onScroll = { this . handleScroll } ref = { this . setRef } >
2017-02-20 18:10:49 -05:00
{ unread }
2017-02-17 20:37:59 -05:00
< div >
{ notifications . map ( item => < NotificationContainer key = { item . get ( 'id' ) } notification = { item } accountId = { item . get ( 'account' ) } / > ) }
{ loadMore }
< / d i v >
2016-11-21 04:03:55 -05:00
< / d i v >
2017-02-17 20:37:59 -05:00
) ;
} else {
scrollableArea = (
< div className = 'empty-column-indicator' ref = { this . setRef } >
< FormattedMessage id = 'empty_column.notifications' defaultMessage = "You don't have any notifications yet. Interact with others to start the conversation." / >
< / d i v >
) ;
}
2016-11-21 04:03:55 -05:00
2017-06-05 09:20:46 -04:00
if ( pinned ) {
scrollContainer = scrollableArea ;
} else {
scrollContainer = (
< ScrollContainer scrollKey = { ` notifications- ${ columnId } ` } shouldUpdateScroll = { shouldUpdateScroll } >
{ scrollableArea }
< / S c r o l l C o n t a i n e r >
) ;
}
2017-05-19 19:26:46 -04:00
this . scrollableArea = scrollableArea ;
2017-04-23 22:49:08 -04:00
return (
2017-06-03 19:39:38 -04: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 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
}