about summary refs log tree commit diff
path: root/app/assets/javascripts/components/containers/root.jsx
blob: 7da984d89893c08ce492595178686f882ae3939a (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
import { Provider }               from 'react-redux';
import configureStore             from '../store/configureStore';
import Frontend                   from '../components/frontend';
import { setTimeline, addStatus } from '../actions/statuses';

const store = configureStore();

const Root = React.createClass({

  componentWillMount() {
    for (var timelineType in this.props.timelines) {
      if (this.props.timelines.hasOwnProperty(timelineType)) {
        store.dispatch(setTimeline(timelineType, JSON.parse(this.props.timelines[timelineType])));
      }
    }

    if (typeof App !== 'undefined') {
      App.timeline = App.cable.subscriptions.create("TimelineChannel", {
        connected: function() {},

        disconnected: function() {},

        received: function(data) {
          return store.dispatch(addStatus(data.timeline, JSON.parse(data.message)));
        }
      });
    }
  },

  render() {
    return (
      <Provider store={store}>
        <Frontend />
      </Provider>
    );
  }

});

export default Root;