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