about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/home_timeline/index.jsx
blob: e4f4fa7c7105ff5e3ad4a18647b9b7b9514fc1c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { connect } from 'react-redux';
import PureRenderMixin from 'react-addons-pure-render-mixin';
import StatusListContainer from '../ui/containers/status_list_container';
import Column from '../ui/components/column';
import { refreshTimeline } from '../../actions/timelines';
import { defineMessages, injectIntl } from 'react-intl';

const messages = defineMessages({
  title: { id: 'column.home', defaultMessage: 'Home' }
});

const HomeTimeline = React.createClass({

  propTypes: {
    dispatch: React.PropTypes.func.isRequired
  },

  mixins: [PureRenderMixin],

  componentWillMount () {
    this.props.dispatch(refreshTimeline('home'));
  },

  render () {
    const { intl } = this.props;

    return (
      <Column icon='home' heading={intl.formatMessage(messages.title)}>
        <StatusListContainer {...this.props} type='home' />
      </Column>
    );
  },

});

export default connect()(injectIntl(HomeTimeline));