2016-10-16 19:23:17 +02:00
|
|
|
import { connect } from 'react-redux';
|
2016-11-16 17:20:52 +01:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-10-12 13:17:17 +02:00
|
|
|
import StatusListContainer from '../ui/containers/status_list_container';
|
2016-11-16 17:20:52 +01:00
|
|
|
import Column from '../ui/components/column';
|
2016-10-16 19:23:17 +02:00
|
|
|
import { refreshTimeline } from '../../actions/timelines';
|
2016-11-16 17:20:52 +01:00
|
|
|
import { injectIntl } from 'react-intl';
|
2016-10-12 13:17:17 +02:00
|
|
|
|
|
|
|
const MentionsTimeline = React.createClass({
|
|
|
|
|
2016-10-16 19:23:17 +02:00
|
|
|
propTypes: {
|
|
|
|
dispatch: React.PropTypes.func.isRequired
|
|
|
|
},
|
|
|
|
|
2016-10-12 13:17:17 +02:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-10-16 19:23:17 +02:00
|
|
|
componentWillMount () {
|
|
|
|
this.props.dispatch(refreshTimeline('mentions'));
|
|
|
|
},
|
|
|
|
|
2016-10-12 13:17:17 +02:00
|
|
|
render () {
|
2016-11-16 17:20:52 +01:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
2016-10-12 13:17:17 +02:00
|
|
|
return (
|
2016-11-16 17:20:52 +01:00
|
|
|
<Column icon='at' heading={intl.formatMessage({ id: 'column.mentions', defaultMessage: 'Mentions' })}>
|
2016-10-18 23:06:28 +02:00
|
|
|
<StatusListContainer {...this.props} type='mentions' />
|
2016-10-12 13:17:17 +02:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-11-16 17:20:52 +01:00
|
|
|
export default connect()(injectIntl(MentionsTimeline));
|