2017-05-03 00:04:16 +00:00
import React from 'react' ;
2016-11-09 23:47:47 +00:00
import { connect } from 'react-redux' ;
2017-04-21 18:05:35 +00:00
import PropTypes from 'prop-types' ;
2016-10-12 11:17:17 +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' ;
2016-10-07 14:00:11 +00:00
import {
refreshTimeline ,
2016-11-09 23:47:47 +00:00
updateTimeline ,
2017-04-02 19:44:06 +00:00
deleteFromTimelines ,
connectTimeline ,
2017-05-20 15:31:47 +00:00
disconnectTimeline ,
2016-11-09 23:47:47 +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-01-30 14:22:04 +00:00
import ColumnBackButtonSlim from '../../components/column_back_button_slim' ;
2017-02-03 23:34:31 +00:00
import createStream from '../../stream' ;
2016-11-18 14:36:16 +00:00
const messages = defineMessages ( {
2017-05-20 15:31:47 +00:00
title : { id : 'column.public' , defaultMessage : 'Federated timeline' } ,
2016-11-18 14:36:16 +00:00
} ) ;
2016-10-07 14:00:11 +00:00
2017-02-03 23:34:31 +00:00
const mapStateToProps = state => ( {
2017-02-23 01:14:35 +00:00
hasUnread : state . getIn ( [ 'timelines' , 'public' , '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-03 23:34:31 +00:00
} ) ;
2017-04-21 18:05:35 +00:00
class PublicTimeline extends React . PureComponent {
2016-10-07 14:00:11 +00:00
2017-05-12 12:44:10 +00:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
intl : PropTypes . object . isRequired ,
2017-06-03 23:39:38 +00:00
columnId : PropTypes . string ,
multiColumn : PropTypes . bool ,
2017-05-12 12:44:10 +00:00
streamingAPIBaseURL : PropTypes . string . isRequired ,
accessToken : PropTypes . string . isRequired ,
2017-05-20 15:31:47 +00:00
hasUnread : 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 ( 'PUBLIC' , { } ) ) ;
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
2017-02-03 23:34:31 +00:00
componentDidMount ( ) {
2017-04-15 00:32:42 +00:00
const { dispatch , streamingAPIBaseURL , accessToken } = this . props ;
2016-10-07 14:00:11 +00:00
dispatch ( refreshTimeline ( 'public' ) ) ;
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' , {
2016-10-07 14:00:11 +00:00
2017-04-02 19:44:06 +00:00
connected ( ) {
dispatch ( connectTimeline ( 'public' ) ) ;
} ,
reconnected ( ) {
dispatch ( connectTimeline ( 'public' ) ) ;
} ,
disconnected ( ) {
dispatch ( disconnectTimeline ( 'public' ) ) ;
} ,
2017-02-03 23:34:31 +00: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 14:00:11 +00:00
}
2017-05-20 15:31:47 +00:00
} ,
2016-10-07 14:00:11 +00:00
2017-02-03 23:34:31 +00:00
} ) ;
2017-04-21 18:05:35 +00:00
}
2016-10-07 14:00:11 +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
}
2016-10-07 14:00:11 +00:00
render ( ) {
2017-06-03 23:39:38 +00:00
const { intl , columnId , hasUnread , multiColumn } = this . props ;
const pinned = ! ! columnId ;
2016-11-16 16:20:52 +00:00
2016-10-07 14:00:11 +00:00
return (
2017-06-03 23:39:38 +00:00
< Column ref = { this . setRef } >
< ColumnHeader
icon = 'globe'
active = { hasUnread }
title = { intl . formatMessage ( messages . title ) }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
/ >
< StatusListContainer
{ ... this . props }
type = 'public'
2017-06-05 13:20:46 +00:00
trackScroll = { ! pinned }
2017-06-03 23:39:38 +00:00
scrollKey = { ` public_timeline- ${ columnId } ` }
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 14:00:11 +00:00
< / C o l u m n >
) ;
2017-04-21 18:05:35 +00:00
}
2016-10-07 14:00:11 +00:00
2017-04-21 18:05:35 +00:00
}
2017-02-03 23:34:31 +00:00
export default connect ( mapStateToProps ) ( injectIntl ( PublicTimeline ) ) ;