2017-05-03 00:04:16 +00:00
import React from 'react' ;
2017-02-19 19:25:54 +00:00
import { connect } from 'react-redux' ;
2017-04-21 18:05:35 +00:00
import PropTypes from 'prop-types' ;
2017-02-19 19:25:54 +00:00
import StatusListContainer from '../ui/containers/status_list_container' ;
2017-06-03 23:39:38 +00:00
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2017-02-19 19:25:54 +00:00
import {
2017-06-11 15:07:35 +00:00
refreshCommunityTimeline ,
expandCommunityTimeline ,
2017-02-19 19:25:54 +00:00
updateTimeline ,
2017-04-02 19:44:06 +00:00
deleteFromTimelines ,
connectTimeline ,
2017-05-20 15:31:47 +00:00
disconnectTimeline ,
2017-02-19 19:25:54 +00:00
} from '../../actions/timelines' ;
2017-06-03 23:39:38 +00:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
2017-02-19 19:25:54 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-06-06 14:56:10 +00:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2017-02-19 19:25:54 +00:00
import createStream from '../../stream' ;
const messages = defineMessages ( {
2017-05-20 15:31:47 +00:00
title : { id : 'column.community' , defaultMessage : 'Local timeline' } ,
2017-02-19 19:25:54 +00:00
} ) ;
const mapStateToProps = state => ( {
2017-02-26 00:27:22 +00:00
hasUnread : state . getIn ( [ 'timelines' , 'community' , 'unread' ] ) > 0 ,
2017-04-15 00:32:42 +00:00
streamingAPIBaseURL : state . getIn ( [ 'meta' , 'streaming_api_base_url' ] ) ,
2017-05-20 15:31:47 +00:00
accessToken : state . getIn ( [ 'meta' , 'access_token' ] ) ,
2017-02-19 19:25:54 +00:00
} ) ;
2017-06-23 17:36:54 +00:00
@ connect ( mapStateToProps )
@ injectIntl
export default class CommunityTimeline extends React . PureComponent {
2017-02-19 19:25:54 +00:00
2017-05-12 12:44:10 +00:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
2017-06-03 23:39:38 +00:00
columnId : PropTypes . string ,
2017-05-12 12:44:10 +00:00
intl : PropTypes . object . isRequired ,
streamingAPIBaseURL : PropTypes . string . isRequired ,
accessToken : PropTypes . string . isRequired ,
2017-05-20 15:31:47 +00:00
hasUnread : PropTypes . bool ,
2017-06-03 23:39:38 +00:00
multiColumn : PropTypes . bool ,
2017-05-12 12:44:10 +00:00
} ;
2017-06-03 23:39:38 +00:00
handlePin = ( ) => {
const { columnId , dispatch } = this . props ;
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
dispatch ( addColumn ( 'COMMUNITY' , { } ) ) ;
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
2017-02-19 19:25:54 +00:00
componentDidMount ( ) {
2017-04-15 00:32:42 +00:00
const { dispatch , streamingAPIBaseURL , accessToken } = this . props ;
2017-02-19 19:25:54 +00:00
2017-06-11 15:07:35 +00:00
dispatch ( refreshCommunityTimeline ( ) ) ;
2017-02-19 19:25:54 +00:00
2017-06-03 23:39:38 +00:00
if ( typeof this . _subscription !== 'undefined' ) {
2017-03-01 00:43:29 +00:00
return ;
}
2017-06-03 23:39:38 +00:00
this . _subscription = createStream ( streamingAPIBaseURL , accessToken , 'public:local' , {
2017-02-19 19:25:54 +00:00
2017-04-02 19:44:06 +00:00
connected ( ) {
dispatch ( connectTimeline ( 'community' ) ) ;
} ,
reconnected ( ) {
dispatch ( connectTimeline ( 'community' ) ) ;
} ,
disconnected ( ) {
dispatch ( disconnectTimeline ( 'community' ) ) ;
} ,
2017-02-19 19:25:54 +00:00
received ( data ) {
switch ( data . event ) {
case 'update' :
dispatch ( updateTimeline ( 'community' , JSON . parse ( data . payload ) ) ) ;
break ;
case 'delete' :
dispatch ( deleteFromTimelines ( data . payload ) ) ;
break ;
}
2017-05-20 15:31:47 +00:00
} ,
2017-02-19 19:25:54 +00:00
} ) ;
2017-04-21 18:05:35 +00:00
}
2017-02-19 19:25:54 +00:00
componentWillUnmount ( ) {
2017-06-03 23:39:38 +00:00
if ( typeof this . _subscription !== 'undefined' ) {
this . _subscription . close ( ) ;
this . _subscription = null ;
}
}
setRef = c => {
this . column = c ;
2017-04-21 18:05:35 +00:00
}
2017-02-19 19:25:54 +00:00
2017-06-11 15:07:35 +00:00
handleLoadMore = ( ) => {
this . props . dispatch ( expandCommunityTimeline ( ) ) ;
}
2017-02-19 19:25:54 +00:00
render ( ) {
2017-06-03 23:39:38 +00:00
const { intl , hasUnread , columnId , multiColumn } = this . props ;
const pinned = ! ! columnId ;
2017-02-19 19:25:54 +00:00
return (
2017-06-03 23:39:38 +00:00
< Column ref = { this . setRef } >
< ColumnHeader
icon = 'users'
active = { hasUnread }
title = { intl . formatMessage ( messages . title ) }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
2017-06-06 14:56:10 +00:00
>
< ColumnSettingsContainer / >
< / C o l u m n H e a d e r >
2017-06-03 23:39:38 +00:00
< StatusListContainer
2017-06-05 13:20:46 +00:00
trackScroll = { ! pinned }
2017-06-03 23:39:38 +00:00
scrollKey = { ` community_timeline- ${ columnId } ` }
2017-06-11 15:07:35 +00:00
timelineId = 'community'
loadMore = { this . handleLoadMore }
2017-06-03 23:39:38 +00:00
emptyMessage = { < FormattedMessage id = 'empty_column.community' defaultMessage = 'The local timeline is empty. Write something publicly to get the ball rolling!' / > }
/ >
2017-02-19 19:25:54 +00:00
< / C o l u m n >
) ;
2017-04-21 18:05:35 +00:00
}
2017-02-19 19:25:54 +00:00
2017-04-21 18:05:35 +00:00
}