about summary refs log tree commit diff
path: root/app/assets/javascripts/components/containers/root.jsx
blob: e2baefa240f113d769b34a4b7d69be730e593d87 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { Provider }                                                          from 'react-redux';
import configureStore                                                        from '../store/configureStore';
import Frontend                                                              from '../components/frontend';
import { setTimeline, updateTimeline, deleteFromTimelines, refreshTimeline } from '../actions/timelines';
import { setAccessToken }                                                    from '../actions/meta';
import PureRenderMixin                                                       from 'react-addons-pure-render-mixin';
import { Router, Route, createMemoryHistory }                                from 'react-router';
import AccountRoute                                                          from '../routes/account_route';
import StatusRoute                                                           from '../routes/status_route';

const store   = configureStore();
const history = createMemoryHistory();

const Root = React.createClass({

  propTypes: {
    token: React.PropTypes.string.isRequired,
    timelines: React.PropTypes.object
  },

  mixins: [PureRenderMixin],

  componentWillMount() {
    store.dispatch(setAccessToken(this.props.token));

    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) {
          switch(data.type) {
            case 'update':
              return store.dispatch(updateTimeline(data.timeline, JSON.parse(data.message)));
            case 'delete':
              return store.dispatch(deleteFromTimelines(data.id));
            case 'merge':
            case 'unmerge':
              return store.dispatch(refreshTimeline('home'));
          }
        }
      });
    }
  },

  render () {
    return (
      <Provider store={store}>
        <Router history={history}>
          <Route path="/" component={Frontend}>
            <Route path="/accounts/:account_id" component={AccountRoute} />
            <Route path="/statuses/:status_id" component={StatusRoute} />
          </Route>
        </Router>
      </Provider>
    );
  }

});

export default Root;