about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/public_timeline/index.jsx
blob: 8b2a869471ce6288bb74956d63e75ebe0f97f11c (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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,
  updateTimeline
}                          from '../../actions/timelines';

const PublicTimeline = React.createClass({

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

  mixins: [PureRenderMixin],

  componentWillMount () {
    const { dispatch } = this.props;

    dispatch(refreshTimeline('public'));

    if (typeof App !== 'undefined') {
      this.subscription = App.cable.subscriptions.create('PublicChannel', {

        received (data) {
          dispatch(updateTimeline('public', JSON.parse(data.message)));
        }

      });
    }
  },

  componentWillUnmount () {
    if (typeof this.subscription !== 'undefined') {
      this.subscription.unsubscribe();
    }
  },

  render () {
    return (
      <Column icon='globe' heading='Public'>
        <StatusListContainer type='public' />
      </Column>
    );
  },

});

export default connect()(PublicTimeline);