2017-05-03 10:04:16 +10:00
import React from 'react' ;
2017-02-20 06:25:54 +11:00
import { connect } from 'react-redux' ;
2018-05-21 20:43:38 +10:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2017-04-22 04:05:35 +10:00
import PropTypes from 'prop-types' ;
2017-02-20 06:25:54 +11:00
import StatusListContainer from '../ui/containers/status_list_container' ;
2017-06-04 09:39:38 +10:00
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2018-03-25 01:25:15 +11:00
import { expandCommunityTimeline } from '../../actions/timelines' ;
2018-06-15 19:15:15 +10:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
2017-06-07 00:56:10 +10:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2017-08-21 23:04:34 +10:00
import { connectCommunityStream } from '../../actions/streaming' ;
2022-09-29 12:39:33 +10:00
import { Helmet } from 'react-helmet' ;
2022-10-09 15:08:37 +11:00
import { domain } from 'mastodon/initial_state' ;
import DismissableBanner from 'mastodon/components/dismissable_banner' ;
2017-02-20 06:25:54 +11:00
const messages = defineMessages ( {
2017-05-21 01:31:47 +10:00
title : { id : 'column.community' , defaultMessage : 'Local timeline' } ,
2017-02-20 06:25:54 +11:00
} ) ;
2019-11-11 09:05:02 +11:00
const mapStateToProps = ( state , { columnId } ) => {
2018-06-15 19:15:15 +10:00
const uuid = columnId ;
const columns = state . getIn ( [ 'settings' , 'columns' ] ) ;
const index = columns . findIndex ( c => c . get ( 'uuid' ) === uuid ) ;
2019-11-11 09:05:02 +11:00
const onlyMedia = ( columnId && index >= 0 ) ? columns . get ( index ) . getIn ( [ 'params' , 'other' , 'onlyMedia' ] ) : state . getIn ( [ 'settings' , 'community' , 'other' , 'onlyMedia' ] ) ;
2019-09-18 12:02:21 +10:00
const timelineState = state . getIn ( [ 'timelines' , ` community ${ onlyMedia ? ':media' : '' } ` ] ) ;
2018-06-15 19:15:15 +10:00
return {
2019-11-11 09:05:02 +11:00
hasUnread : ! ! timelineState && timelineState . get ( 'unread' ) > 0 ,
onlyMedia ,
2018-06-15 19:15:15 +10:00
} ;
} ;
2017-02-20 06:25:54 +11:00
2018-09-15 01:59:48 +10:00
export default @ connect ( mapStateToProps )
2017-06-24 03:36:54 +10:00
@ injectIntl
2018-09-15 01:59:48 +10:00
class CommunityTimeline extends React . PureComponent {
2017-02-20 06:25:54 +11:00
2018-06-15 19:15:15 +10:00
static contextTypes = {
router : PropTypes . object ,
2022-10-08 16:15:50 +11:00
identity : PropTypes . object ,
2018-06-15 19:15:15 +10:00
} ;
2018-05-21 20:43:38 +10:00
static defaultProps = {
onlyMedia : false ,
} ;
2017-05-12 22:44:10 +10:00
static propTypes = {
dispatch : PropTypes . func . isRequired ,
2017-06-04 09:39:38 +10:00
columnId : PropTypes . string ,
2017-05-12 22:44:10 +10:00
intl : PropTypes . object . isRequired ,
2017-05-21 01:31:47 +10:00
hasUnread : PropTypes . bool ,
2017-06-04 09:39:38 +10:00
multiColumn : PropTypes . bool ,
2018-05-21 20:43:38 +10:00
onlyMedia : PropTypes . bool ,
2017-05-12 22:44:10 +10:00
} ;
2017-06-04 09:39:38 +10:00
handlePin = ( ) => {
2018-05-22 01:49:10 +10:00
const { columnId , dispatch , onlyMedia } = this . props ;
2017-06-04 09:39:38 +10:00
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
2018-05-22 01:49:10 +10:00
dispatch ( addColumn ( 'COMMUNITY' , { other : { onlyMedia } } ) ) ;
2017-06-04 09:39:38 +10:00
}
}
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
}
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
}
2017-02-20 06:25:54 +11:00
componentDidMount ( ) {
2018-05-21 20:43:38 +10:00
const { dispatch , onlyMedia } = this . props ;
2022-10-08 16:15:50 +11:00
const { signedIn } = this . context . identity ;
2017-02-20 06:25:54 +11:00
2018-05-21 20:43:38 +10:00
dispatch ( expandCommunityTimeline ( { onlyMedia } ) ) ;
2022-10-08 16:15:50 +11:00
if ( signedIn ) {
this . disconnect = dispatch ( connectCommunityStream ( { onlyMedia } ) ) ;
}
2017-04-22 04:05:35 +10:00
}
2017-02-20 06:25:54 +11:00
2018-05-22 21:26:06 +10:00
componentDidUpdate ( prevProps ) {
2022-10-08 16:15:50 +11:00
const { signedIn } = this . context . identity ;
2018-05-22 21:26:06 +10:00
if ( prevProps . onlyMedia !== this . props . onlyMedia ) {
const { dispatch , onlyMedia } = this . props ;
2022-10-08 16:15:50 +11:00
if ( this . disconnect ) {
this . disconnect ( ) ;
}
2018-05-22 21:26:06 +10:00
dispatch ( expandCommunityTimeline ( { onlyMedia } ) ) ;
2022-10-08 16:15:50 +11:00
if ( signedIn ) {
this . disconnect = dispatch ( connectCommunityStream ( { onlyMedia } ) ) ;
}
2018-05-22 21:26:06 +10:00
}
}
2017-02-20 06:25:54 +11:00
componentWillUnmount ( ) {
2017-08-21 23:04:34 +10:00
if ( this . disconnect ) {
this . disconnect ( ) ;
this . disconnect = null ;
2017-06-04 09:39:38 +10:00
}
}
setRef = c => {
this . column = c ;
2017-04-22 04:05:35 +10:00
}
2017-02-20 06:25:54 +11:00
2018-03-25 01:25:15 +11:00
handleLoadMore = maxId => {
2018-05-21 20:43:38 +10:00
const { dispatch , onlyMedia } = this . props ;
dispatch ( expandCommunityTimeline ( { maxId , onlyMedia } ) ) ;
2017-06-12 01:07:35 +10:00
}
2017-02-20 06:25:54 +11:00
render ( ) {
2021-07-13 23:45:17 +10:00
const { intl , hasUnread , columnId , multiColumn , onlyMedia } = this . props ;
2017-06-04 09:39:38 +10:00
const pinned = ! ! columnId ;
2017-02-20 06:25:54 +11:00
return (
2019-08-02 03:17:17 +10:00
< Column bindToDocument = { ! multiColumn } ref = { this . setRef } label = { intl . formatMessage ( messages . title ) } >
2017-06-04 09:39:38 +10: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-07 00:56:10 +10:00
>
2018-06-15 19:15:15 +10:00
< ColumnSettingsContainer columnId = { columnId } / >
2017-06-07 00:56:10 +10:00
< / C o l u m n H e a d e r >
2017-06-04 09:39:38 +10:00
2022-10-09 15:08:37 +11:00
< DismissableBanner id = 'community_timeline' >
< FormattedMessage id = 'dismissable_banner.community_timeline' defaultMessage = 'These are the most recent public posts from people whose accounts are hosted by {domain}.' values = { { domain } } / >
< / D i s m i s s a b l e B a n n e r >
2017-06-04 09:39:38 +10:00
< StatusListContainer
2017-06-05 23:20:46 +10:00
trackScroll = { ! pinned }
2017-06-04 09:39:38 +10:00
scrollKey = { ` community_timeline- ${ columnId } ` }
2018-05-21 20:43:38 +10:00
timelineId = { ` community ${ onlyMedia ? ':media' : '' } ` }
2018-03-25 01:25:15 +11:00
onLoadMore = { this . handleLoadMore }
2017-06-04 09:39:38 +10:00
emptyMessage = { < FormattedMessage id = 'empty_column.community' defaultMessage = 'The local timeline is empty. Write something publicly to get the ball rolling!' / > }
2019-07-19 17:25:22 +10:00
bindToDocument = { ! multiColumn }
2017-06-04 09:39:38 +10:00
/ >
2022-09-29 12:39:33 +10:00
< Helmet >
2022-10-09 12:55:09 +11:00
< title > { intl . formatMessage ( messages . title ) } < / t i t l e >
2022-10-20 23:35:29 +11:00
< meta name = 'robots' content = 'noindex' / >
2022-09-29 12:39:33 +10:00
< / H e l m e t >
2017-02-20 06:25:54 +11:00
< / C o l u m n >
) ;
2017-04-22 04:05:35 +10:00
}
2017-02-20 06:25:54 +11:00
2017-04-22 04:05:35 +10:00
}