2017-05-03 02:04:16 +02:00
import React from 'react' ;
2017-02-19 20:25:54 +01:00
import { connect } from 'react-redux' ;
2018-05-27 20:55:11 +02:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-04-21 20:05:35 +02:00
import PropTypes from 'prop-types' ;
2017-12-04 08:26:40 +01:00
import StatusListContainer from 'flavours/glitch/features/ui/containers/status_list_container' ;
import Column from 'flavours/glitch/components/column' ;
import ColumnHeader from 'flavours/glitch/components/column_header' ;
2018-05-27 19:10:37 +02:00
import { expandCommunityTimeline } from 'flavours/glitch/actions/timelines' ;
2018-12-18 18:52:37 +01:00
import { addColumn , removeColumn , moveColumn } from 'flavours/glitch/actions/columns' ;
2017-06-06 16:56:10 +02:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2017-12-04 08:26:40 +01:00
import { connectCommunityStream } from 'flavours/glitch/actions/streaming' ;
2017-02-19 20:25:54 +01:00
const messages = defineMessages ( {
2017-05-20 17:31:47 +02:00
title : { id : 'column.community' , defaultMessage : 'Local timeline' } ,
2017-02-19 20:25:54 +01:00
} ) ;
2019-11-10 23:05:02 +01:00
const mapStateToProps = ( state , { columnId } ) => {
2018-12-18 18:52:37 +01:00
const uuid = columnId ;
const columns = state . getIn ( [ 'settings' , 'columns' ] ) ;
const index = columns . findIndex ( c => c . get ( 'uuid' ) === uuid ) ;
2019-11-10 23:05:02 +01:00
const onlyMedia = ( columnId && index >= 0 ) ? columns . get ( index ) . getIn ( [ 'params' , 'other' , 'onlyMedia' ] ) : state . getIn ( [ 'settings' , 'community' , 'other' , 'onlyMedia' ] ) ;
2022-09-02 11:57:06 +02:00
const regex = ( columnId && index >= 0 ) ? columns . get ( index ) . getIn ( [ 'params' , 'regex' , 'body' ] ) : state . getIn ( [ 'settings' , 'community' , 'regex' , 'body' ] ) ;
2019-09-18 04:02:21 +02:00
const timelineState = state . getIn ( [ 'timelines' , ` community ${ onlyMedia ? ':media' : '' } ` ] ) ;
2018-12-18 18:52:37 +01:00
return {
2019-11-10 23:05:02 +01:00
hasUnread : ! ! timelineState && timelineState . get ( 'unread' ) > 0 ,
onlyMedia ,
2022-09-02 11:57:06 +02:00
regex ,
2018-12-18 18:52:37 +01:00
} ;
} ;
2017-02-19 20:25:54 +01:00
2019-09-09 15:16:08 +02:00
export default @ connect ( mapStateToProps )
2017-06-23 19:36:54 +02:00
@ injectIntl
2019-09-09 15:16:08 +02:00
class CommunityTimeline extends React . PureComponent {
2017-02-19 20:25:54 +01:00
2018-05-27 20:55:11 +02:00
static defaultProps = {
onlyMedia : false ,
} ;
2018-12-18 18:52:37 +01:00
static contextTypes = {
router : PropTypes . object ,
} ;
2017-05-12 14:44:10 +02:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
2017-06-04 01:39:38 +02:00
columnId : PropTypes . string ,
2017-05-12 14:44:10 +02:00
intl : PropTypes . object . isRequired ,
2017-05-20 17:31:47 +02:00
hasUnread : PropTypes . bool ,
2017-06-04 01:39:38 +02:00
multiColumn : PropTypes . bool ,
2018-05-27 20:55:11 +02:00
onlyMedia : PropTypes . bool ,
2022-09-02 11:57:06 +02:00
regex : PropTypes . string ,
2017-05-12 14:44:10 +02:00
} ;
2017-06-04 01:39:38 +02:00
handlePin = ( ) => {
2018-05-27 21:23:56 +02:00
const { columnId , dispatch , onlyMedia } = this . props ;
2017-06-04 01:39:38 +02:00
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
2018-05-27 21:23:56 +02:00
dispatch ( addColumn ( 'COMMUNITY' , { other : { onlyMedia } } ) ) ;
2017-06-04 01:39:38 +02:00
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
2017-02-19 20:25:54 +01:00
componentDidMount ( ) {
2018-05-27 20:55:11 +02:00
const { dispatch , onlyMedia } = this . props ;
2017-02-19 20:25:54 +01:00
2018-05-27 20:55:11 +02:00
dispatch ( expandCommunityTimeline ( { onlyMedia } ) ) ;
this . disconnect = dispatch ( connectCommunityStream ( { onlyMedia } ) ) ;
2017-04-21 20:05:35 +02:00
}
2017-02-19 20:25:54 +01:00
2018-05-27 21:26:33 +02: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 20:25:54 +01:00
componentWillUnmount ( ) {
2017-08-21 15:04:34 +02:00
if ( this . disconnect ) {
this . disconnect ( ) ;
this . disconnect = null ;
2017-06-04 01:39:38 +02:00
}
}
setRef = c => {
this . column = c ;
2017-04-21 20:05:35 +02:00
}
2017-02-19 20:25:54 +01:00
2018-05-27 19:10:37 +02:00
handleLoadMore = maxId => {
2018-05-27 20:55:11 +02:00
const { dispatch , onlyMedia } = this . props ;
dispatch ( expandCommunityTimeline ( { maxId , onlyMedia } ) ) ;
2017-06-11 17:07:35 +02:00
}
2017-02-19 20:25:54 +01:00
render ( ) {
2018-05-27 20:55:11 +02:00
const { intl , hasUnread , columnId , multiColumn , onlyMedia } = this . props ;
2017-06-04 01:39:38 +02:00
const pinned = ! ! columnId ;
2017-02-19 20:25:54 +01:00
return (
2019-08-01 19:17:17 +02:00
< Column ref = { this . setRef } name = 'local' bindToDocument = { ! multiColumn } label = { intl . formatMessage ( messages . title ) } >
2017-06-04 01:39:38 +02: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 16:56:10 +02:00
>
2018-12-18 18:52:37 +01:00
< ColumnSettingsContainer columnId = { columnId } / >
2017-06-06 16:56:10 +02:00
< / C o l u m n H e a d e r >
2017-06-04 01:39:38 +02:00
< StatusListContainer
2017-06-05 15:20:46 +02:00
trackScroll = { ! pinned }
2017-06-04 01:39:38 +02:00
scrollKey = { ` community_timeline- ${ columnId } ` }
2018-05-27 20:55:11 +02:00
timelineId = { ` community ${ onlyMedia ? ':media' : '' } ` }
2018-05-27 19:10:37 +02:00
onLoadMore = { this . handleLoadMore }
2017-06-04 01:39:38 +02:00
emptyMessage = { < FormattedMessage id = 'empty_column.community' defaultMessage = 'The local timeline is empty. Write something publicly to get the ball rolling!' / > }
2019-07-19 09:25:22 +02:00
bindToDocument = { ! multiColumn }
2022-09-02 11:57:06 +02:00
regex = { this . props . regex }
2017-06-04 01:39:38 +02:00
/ >
2017-02-19 20:25:54 +01:00
< / C o l u m n >
) ;
2017-04-21 20:05:35 +02:00
}
2017-02-19 20:25:54 +01:00
2017-04-21 20:05:35 +02:00
}