2017-02-19 19:25:54 +00: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 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-02-19 20:49:14 +00:00
title : { id : 'column.community' , defaultMessage : 'Local' }
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-02-19 19:25:54 +00:00
accessToken : state . getIn ( [ 'meta' , 'access_token' ] )
} ) ;
2017-03-01 00:43:29 +00:00
let subscription ;
2017-02-19 19:25:54 +00:00
const CommunityTimeline = React . createClass ( {
propTypes : {
dispatch : React . PropTypes . func . isRequired ,
intl : React . PropTypes . object . isRequired ,
2017-02-23 01:14:35 +00:00
accessToken : React . PropTypes . string . isRequired ,
hasUnread : React . PropTypes . bool
2017-02-19 19:25:54 +00:00
} ,
mixins : [ PureRenderMixin ] ,
componentDidMount ( ) {
const { dispatch , accessToken } = this . props ;
dispatch ( refreshTimeline ( 'community' ) ) ;
2017-03-01 00:43:29 +00:00
if ( typeof subscription !== 'undefined' ) {
return ;
}
subscription = createStream ( 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 ;
}
}
} ) ;
} ,
componentWillUnmount ( ) {
2017-03-01 00:43:29 +00:00
// if (typeof subscription !== 'undefined') {
// subscription.close();
// subscription = null;
// }
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-02-19 20:49:14 +00: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 19:25:54 +00:00
< / Column >
) ;
} ,
} ) ;
export default connect ( mapStateToProps ) ( injectIntl ( CommunityTimeline ) ) ;