2016-10-16 19:23:17 +02:00
|
|
|
import { connect } from 'react-redux';
|
2016-10-12 13:17:17 +02:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import StatusListContainer from '../ui/containers/status_list_container';
|
|
|
|
import Column from '../ui/components/column';
|
2016-10-16 19:23:17 +02:00
|
|
|
import { refreshTimeline } from '../../actions/timelines';
|
2016-10-12 13:17:17 +02:00
|
|
|
|
|
|
|
const HomeTimeline = 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('home'));
|
|
|
|
},
|
|
|
|
|
2016-10-12 13:17:17 +02:00
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<Column icon='home' heading='Home'>
|
|
|
|
<StatusListContainer type='home' />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-10-16 19:23:17 +02:00
|
|
|
export default connect()(HomeTimeline);
|