104 lines
3.8 KiB
JavaScript
104 lines
3.8 KiB
JavaScript
|
import React from 'react';
|
||
|
import { connect } from 'react-redux';
|
||
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import StatusListContainer from '../ui/containers/status_list_container';
|
||
|
import Column from '../../components/column';
|
||
|
import ColumnSettingsContainer from './containers/column_settings_container';
|
||
|
import HomeColumnHeader from '../../components/home_column_header';
|
||
|
import ExplanationBox from '../ui/components/explanation_box';
|
||
|
import {
|
||
|
expandCommunityTimeline,
|
||
|
expandPublicTimeline,
|
||
|
} from '../../actions/timelines';
|
||
|
import {
|
||
|
connectCommunityStream,
|
||
|
connectPublicStream,
|
||
|
} from '../../actions/streaming';
|
||
|
import { Link } from 'react-router-dom';
|
||
|
import { siteTitle } from '../../initial_state';
|
||
|
|
||
|
const messages = defineMessages({
|
||
|
title: { id: 'column.public', defaultMessage: 'Federated timeline' },
|
||
|
});
|
||
|
|
||
|
const mapStateToProps = state => {
|
||
|
const onlyMedia = state.getIn(['settings', 'public', 'other', 'onlyMedia']);
|
||
|
|
||
|
const timelineId = 'public';
|
||
|
|
||
|
return {
|
||
|
timelineId,
|
||
|
onlyMedia,
|
||
|
hasUnread: state.getIn(['timelines', `${timelineId}${onlyMedia ? ':media' : ''}`, 'unread']) > 0,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default @connect(mapStateToProps)
|
||
|
@injectIntl
|
||
|
class CommunityTimeline extends React.PureComponent {
|
||
|
|
||
|
static contextTypes = {
|
||
|
router: PropTypes.object,
|
||
|
};
|
||
|
|
||
|
static propTypes = {
|
||
|
dispatch: PropTypes.func.isRequired,
|
||
|
intl: PropTypes.object.isRequired,
|
||
|
hasUnread: PropTypes.bool,
|
||
|
onlyMedia: PropTypes.bool,
|
||
|
timelineId: PropTypes.string,
|
||
|
};
|
||
|
|
||
|
componentDidMount () {
|
||
|
const { dispatch, onlyMedia } = this.props;
|
||
|
dispatch(expandPublicTimeline({ onlyMedia }));
|
||
|
this.disconnect = dispatch(connectPublicStream({ onlyMedia }));
|
||
|
}
|
||
|
|
||
|
componentDidUpdate (prevProps) {
|
||
|
if (prevProps.onlyMedia !== this.props.onlyMedia) {
|
||
|
const { dispatch, onlyMedia } = this.props;
|
||
|
this.disconnect();
|
||
|
|
||
|
dispatch(expandPublicTimeline({ onlyMedia }));
|
||
|
this.disconnect = dispatch(connectPublicStream({ onlyMedia }));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
componentWillUnmount () {
|
||
|
if (this.disconnect) {
|
||
|
this.disconnect();
|
||
|
this.disconnect = null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
handleLoadMore = maxId => {
|
||
|
const { dispatch, onlyMedia } = this.props;
|
||
|
dispatch(expandPublicTimeline({ maxId, onlyMedia }));
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const { intl, hasUnread, onlyMedia, timelineId } = this.props;
|
||
|
|
||
|
return (
|
||
|
<Column label={intl.formatMessage(messages.title)}>
|
||
|
<HomeColumnHeader activeItem='fediverse' active={hasUnread} >
|
||
|
<ColumnSettingsContainer />
|
||
|
</HomeColumnHeader>
|
||
|
<ExplanationBox
|
||
|
title={<FormattedMessage id='fediverse_tab.explanation_box.title' defaultMessage='What is the Fediverse?' />}
|
||
|
explanation={<FormattedMessage id='fediverse_tab.explanation_box.explanation' defaultMessage='{site_title} is part of the Fediverse, a social network made up of thousands of independent social media sites (aka "servers"). The posts you see here are from 3rd-party servers. You have the freedom to engage with them, or to block any server you don't like. Pay attention to the full username after the second @ symbol to know which server a post is from. To see only {site_title} posts, visit {local}.' values={{site_title: siteTitle, local: <Link to='/timeline/local'><FormattedMessage id='empty_column.home.local_tab' defaultMessage='the {site_title} tab' values={{site_title: siteTitle}} /></Link>}} />}
|
||
|
/>
|
||
|
<StatusListContainer
|
||
|
scrollKey={`${timelineId}_timeline`}
|
||
|
timelineId={`${timelineId}${onlyMedia ? ':media' : ''}`}
|
||
|
onLoadMore={this.handleLoadMore}
|
||
|
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' />}
|
||
|
/>
|
||
|
</Column>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|