2023-05-23 11:15:17 -04:00
import PropTypes from 'prop-types' ;
2023-05-23 04:52:27 -04:00
import { PureComponent } from 'react' ;
2023-05-23 11:15:17 -04:00
2018-05-21 06:43:38 -04:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2023-05-23 11:15:17 -04:00
import { Helmet } from 'react-helmet' ;
import { connect } from 'react-redux' ;
2024-01-16 05:27:26 -05:00
import PublicIcon from '@/material-icons/400-24px/public.svg?react' ;
2023-07-08 05:12:20 -04:00
import { DismissableBanner } from 'mastodon/components/dismissable_banner' ;
2024-05-19 13:07:32 -04:00
import { identityContextPropShape , withIdentity } from 'mastodon/identity_context' ;
2023-07-03 16:57:18 -04:00
import { domain } from 'mastodon/initial_state' ;
2023-05-23 11:15:17 -04:00
import { addColumn , removeColumn , moveColumn } from '../../actions/columns' ;
import { connectPublicStream } from '../../actions/streaming' ;
import { expandPublicTimeline } from '../../actions/timelines' ;
2017-06-03 19:39:38 -04:00
import Column from '../../components/column' ;
import ColumnHeader from '../../components/column_header' ;
2023-05-23 11:15:17 -04:00
import StatusListContainer from '../ui/containers/status_list_container' ;
2017-06-06 10:56:10 -04:00
import ColumnSettingsContainer from './containers/column_settings_container' ;
2016-11-18 09:36:16 -05:00
const messages = defineMessages ( {
2017-05-20 11:31:47 -04:00
title : { id : 'column.public' , defaultMessage : 'Federated timeline' } ,
2016-11-18 09:36:16 -05:00
} ) ;
2016-10-07 10:00:11 -04:00
2019-11-10 17:05:02 -05:00
const mapStateToProps = ( state , { columnId } ) => {
2018-06-15 05:15:15 -04:00
const uuid = columnId ;
const columns = state . getIn ( [ 'settings' , 'columns' ] ) ;
const index = columns . findIndex ( c => c . get ( 'uuid' ) === uuid ) ;
2019-11-10 17:05:02 -05:00
const onlyMedia = ( columnId && index >= 0 ) ? columns . get ( index ) . getIn ( [ 'params' , 'other' , 'onlyMedia' ] ) : state . getIn ( [ 'settings' , 'public' , 'other' , 'onlyMedia' ] ) ;
2020-05-10 04:36:18 -04:00
const onlyRemote = ( columnId && index >= 0 ) ? columns . get ( index ) . getIn ( [ 'params' , 'other' , 'onlyRemote' ] ) : state . getIn ( [ 'settings' , 'public' , 'other' , 'onlyRemote' ] ) ;
2023-07-29 14:18:38 -04:00
const timelineState = state . getIn ( [ 'timelines' , ` public ${ onlyRemote ? ':remote' : '' } ${ onlyMedia ? ':media' : '' } ` ] ) ;
2018-06-15 05:15:15 -04:00
return {
2019-11-10 17:05:02 -05:00
hasUnread : ! ! timelineState && timelineState . get ( 'unread' ) > 0 ,
onlyMedia ,
2020-05-10 04:36:18 -04:00
onlyRemote ,
2018-06-15 05:15:15 -04:00
} ;
} ;
2017-02-03 18:34:31 -05:00
2023-05-23 04:52:27 -04:00
class PublicTimeline extends PureComponent {
2018-05-21 06:43:38 -04:00
static defaultProps = {
onlyMedia : false ,
} ;
2017-05-12 08:44:10 -04:00
static propTypes = {
2024-05-19 13:07:32 -04:00
identity : identityContextPropShape ,
2017-05-12 08:44:10 -04:00
dispatch : PropTypes . func . isRequired ,
intl : PropTypes . object . isRequired ,
2017-06-03 19:39:38 -04:00
columnId : PropTypes . string ,
multiColumn : PropTypes . bool ,
2017-05-20 11:31:47 -04:00
hasUnread : PropTypes . bool ,
2018-05-21 06:43:38 -04:00
onlyMedia : PropTypes . bool ,
2020-05-10 04:36:18 -04:00
onlyRemote : PropTypes . bool ,
2017-05-12 08:44:10 -04:00
} ;
2017-06-03 19:39:38 -04:00
handlePin = ( ) => {
2020-05-10 04:36:18 -04:00
const { columnId , dispatch , onlyMedia , onlyRemote } = this . props ;
2017-06-03 19:39:38 -04:00
if ( columnId ) {
dispatch ( removeColumn ( columnId ) ) ;
} else {
2020-05-10 04:36:18 -04:00
dispatch ( addColumn ( onlyRemote ? 'REMOTE' : 'PUBLIC' , { other : { onlyMedia , onlyRemote } } ) ) ;
2017-06-03 19:39:38 -04:00
}
2023-01-29 19:45:35 -05:00
} ;
2017-06-03 19:39:38 -04:00
handleMove = ( dir ) => {
const { columnId , dispatch } = this . props ;
dispatch ( moveColumn ( columnId , dir ) ) ;
2023-01-29 19:45:35 -05:00
} ;
2017-06-03 19:39:38 -04:00
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
2023-01-29 19:45:35 -05:00
} ;
2017-06-03 19:39:38 -04:00
2017-02-03 18:34:31 -05:00
componentDidMount ( ) {
2020-05-10 04:36:18 -04:00
const { dispatch , onlyMedia , onlyRemote } = this . props ;
2024-05-19 13:07:32 -04:00
const { signedIn } = this . props . identity ;
2016-10-07 10:00:11 -04:00
2020-05-10 04:36:18 -04:00
dispatch ( expandPublicTimeline ( { onlyMedia , onlyRemote } ) ) ;
2022-10-08 01:15:50 -04:00
if ( signedIn ) {
this . disconnect = dispatch ( connectPublicStream ( { onlyMedia , onlyRemote } ) ) ;
}
2017-04-21 14:05:35 -04:00
}
2016-10-07 10:00:11 -04:00
2018-05-22 07:26:06 -04:00
componentDidUpdate ( prevProps ) {
2024-05-19 13:07:32 -04:00
const { signedIn } = this . props . identity ;
2022-10-08 01:15:50 -04:00
2020-05-10 04:36:18 -04:00
if ( prevProps . onlyMedia !== this . props . onlyMedia || prevProps . onlyRemote !== this . props . onlyRemote ) {
const { dispatch , onlyMedia , onlyRemote } = this . props ;
2018-05-22 07:26:06 -04:00
2022-10-08 01:15:50 -04:00
if ( this . disconnect ) {
this . disconnect ( ) ;
}
2020-05-10 04:36:18 -04:00
dispatch ( expandPublicTimeline ( { onlyMedia , onlyRemote } ) ) ;
2022-10-08 01:15:50 -04:00
if ( signedIn ) {
this . disconnect = dispatch ( connectPublicStream ( { onlyMedia , onlyRemote } ) ) ;
}
2018-05-22 07:26:06 -04:00
}
}
2016-10-07 10:00:11 -04: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 ;
2023-01-29 19:45:35 -05:00
} ;
2016-10-07 10:00:11 -04:00
2018-03-24 10:25:15 -04:00
handleLoadMore = maxId => {
2020-05-10 04:36:18 -04:00
const { dispatch , onlyMedia , onlyRemote } = this . props ;
2018-05-21 06:43:38 -04:00
2020-05-10 04:36:18 -04:00
dispatch ( expandPublicTimeline ( { maxId , onlyMedia , onlyRemote } ) ) ;
2023-01-29 19:45:35 -05:00
} ;
2017-06-11 11:07:35 -04:00
2016-10-07 10:00:11 -04:00
render ( ) {
2021-07-13 09:45:17 -04:00
const { intl , columnId , hasUnread , multiColumn , onlyMedia , onlyRemote } = this . props ;
2017-06-03 19:39:38 -04:00
const pinned = ! ! columnId ;
2016-11-16 11:20:52 -05:00
2016-10-07 10:00:11 -04:00
return (
2019-08-01 13:17:17 -04:00
< Column bindToDocument = { ! multiColumn } ref = { this . setRef } label = { intl . formatMessage ( messages . title ) } >
2017-06-03 19:39:38 -04:00
< ColumnHeader
icon = 'globe'
2023-10-24 13:45:08 -04:00
iconComponent = { PublicIcon }
2017-06-03 19:39:38 -04:00
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
>
2018-12-18 16:00:18 -05:00
< ColumnSettingsContainer columnId = { columnId } / >
2017-06-06 10:56:10 -04:00
< / ColumnHeader >
2017-06-03 19:39:38 -04:00
< StatusListContainer
2023-07-03 16:57:18 -04: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 04:36:18 -04:00
timelineId = { ` public ${ onlyRemote ? ':remote' : '' } ${ onlyMedia ? ':media' : '' } ` }
2018-03-24 10:25:15 -04:00
onLoadMore = { this . handleLoadMore }
2017-06-05 09:20:46 -04:00
trackScroll = { ! pinned }
2017-06-03 19:39:38 -04:00
scrollKey = { ` public_timeline- ${ columnId } ` }
2019-02-05 13:11:24 -05: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 03:25:22 -04:00
bindToDocument = { ! multiColumn }
2017-06-03 19:39:38 -04:00
/ >
2022-09-28 22:39:33 -04:00
< Helmet >
2022-10-08 21:55:09 -04:00
< title > { intl . formatMessage ( messages . title ) } < / title >
2022-10-20 08:35:29 -04:00
< meta name = 'robots' content = 'noindex' / >
2022-09-28 22:39:33 -04:00
< / Helmet >
2016-10-07 10:00:11 -04:00
< / Column >
) ;
2017-04-21 14:05:35 -04:00
}
2016-10-07 10:00:11 -04:00
2017-04-21 14:05:35 -04:00
}
2023-03-23 22:17:53 -04:00
2024-05-19 13:07:32 -04:00
export default connect ( mapStateToProps ) ( withIdentity ( injectIntl ( PublicTimeline ) ) ) ;