2017-05-02 20:04:16 -04:00
import React from 'react' ;
2016-11-09 18:47:47 -05:00
import { connect } from 'react-redux' ;
2017-04-21 14:05:35 -04:00
import PropTypes from 'prop-types' ;
2016-10-12 07:17:17 -04:00
import StatusListContainer from '../ui/containers/status_list_container' ;
2016-11-09 18:47:47 -05:00
import Column from '../ui/components/column' ;
2016-10-07 10:00:11 -04:00
import {
refreshTimeline ,
2016-11-09 18:47:47 -05:00
updateTimeline ,
2017-04-02 15:44:06 -04:00
deleteFromTimelines ,
connectTimeline ,
2017-05-20 11:31:47 -04:00
disconnectTimeline ,
2016-11-09 18:47:47 -05:00
} from '../../actions/timelines' ;
2017-02-19 14:25:54 -05:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-01-30 09:22:04 -05:00
import ColumnBackButtonSlim from '../../components/column_back_button_slim' ;
2017-02-03 18:34:31 -05:00
import createStream from '../../stream' ;
2016-11-18 09:36:16 -05:00
const messages = defineMessages ( {
2017-05-20 11:31:47 -04:00
title : { id : 'column.public' , defaultMessage : 'Federated timeline' } ,
2016-11-18 09:36:16 -05:00
} ) ;
2016-10-07 10:00:11 -04:00
2017-02-03 18:34:31 -05:00
const mapStateToProps = state => ( {
2017-02-22 20:14:35 -05:00
hasUnread : state . getIn ( [ 'timelines' , 'public' , 'unread' ] ) > 0 ,
2017-04-14 20:32:42 -04:00
streamingAPIBaseURL : state . getIn ( [ 'meta' , 'streaming_api_base_url' ] ) ,
2017-05-20 11:31:47 -04:00
accessToken : state . getIn ( [ 'meta' , 'access_token' ] ) ,
2017-02-03 18:34:31 -05:00
} ) ;
2017-02-28 19:43:29 -05:00
let subscription ;
2017-04-21 14:05:35 -04:00
class PublicTimeline extends React . PureComponent {
2016-10-07 10:00:11 -04:00
2017-05-12 08:44:10 -04:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
intl : PropTypes . object . isRequired ,
streamingAPIBaseURL : PropTypes . string . isRequired ,
accessToken : PropTypes . string . isRequired ,
2017-05-20 11:31:47 -04:00
hasUnread : PropTypes . bool ,
2017-05-12 08:44:10 -04:00
} ;
2017-02-03 18:34:31 -05:00
componentDidMount ( ) {
2017-04-14 20:32:42 -04:00
const { dispatch , streamingAPIBaseURL , accessToken } = this . props ;
2016-10-07 10:00:11 -04:00
dispatch ( refreshTimeline ( 'public' ) ) ;
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' , {
2016-10-07 10:00:11 -04:00
2017-04-02 15:44:06 -04:00
connected ( ) {
dispatch ( connectTimeline ( 'public' ) ) ;
} ,
reconnected ( ) {
dispatch ( connectTimeline ( 'public' ) ) ;
} ,
disconnected ( ) {
dispatch ( disconnectTimeline ( 'public' ) ) ;
} ,
2017-02-03 18:34:31 -05:00
received ( data ) {
switch ( data . event ) {
case 'update' :
dispatch ( updateTimeline ( 'public' , JSON . parse ( data . payload ) ) ) ;
break ;
case 'delete' :
dispatch ( deleteFromTimelines ( data . payload ) ) ;
break ;
2016-10-07 10:00:11 -04:00
}
2017-05-20 11:31:47 -04:00
} ,
2016-10-07 10:00:11 -04:00
2017-02-03 18:34:31 -05:00
} ) ;
2017-04-21 14:05:35 -04:00
}
2016-10-07 10:00:11 -04:00
componentWillUnmount ( ) {
2017-02-28 19:43:29 -05:00
// if (typeof subscription !== 'undefined') {
// subscription.close();
// subscription = null;
// }
2017-04-21 14:05:35 -04:00
}
2016-10-07 10:00:11 -04:00
render ( ) {
2017-02-22 20:14:35 -05:00
const { intl , hasUnread } = this . props ;
2016-11-16 11:20:52 -05:00
2016-10-07 10:00:11 -04:00
return (
2017-02-22 20:14:35 -05:00
< Column icon = 'globe' active = { hasUnread } heading = { intl . formatMessage ( messages . title ) } >
2017-01-30 09:22:04 -05:00
< ColumnBackButtonSlim / >
2017-04-23 22:49:08 -04:00
< StatusListContainer { ... this . props } type = 'public' scrollKey = 'public_timeline' emptyMessage = { < FormattedMessage id = 'empty_column.public' defaultMessage = 'There is nothing here! Write something publicly, or manually follow users from other instances to fill it up' / > } / >
2016-10-07 10:00:11 -04:00
< / C o l u m n >
) ;
2017-04-21 14:05:35 -04:00
}
2016-10-07 10:00:11 -04:00
2017-04-21 14:05:35 -04:00
}
2017-02-03 18:34:31 -05:00
export default connect ( mapStateToProps ) ( injectIntl ( PublicTimeline ) ) ;