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' ;
2018-05-21 06:43:38 -04:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
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' ;
2017-06-03 19:39:38 -04:00
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2018-03-24 10:25:15 -04:00
import { expandPublicTimeline } from '../../actions/timelines' ;
2018-06-15 05:15:15 -04:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
2017-06-06 10:56:10 -04:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2017-08-21 09:04:34 -04:00
import { connectPublicStream } from '../../actions/streaming' ;
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
2019-11-10 17:05:02 -05:00
const mapStateToProps = ( state , { columnId } ) => {
2018-06-15 05:15:15 -04:00
const uuid = columnId ;
const columns = state . getIn ( [ 'settings' , 'columns' ] ) ;
const index = columns . findIndex ( c => c . get ( 'uuid' ) === uuid ) ;
2019-11-10 17:05:02 -05:00
const onlyMedia = ( columnId && index >= 0 ) ? columns . get ( index ) . getIn ( [ 'params' , 'other' , 'onlyMedia' ] ) : state . getIn ( [ 'settings' , 'public' , 'other' , 'onlyMedia' ] ) ;
2020-05-10 04:36:18 -04:00
const onlyRemote = ( columnId && index >= 0 ) ? columns . get ( index ) . getIn ( [ 'params' , 'other' , 'onlyRemote' ] ) : state . getIn ( [ 'settings' , 'public' , 'other' , 'onlyRemote' ] ) ;
2019-11-10 17:05:02 -05:00
const timelineState = state . getIn ( [ 'timelines' , ` public ${ onlyMedia ? ':media' : '' } ` ] ) ;
2018-06-15 05:15:15 -04:00
return {
2019-11-10 17:05:02 -05:00
hasUnread : ! ! timelineState && timelineState . get ( 'unread' ) > 0 ,
onlyMedia ,
2020-05-10 04:36:18 -04:00
onlyRemote ,
2018-06-15 05:15:15 -04:00
} ;
} ;
2017-02-03 18:34:31 -05:00
2018-09-14 11:59:48 -04:00
export default @ connect ( mapStateToProps )
2017-06-23 13:36:54 -04:00
@ injectIntl
2018-09-14 11:59:48 -04:00
class PublicTimeline extends React . PureComponent {
2016-10-07 10:00:11 -04:00
2018-06-15 05:15:15 -04:00
static contextTypes = {
router : PropTypes . object ,
} ;
2018-05-21 06:43:38 -04:00
static defaultProps = {
onlyMedia : false ,
} ;
2017-05-12 08:44:10 -04:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
2018-07-29 10:52:06 -04:00
shouldUpdateScroll : PropTypes . func ,
2017-05-12 08:44:10 -04:00
intl : PropTypes . object . isRequired ,
2017-06-03 19:39:38 -04:00
columnId : PropTypes . string ,
multiColumn : PropTypes . bool ,
2017-05-20 11:31:47 -04:00
hasUnread : PropTypes . bool ,
2018-05-21 06:43:38 -04:00
onlyMedia : PropTypes . bool ,
2020-05-10 04:36:18 -04:00
onlyRemote : PropTypes . bool ,
2017-05-12 08:44:10 -04:00
} ;
2017-06-03 19:39:38 -04:00
handlePin = ( ) => {
2020-05-10 04:36:18 -04:00
const { columnId , dispatch , onlyMedia , onlyRemote } = this . props ;
2017-06-03 19:39:38 -04:00
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
2020-05-10 04:36:18 -04:00
dispatch ( addColumn ( onlyRemote ? 'REMOTE' : 'PUBLIC' , { other : { onlyMedia , onlyRemote } } ) ) ;
2017-06-03 19:39:38 -04:00
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
2017-02-03 18:34:31 -05:00
componentDidMount ( ) {
2020-05-10 04:36:18 -04:00
const { dispatch , onlyMedia , onlyRemote } = this . props ;
2016-10-07 10:00:11 -04:00
2020-05-10 04:36:18 -04:00
dispatch ( expandPublicTimeline ( { onlyMedia , onlyRemote } ) ) ;
this . disconnect = dispatch ( connectPublicStream ( { onlyMedia , onlyRemote } ) ) ;
2017-04-21 14:05:35 -04:00
}
2016-10-07 10:00:11 -04:00
2018-05-22 07:26:06 -04:00
componentDidUpdate ( prevProps ) {
2020-05-10 04:36:18 -04:00
if ( prevProps . onlyMedia !== this . props . onlyMedia || prevProps . onlyRemote !== this . props . onlyRemote ) {
const { dispatch , onlyMedia , onlyRemote } = this . props ;
2018-05-22 07:26:06 -04:00
this . disconnect ( ) ;
2020-05-10 04:36:18 -04:00
dispatch ( expandPublicTimeline ( { onlyMedia , onlyRemote } ) ) ;
this . disconnect = dispatch ( connectPublicStream ( { onlyMedia , onlyRemote } ) ) ;
2018-05-22 07:26:06 -04:00
}
}
2016-10-07 10:00:11 -04:00
componentWillUnmount ( ) {
2017-08-21 09:04:34 -04:00
if ( this . disconnect ) {
this . disconnect ( ) ;
this . disconnect = null ;
2017-06-03 19:39:38 -04:00
}
}
setRef = c => {
this . column = c ;
2017-04-21 14:05:35 -04:00
}
2016-10-07 10:00:11 -04:00
2018-03-24 10:25:15 -04:00
handleLoadMore = maxId => {
2020-05-10 04:36:18 -04:00
const { dispatch , onlyMedia , onlyRemote } = this . props ;
2018-05-21 06:43:38 -04:00
2020-05-10 04:36:18 -04:00
dispatch ( expandPublicTimeline ( { maxId , onlyMedia , onlyRemote } ) ) ;
2017-06-11 11:07:35 -04:00
}
2016-10-07 10:00:11 -04:00
render ( ) {
2020-05-10 04:36:18 -04:00
const { intl , shouldUpdateScroll , columnId , hasUnread , multiColumn , onlyMedia , onlyRemote } = this . props ;
2017-06-03 19:39:38 -04:00
const pinned = ! ! columnId ;
2016-11-16 11:20:52 -05:00
2016-10-07 10:00:11 -04:00
return (
2019-08-01 13:17:17 -04:00
< Column bindToDocument = { ! multiColumn } ref = { this . setRef } label = { intl . formatMessage ( messages . title ) } >
2017-06-03 19:39:38 -04:00
< ColumnHeader
icon = 'globe'
active = { hasUnread }
title = { intl . formatMessage ( messages . title ) }
onPin = { this . handlePin }
onMove = { this . handleMove }
onClick = { this . handleHeaderClick }
pinned = { pinned }
multiColumn = { multiColumn }
2017-06-06 10:56:10 -04:00
>
2018-12-18 16:00:18 -05:00
< ColumnSettingsContainer columnId = { columnId } / >
2017-06-06 10:56:10 -04:00
< / C o l u m n H e a d e r >
2017-06-03 19:39:38 -04:00
< StatusListContainer
2020-05-10 04:36:18 -04:00
timelineId = { ` public ${ onlyRemote ? ':remote' : '' } ${ onlyMedia ? ':media' : '' } ` }
2018-03-24 10:25:15 -04:00
onLoadMore = { this . handleLoadMore }
2017-06-05 09:20:46 -04:00
trackScroll = { ! pinned }
2017-06-03 19:39:38 -04:00
scrollKey = { ` public_timeline- ${ columnId } ` }
2019-02-05 13:11:24 -05:00
emptyMessage = { < FormattedMessage id = 'empty_column.public' defaultMessage = 'There is nothing here! Write something publicly, or manually follow users from other servers to fill it up' / > }
2018-07-29 10:52:06 -04:00
shouldUpdateScroll = { shouldUpdateScroll }
2019-07-19 03:25:22 -04:00
bindToDocument = { ! multiColumn }
2017-06-03 19:39:38 -04:00
/ >
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
}