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-27 14:55:11 -04:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2018-05-27 15:23:56 -04:00
import { NavLink , Link } from 'react-router-dom' ;
2017-04-21 14:05:35 -04:00
import PropTypes from 'prop-types' ;
2017-12-04 02:26:40 -05: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 13:10:37 -04:00
import { expandCommunityTimeline } from 'flavours/glitch/actions/timelines' ;
2017-12-04 02:26:40 -05:00
import { addColumn , removeColumn , moveColumn } from 'flavours/glitch/actions/columns' ;
2017-06-06 10:56:10 -04:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2017-12-04 02:26:40 -05:00
import { connectCommunityStream } from 'flavours/glitch/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-05-27 14:55:11 -04:00
const mapStateToProps = ( state , { onlyMedia } ) => ( {
hasUnread : state . getIn ( [ 'timelines' , ` community ${ onlyMedia ? ':media' : '' } ` , 'unread' ] ) > 0 ,
2017-02-19 14:25:54 -05:00
} ) ;
2017-06-23 13:36:54 -04:00
@ connect ( mapStateToProps )
@ injectIntl
export default class CommunityTimeline extends React . PureComponent {
2017-02-19 14:25:54 -05:00
2018-05-27 14:55:11 -04:00
static defaultProps = {
onlyMedia : false ,
} ;
2017-05-12 08:44:10 -04:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
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-27 14:55:11 -04:00
onlyMedia : PropTypes . bool ,
2017-05-12 08:44:10 -04:00
} ;
2017-06-03 19:39:38 -04:00
handlePin = ( ) => {
2018-05-27 15:23:56 -04:00
const { columnId , dispatch , onlyMedia } = this . props ;
2017-06-03 19:39:38 -04:00
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
2018-05-27 15:23:56 -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-27 14:55:11 -04:00
const { dispatch , onlyMedia } = this . props ;
2017-02-19 14:25:54 -05:00
2018-05-27 14:55:11 -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
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-05-27 13:10:37 -04:00
handleLoadMore = maxId => {
2018-05-27 14:55:11 -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-05-27 14:55:11 -04:00
const { intl , 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
2018-05-27 15:23:56 -04:00
const headline = pinned ? (
< div className = 'community-timeline__section-headline' >
< Link to = '/timelines/public/local' replace className = { ! onlyMedia ? 'active' : undefined } > < FormattedMessage id = 'timeline.posts' defaultMessage = 'Toots' / > < / L i n k >
< Link to = '/timelines/public/local/media' replace className = { onlyMedia ? 'active' : undefined } > < FormattedMessage id = 'timeline.media' defaultMessage = 'Media' / > < / L i n k >
< / d i v >
) : (
2018-05-27 14:55:11 -04:00
< div className = 'community-timeline__section-headline' >
< NavLink exact to = '/timelines/public/local' replace > < FormattedMessage id = 'timeline.posts' defaultMessage = 'Toots' / > < / N a v L i n k >
< NavLink exact to = '/timelines/public/local/media' replace > < FormattedMessage id = 'timeline.media' defaultMessage = 'Media' / > < / N a v L i n k >
< / d i v >
) ;
2017-02-19 14:25:54 -05:00
return (
2018-08-28 06:01:04 -04:00
< Column ref = { this . setRef } name = 'local' 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
>
< ColumnSettingsContainer / >
< / C o l u m n H e a d e r >
2017-06-03 19:39:38 -04:00
< StatusListContainer
2018-05-27 14:55:11 -04:00
prepend = { headline }
2017-06-05 09:20:46 -04:00
trackScroll = { ! pinned }
2017-06-03 19:39:38 -04:00
scrollKey = { ` community_timeline- ${ columnId } ` }
2018-05-27 14:55:11 -04:00
shouldUpdateScroll = { this . shouldUpdateScroll }
timelineId = { ` community ${ onlyMedia ? ':media' : '' } ` }
2018-05-27 13:10:37 -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!' / > }
/ >
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
}