2017-02-19 14:25:54 -05:00
import { connect } from 'react-redux' ;
import PureRenderMixin from 'react-addons-pure-render-mixin' ;
import StatusListContainer from '../ui/containers/status_list_container' ;
import Column from '../ui/components/column' ;
import {
refreshTimeline ,
updateTimeline ,
2017-04-02 15:44:06 -04:00
deleteFromTimelines ,
connectTimeline ,
disconnectTimeline
2017-02-19 14:25:54 -05: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 06:57:41 -04:00
title : { id : 'column.community' , defaultMessage : 'Local timeline' }
2017-02-19 14:25:54 -05:00
} ) ;
const mapStateToProps = state => ( {
2017-02-25 19:27:22 -05:00
hasUnread : state . getIn ( [ 'timelines' , 'community' , 'unread' ] ) > 0 ,
2017-04-14 20:32:42 -04:00
streamingAPIBaseURL : state . getIn ( [ 'meta' , 'streaming_api_base_url' ] ) ,
2017-02-19 14:25:54 -05:00
accessToken : state . getIn ( [ 'meta' , 'access_token' ] )
} ) ;
2017-02-28 19:43:29 -05:00
let subscription ;
2017-02-19 14:25:54 -05:00
const CommunityTimeline = React . createClass ( {
propTypes : {
dispatch : React . PropTypes . func . isRequired ,
intl : React . PropTypes . object . isRequired ,
2017-04-14 20:32:42 -04:00
streamingAPIBaseURL : React . PropTypes . string . isRequired ,
2017-02-22 20:14:35 -05:00
accessToken : React . PropTypes . string . isRequired ,
hasUnread : React . PropTypes . bool
2017-02-19 14:25:54 -05:00
} ,
mixins : [ PureRenderMixin ] ,
componentDidMount ( ) {
2017-04-14 20:32:42 -04:00
const { dispatch , streamingAPIBaseURL , accessToken } = this . props ;
2017-02-19 14:25:54 -05:00
dispatch ( refreshTimeline ( 'community' ) ) ;
2017-02-28 19:43:29 -05:00
if ( typeof subscription !== 'undefined' ) {
return ;
}
2017-04-14 20:32:42 -04:00
subscription = createStream ( streamingAPIBaseURL , accessToken , 'public:local' , {
2017-02-19 14:25:54 -05:00
2017-04-02 15:44:06 -04:00
connected ( ) {
dispatch ( connectTimeline ( 'community' ) ) ;
} ,
reconnected ( ) {
dispatch ( connectTimeline ( 'community' ) ) ;
} ,
disconnected ( ) {
dispatch ( disconnectTimeline ( 'community' ) ) ;
} ,
2017-02-19 14:25:54 -05:00
received ( data ) {
switch ( data . event ) {
case 'update' :
dispatch ( updateTimeline ( 'community' , JSON . parse ( data . payload ) ) ) ;
break ;
case 'delete' :
dispatch ( deleteFromTimelines ( data . payload ) ) ;
break ;
}
}
} ) ;
} ,
componentWillUnmount ( ) {
2017-02-28 19:43:29 -05:00
// if (typeof subscription !== 'undefined') {
// subscription.close();
// subscription = null;
// }
2017-02-19 14:25:54 -05:00
} ,
render ( ) {
2017-02-22 20:14:35 -05:00
const { intl , hasUnread } = this . props ;
2017-02-19 14:25:54 -05:00
return (
2017-02-22 20:14:35 -05:00
< Column icon = 'users' active = { hasUnread } heading = { intl . formatMessage ( messages . title ) } >
2017-02-19 14:25:54 -05:00
< ColumnBackButtonSlim / >
2017-02-19 15:49:14 -05:00
< StatusListContainer 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 14:25:54 -05:00
< / Column >
) ;
} ,
} ) ;
export default connect ( mapStateToProps ) ( injectIntl ( CommunityTimeline ) ) ;