2023-05-24 01:15:17 +10:00
import PropTypes from 'prop-types' ;
2023-05-23 18:52:27 +10:00
import { PureComponent } from 'react' ;
2023-05-24 01:15:17 +10:00
2018-05-21 20:43:38 +10:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2023-05-24 01:15:17 +10:00
import { Helmet } from 'react-helmet' ;
import { connect } from 'react-redux' ;
2023-07-08 19:12:20 +10:00
import { DismissableBanner } from 'mastodon/components/dismissable_banner' ;
2023-07-04 06:57:18 +10:00
import { domain } from 'mastodon/initial_state' ;
2023-05-24 01:15:17 +10:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
import { connectPublicStream } from '../../actions/streaming' ;
import { expandPublicTimeline } from '../../actions/timelines' ;
2017-06-04 09:39:38 +10:00
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2023-05-24 01:15:17 +10:00
import StatusListContainer from '../ui/containers/status_list_container' ;
2017-06-07 00:56:10 +10:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2016-11-19 01:36:16 +11:00
const messages = defineMessages ( {
2017-05-21 01:31:47 +10:00
title : { id : 'column.public' , defaultMessage : 'Federated timeline' } ,
2016-11-19 01:36:16 +11:00
} ) ;
2016-10-08 01:00:11 +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' , 'public' , 'other' , 'onlyMedia' ] ) ;
2020-05-10 18:36:18 +10:00
const onlyRemote = ( columnId && index >= 0 ) ? columns . get ( index ) . getIn ( [ 'params' , 'other' , 'onlyRemote' ] ) : state . getIn ( [ 'settings' , 'public' , 'other' , 'onlyRemote' ] ) ;
2023-07-30 04:18:38 +10:00
const timelineState = state . getIn ( [ 'timelines' , ` public ${ onlyRemote ? ':remote' : '' } ${ 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 ,
2020-05-10 18:36:18 +10:00
onlyRemote ,
2018-06-15 19:15:15 +10:00
} ;
} ;
2017-02-04 10:34:31 +11:00
2023-05-23 18:52:27 +10:00
class PublicTimeline extends PureComponent {
2016-10-08 01:00:11 +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 ,
intl : PropTypes . object . isRequired ,
2017-06-04 09:39:38 +10:00
columnId : PropTypes . string ,
multiColumn : PropTypes . bool ,
2017-05-21 01:31:47 +10:00
hasUnread : PropTypes . bool ,
2018-05-21 20:43:38 +10:00
onlyMedia : PropTypes . bool ,
2020-05-10 18:36:18 +10:00
onlyRemote : PropTypes . bool ,
2017-05-12 22:44:10 +10:00
} ;
2017-06-04 09:39:38 +10:00
handlePin = ( ) => {
2020-05-10 18:36:18 +10:00
const { columnId , dispatch , onlyMedia , onlyRemote } = this . props ;
2017-06-04 09:39:38 +10:00
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
2020-05-10 18:36:18 +10:00
dispatch ( addColumn ( onlyRemote ? 'REMOTE' : 'PUBLIC' , { other : { onlyMedia , onlyRemote } } ) ) ;
2017-06-04 09:39:38 +10:00
}
2023-01-30 11:45:35 +11:00
} ;
2017-06-04 09:39:38 +10:00
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
2023-01-30 11:45:35 +11:00
} ;
2017-06-04 09:39:38 +10:00
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
2023-01-30 11:45:35 +11:00
} ;
2017-06-04 09:39:38 +10:00
2017-02-04 10:34:31 +11:00
componentDidMount ( ) {
2020-05-10 18:36:18 +10:00
const { dispatch , onlyMedia , onlyRemote } = this . props ;
2022-10-08 16:15:50 +11:00
const { signedIn } = this . context . identity ;
2016-10-08 01:00:11 +11:00
2020-05-10 18:36:18 +10:00
dispatch ( expandPublicTimeline ( { onlyMedia , onlyRemote } ) ) ;
2022-10-08 16:15:50 +11:00
if ( signedIn ) {
this . disconnect = dispatch ( connectPublicStream ( { onlyMedia , onlyRemote } ) ) ;
}
2017-04-22 04:05:35 +10:00
}
2016-10-08 01:00:11 +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 ;
2020-05-10 18:36:18 +10:00
if ( prevProps . onlyMedia !== this . props . onlyMedia || prevProps . onlyRemote !== this . props . onlyRemote ) {
const { dispatch , onlyMedia , onlyRemote } = this . props ;
2018-05-22 21:26:06 +10:00
2022-10-08 16:15:50 +11:00
if ( this . disconnect ) {
this . disconnect ( ) ;
}
2020-05-10 18:36:18 +10:00
dispatch ( expandPublicTimeline ( { onlyMedia , onlyRemote } ) ) ;
2022-10-08 16:15:50 +11:00
if ( signedIn ) {
this . disconnect = dispatch ( connectPublicStream ( { onlyMedia , onlyRemote } ) ) ;
}
2018-05-22 21:26:06 +10:00
}
}
2016-10-08 01:00:11 +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 ;
2023-01-30 11:45:35 +11:00
} ;
2016-10-08 01:00:11 +11:00
2018-03-25 01:25:15 +11:00
handleLoadMore = maxId => {
2020-05-10 18:36:18 +10:00
const { dispatch , onlyMedia , onlyRemote } = this . props ;
2018-05-21 20:43:38 +10:00
2020-05-10 18:36:18 +10:00
dispatch ( expandPublicTimeline ( { maxId , onlyMedia , onlyRemote } ) ) ;
2023-01-30 11:45:35 +11:00
} ;
2017-06-12 01:07:35 +10:00
2016-10-08 01:00:11 +11:00
render ( ) {
2021-07-13 23:45:17 +10:00
const { intl , columnId , hasUnread , multiColumn , onlyMedia , onlyRemote } = this . props ;
2017-06-04 09:39:38 +10:00
const pinned = ! ! columnId ;
2016-11-17 03:20:52 +11:00
2016-10-08 01:00:11 +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 = 'globe'
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-12-19 08:00:18 +11:00
< ColumnSettingsContainer columnId = { columnId } / >
2017-06-07 00:56:10 +10:00
< / ColumnHeader >
2017-06-04 09:39:38 +10:00
< StatusListContainer
2023-07-04 06:57:18 +10:00
prepend = { < DismissableBanner id = 'public_timeline' > < FormattedMessage id = 'dismissable_banner.public_timeline' defaultMessage = 'These are the most recent public posts from people on the social web that people on {domain} follow.' values = { { domain } } / > < / DismissableBanner > }
2020-05-10 18:36:18 +10:00
timelineId = { ` public ${ onlyRemote ? ':remote' : '' } ${ onlyMedia ? ':media' : '' } ` }
2018-03-25 01:25:15 +11:00
onLoadMore = { this . handleLoadMore }
2017-06-05 23:20:46 +10:00
trackScroll = { ! pinned }
2017-06-04 09:39:38 +10:00
scrollKey = { ` public_timeline- ${ columnId } ` }
2019-02-06 05:11:24 +11:00
emptyMessage = { < FormattedMessage id = 'empty_column.public' defaultMessage = 'There is nothing here! Write something publicly, or manually follow users from other servers to fill it up' / > }
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 ) } < / title >
2022-10-20 23:35:29 +11:00
< meta name = 'robots' content = 'noindex' / >
2022-09-29 12:39:33 +10:00
< / Helmet >
2016-10-08 01:00:11 +11:00
< / Column >
) ;
2017-04-22 04:05:35 +10:00
}
2016-10-08 01:00:11 +11:00
2017-04-22 04:05:35 +10:00
}
2023-03-24 13:17:53 +11:00
export default connect ( mapStateToProps ) ( injectIntl ( PublicTimeline ) ) ;