2016-11-16 11:20:52 -05:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-10-12 07:17:17 -04:00
|
|
|
import StatusListContainer from '../ui/containers/status_list_container';
|
2016-11-16 11:20:52 -05:00
|
|
|
import Column from '../ui/components/column';
|
2016-10-16 13:23:17 -04:00
|
|
|
import { refreshTimeline } from '../../actions/timelines';
|
2016-11-18 09:36:16 -05:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-01-10 11:25:10 -05:00
|
|
|
import ColumnSettingsContainer from './containers/column_settings_container';
|
2016-11-18 09:36:16 -05:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'column.home', defaultMessage: 'Home' }
|
|
|
|
});
|
2016-10-12 07:17:17 -04:00
|
|
|
|
|
|
|
const HomeTimeline = React.createClass({
|
|
|
|
|
2016-10-16 13:23:17 -04:00
|
|
|
propTypes: {
|
2017-01-10 11:25:10 -05:00
|
|
|
dispatch: React.PropTypes.func.isRequired,
|
|
|
|
intl: React.PropTypes.object.isRequired
|
2016-10-16 13:23:17 -04:00
|
|
|
},
|
|
|
|
|
2016-10-12 07:17:17 -04:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-10-16 13:23:17 -04:00
|
|
|
componentWillMount () {
|
|
|
|
this.props.dispatch(refreshTimeline('home'));
|
|
|
|
},
|
|
|
|
|
2016-10-12 07:17:17 -04:00
|
|
|
render () {
|
2016-11-16 11:20:52 -05:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
2016-10-12 07:17:17 -04:00
|
|
|
return (
|
2016-11-18 09:36:16 -05:00
|
|
|
<Column icon='home' heading={intl.formatMessage(messages.title)}>
|
2017-01-10 11:25:10 -05:00
|
|
|
<ColumnSettingsContainer />
|
2016-10-18 17:06:28 -04:00
|
|
|
<StatusListContainer {...this.props} type='home' />
|
2016-10-12 07:17:17 -04:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-11-16 11:20:52 -05:00
|
|
|
export default connect()(injectIntl(HomeTimeline));
|