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' ;
import Column from '../ui/components/column' ;
import {
refreshTimeline ,
updateTimeline ,
2017-04-02 19:44:06 +00:00
deleteFromTimelines ,
connectTimeline ,
disconnectTimeline
2017-02-19 19:25:54 +00:00
} from '../../actions/timelines' ;
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import ColumnBackButtonSlim from '../../components/column_back_button_slim' ;
import createStream from '../../stream' ;
const messages = defineMessages ( {
2017-04-13 10:57:41 +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-02-19 19:25:54 +00:00
accessToken : state . getIn ( [ 'meta' , 'access_token' ] )
} ) ;
2017-03-01 00:43:29 +00:00
let subscription ;
2017-04-21 18:05:35 +00:00
class CommunityTimeline extends React . PureComponent {
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
dispatch ( refreshTimeline ( 'community' ) ) ;
2017-03-01 00:43:29 +00:00
if ( typeof subscription !== 'undefined' ) {
return ;
}
2017-04-15 00:32:42 +00:00
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-04-21 18:05:35 +00:00
}
2017-02-19 19:25:54 +00:00
componentWillUnmount ( ) {
2017-03-01 00:43:29 +00:00
// if (typeof subscription !== 'undefined') {
// subscription.close();
// subscription = null;
// }
2017-04-21 18:05:35 +00:00
}
2017-02-19 19:25:54 +00:00
render ( ) {
2017-02-23 01:14:35 +00:00
const { intl , hasUnread } = this . props ;
2017-02-19 19:25:54 +00:00
return (
2017-02-23 01:14:35 +00:00
< Column icon = 'users' active = { hasUnread } heading = { intl . formatMessage ( messages . title ) } >
2017-02-19 19:25:54 +00:00
< ColumnBackButtonSlim / >
2017-04-24 02:49:08 +00:00
< StatusListContainer { ...this.props } scrollKey = 'community_timeline' type = 'community' 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
< / Column >
) ;
2017-04-21 18:05:35 +00:00
}
2017-02-19 19:25:54 +00:00
2017-04-21 18:05:35 +00:00
}
CommunityTimeline . propTypes = {
dispatch : PropTypes . func . isRequired ,
intl : PropTypes . object . isRequired ,
streamingAPIBaseURL : PropTypes . string . isRequired ,
accessToken : PropTypes . string . isRequired ,
hasUnread : PropTypes . bool
} ;
2017-02-19 19:25:54 +00:00
export default connect ( mapStateToProps ) ( injectIntl ( CommunityTimeline ) ) ;