2017-05-02 20:04:16 -04:00
import React from 'react' ;
2017-02-19 14:25:54 -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' ;
2017-02-19 14:25:54 -05: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 { expandCommunityTimeline } 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 { connectCommunityStream } from '../../actions/streaming' ;
2017-02-19 14:25:54 -05:00
const messages = defineMessages ( {
2017-05-20 11:31:47 -04:00
title : { id : 'column.community' , defaultMessage : 'Local timeline' } ,
2017-02-19 14:25:54 -05:00
} ) ;
2018-06-15 05:15:15 -04:00
const mapStateToProps = ( state , { onlyMedia , columnId } ) => {
const uuid = columnId ;
const columns = state . getIn ( [ 'settings' , 'columns' ] ) ;
const index = columns . findIndex ( c => c . get ( 'uuid' ) === uuid ) ;
return {
2019-09-16 09:45:06 -04:00
hasUnread : state . getIn ( [ 'timelines' , ` community ${ onlyMedia ? ':media' : '' } ` , 'unread' ] ) > 0 || state . getIn ( [ 'timelines' , ` community ${ onlyMedia ? ':media' : '' } ` , 'pendingItems' ] ) . size > 0 ,
2018-06-15 05:15:15 -04:00
onlyMedia : ( columnId && index >= 0 ) ? columns . get ( index ) . getIn ( [ 'params' , 'other' , 'onlyMedia' ] ) : state . getIn ( [ 'settings' , 'community' , 'other' , 'onlyMedia' ] ) ,
} ;
} ;
2017-02-19 14:25:54 -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 CommunityTimeline extends React . PureComponent {
2017-02-19 14:25:54 -05: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-06-03 19:39:38 -04:00
columnId : PropTypes . string ,
2017-05-12 08:44:10 -04:00
intl : PropTypes . object . isRequired ,
2017-05-20 11:31:47 -04:00
hasUnread : PropTypes . bool ,
2017-06-03 19:39:38 -04:00
multiColumn : PropTypes . bool ,
2018-05-21 06:43:38 -04:00
onlyMedia : PropTypes . bool ,
2017-05-12 08:44:10 -04:00
} ;
2017-06-03 19:39:38 -04:00
handlePin = ( ) => {
2018-05-21 11:49:10 -04:00
const { columnId , dispatch , onlyMedia } = this . props ;
2017-06-03 19:39:38 -04:00
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
2018-05-21 11:49:10 -04:00
dispatch ( addColumn ( 'COMMUNITY' , { other : { onlyMedia } } ) ) ;
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-19 14:25:54 -05:00
componentDidMount ( ) {
2018-05-21 06:43:38 -04:00
const { dispatch , onlyMedia } = this . props ;
2017-02-19 14:25:54 -05:00
2018-05-21 06:43:38 -04:00
dispatch ( expandCommunityTimeline ( { onlyMedia } ) ) ;
this . disconnect = dispatch ( connectCommunityStream ( { onlyMedia } ) ) ;
2017-04-21 14:05:35 -04:00
}
2017-02-19 14:25:54 -05:00
2018-05-22 07:26:06 -04:00
componentDidUpdate ( prevProps ) {
if ( prevProps . onlyMedia !== this . props . onlyMedia ) {
const { dispatch , onlyMedia } = this . props ;
this . disconnect ( ) ;
dispatch ( expandCommunityTimeline ( { onlyMedia } ) ) ;
this . disconnect = dispatch ( connectCommunityStream ( { onlyMedia } ) ) ;
}
}
2017-02-19 14:25:54 -05: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
}
2017-02-19 14:25:54 -05:00
2018-03-24 10:25:15 -04:00
handleLoadMore = maxId => {
2018-05-21 06:43:38 -04:00
const { dispatch , onlyMedia } = this . props ;
dispatch ( expandCommunityTimeline ( { maxId , onlyMedia } ) ) ;
2017-06-11 11:07:35 -04:00
}
2017-02-19 14:25:54 -05:00
render ( ) {
2018-07-29 10:52:06 -04:00
const { intl , shouldUpdateScroll , hasUnread , columnId , multiColumn , onlyMedia } = this . props ;
2017-06-03 19:39:38 -04:00
const pinned = ! ! columnId ;
2017-02-19 14:25:54 -05: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 = 'users'
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-06-15 05:15:15 -04: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
2017-06-05 09:20:46 -04:00
trackScroll = { ! pinned }
2017-06-03 19:39:38 -04:00
scrollKey = { ` community_timeline- ${ columnId } ` }
2018-05-21 06:43:38 -04:00
timelineId = { ` community ${ onlyMedia ? ':media' : '' } ` }
2018-03-24 10:25:15 -04:00
onLoadMore = { this . handleLoadMore }
2017-06-03 19:39:38 -04:00
emptyMessage = { < FormattedMessage id = 'empty_column.community' defaultMessage = 'The local timeline is empty. Write something publicly to get the ball rolling!' / > }
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
/ >
2017-02-19 14:25:54 -05:00
< / C o l u m n >
) ;
2017-04-21 14:05:35 -04:00
}
2017-02-19 14:25:54 -05:00
2017-04-21 14:05:35 -04:00
}