2017-05-03 09:04:16 +09:00
import React from 'react' ;
2016-11-10 08:47:47 +09:00
import { connect } from 'react-redux' ;
2018-05-28 03:55:11 +09:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import { NavLink } from 'react-router-dom' ;
2017-04-22 03:05:35 +09:00
import PropTypes from 'prop-types' ;
2017-12-04 16:26:40 +09: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-28 02:10:37 +09:00
import { expandPublicTimeline } from 'flavours/glitch/actions/timelines' ;
2017-12-04 16:26:40 +09:00
import { addColumn , removeColumn , moveColumn } from 'flavours/glitch/actions/columns' ;
2017-06-06 23:56:10 +09:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2017-12-04 16:26:40 +09:00
import { connectPublicStream } from 'flavours/glitch/actions/streaming' ;
2016-11-18 23:36:16 +09:00
const messages = defineMessages ( {
2017-05-21 00:31:47 +09:00
title : { id : 'column.public' , defaultMessage : 'Federated timeline' } ,
2016-11-18 23:36:16 +09:00
} ) ;
2016-10-07 23:00:11 +09:00
2018-05-28 03:55:11 +09:00
const mapStateToProps = ( state , { onlyMedia } ) => ( {
hasUnread : state . getIn ( [ 'timelines' , ` public ${ onlyMedia ? ':media' : '' } ` , 'unread' ] ) > 0 ,
2017-02-04 08:34:31 +09:00
} ) ;
2017-06-24 02:36:54 +09:00
@ connect ( mapStateToProps )
@ injectIntl
export default class PublicTimeline extends React . PureComponent {
2016-10-07 23:00:11 +09:00
2018-05-28 03:55:11 +09:00
static defaultProps = {
onlyMedia : false ,
} ;
2017-05-12 21:44:10 +09:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
intl : PropTypes . object . isRequired ,
2017-06-04 08:39:38 +09:00
columnId : PropTypes . string ,
multiColumn : PropTypes . bool ,
2017-05-21 00:31:47 +09:00
hasUnread : PropTypes . bool ,
2018-05-28 03:55:11 +09:00
onlyMedia : PropTypes . bool ,
2017-05-12 21:44:10 +09:00
} ;
2017-06-04 08:39:38 +09: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-04 08:34:31 +09:00
componentDidMount ( ) {
2018-05-28 03:55:11 +09:00
const { dispatch , onlyMedia } = this . props ;
2016-10-07 23:00:11 +09:00
2018-05-28 03:55:11 +09:00
dispatch ( expandPublicTimeline ( { onlyMedia } ) ) ;
this . disconnect = dispatch ( connectPublicStream ( { onlyMedia } ) ) ;
2017-04-22 03:05:35 +09:00
}
2016-10-07 23:00:11 +09:00
componentWillUnmount ( ) {
2017-08-21 22:04:34 +09:00
if ( this . disconnect ) {
this . disconnect ( ) ;
this . disconnect = null ;
2017-06-04 08:39:38 +09:00
}
}
setRef = c => {
this . column = c ;
2017-04-22 03:05:35 +09:00
}
2016-10-07 23:00:11 +09:00
2018-05-28 02:10:37 +09:00
handleLoadMore = maxId => {
2018-05-28 03:55:11 +09:00
const { dispatch , onlyMedia } = this . props ;
dispatch ( expandPublicTimeline ( { maxId , onlyMedia } ) ) ;
2017-06-12 00:07:35 +09:00
}
2016-10-07 23:00:11 +09:00
render ( ) {
2018-05-28 03:55:11 +09:00
const { intl , columnId , hasUnread , multiColumn , onlyMedia } = this . props ;
2017-06-04 08:39:38 +09:00
const pinned = ! ! columnId ;
2016-11-17 01:20:52 +09:00
2018-05-28 03:55:11 +09:00
const headline = (
< div className = 'public-timeline__section-headline' >
< NavLink exact to = '/timelines/public' replace > < FormattedMessage id = 'timeline.posts' defaultMessage = 'Toots' / > < / N a v L i n k >
< NavLink exact to = '/timelines/public/media' replace > < FormattedMessage id = 'timeline.media' defaultMessage = 'Media' / > < / N a v L i n k >
< / d i v >
) ;
2016-10-07 23:00:11 +09:00
return (
2018-08-28 19:01:04 +09:00
< Column ref = { this . setRef } name = 'federated' label = { intl . formatMessage ( messages . title ) } >
2017-06-04 08:39:38 +09: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 23:56:10 +09:00
>
< ColumnSettingsContainer / >
< / C o l u m n H e a d e r >
2017-06-04 08:39:38 +09:00
< StatusListContainer
2018-05-28 03:55:11 +09:00
prepend = { headline }
timelineId = { ` public ${ onlyMedia ? ':media' : '' } ` }
2018-05-28 02:10:37 +09:00
onLoadMore = { this . handleLoadMore }
2017-06-05 22:20:46 +09:00
trackScroll = { ! pinned }
2017-06-04 08:39:38 +09: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 23:00:11 +09:00
< / C o l u m n >
) ;
2017-04-22 03:05:35 +09:00
}
2016-10-07 23:00:11 +09:00
2017-04-22 03:05:35 +09:00
}