2017-07-11 09:27:59 -04:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import StatusListContainer from '../../ui/containers/status_list_container';
|
2018-03-24 10:25:15 -04:00
|
|
|
import { expandPublicTimeline } from '../../../actions/timelines';
|
2017-07-11 09:27:59 -04:00
|
|
|
import Column from '../../../components/column';
|
|
|
|
import ColumnHeader from '../../../components/column_header';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-12-12 20:12:41 -05:00
|
|
|
import { connectPublicStream } from '../../../actions/streaming';
|
2017-07-11 09:27:59 -04:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'standalone.public_title', defaultMessage: 'A look inside...' },
|
|
|
|
});
|
|
|
|
|
2018-09-14 11:59:48 -04:00
|
|
|
export default @connect()
|
2017-07-11 09:27:59 -04:00
|
|
|
@injectIntl
|
2018-09-14 11:59:48 -04:00
|
|
|
class PublicTimeline extends React.PureComponent {
|
2017-07-11 09:27:59 -04:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleHeaderClick = () => {
|
|
|
|
this.column.scrollTop();
|
|
|
|
}
|
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.column = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
|
2018-03-24 10:25:15 -04:00
|
|
|
dispatch(expandPublicTimeline());
|
2017-12-12 20:12:41 -05:00
|
|
|
this.disconnect = dispatch(connectPublicStream());
|
2017-07-11 09:27:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
2017-12-12 20:12:41 -05:00
|
|
|
if (this.disconnect) {
|
|
|
|
this.disconnect();
|
|
|
|
this.disconnect = null;
|
2017-07-11 09:27:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-24 10:25:15 -04:00
|
|
|
handleLoadMore = maxId => {
|
|
|
|
this.props.dispatch(expandPublicTimeline({ maxId }));
|
2017-07-11 09:27:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { intl } = this.props;
|
|
|
|
|
|
|
|
return (
|
2018-08-23 11:26:21 -04:00
|
|
|
<Column ref={this.setRef} label={intl.formatMessage(messages.title)}>
|
2017-07-11 09:27:59 -04:00
|
|
|
<ColumnHeader
|
|
|
|
icon='globe'
|
|
|
|
title={intl.formatMessage(messages.title)}
|
|
|
|
onClick={this.handleHeaderClick}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<StatusListContainer
|
|
|
|
timelineId='public'
|
2018-03-24 10:25:15 -04:00
|
|
|
onLoadMore={this.handleLoadMore}
|
2017-07-11 09:27:59 -04:00
|
|
|
scrollKey='standalone_public_timeline'
|
|
|
|
trackScroll={false}
|
|
|
|
/>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|