about summary refs log tree commit diff
path: root/app/assets/javascripts/components/containers/mastodon.jsx
blob: 220ddc54d23c25fd24e8bf59db95f077af111e15 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import { Provider }                   from 'react-redux';
import configureStore                 from '../store/configureStore';
import {
  refreshTimelineSuccess,
  updateTimeline,
  deleteFromTimelines,
  refreshTimeline
}                                     from '../actions/timelines';
import { setAccessToken }             from '../actions/meta';
import { setAccountSelf }             from '../actions/accounts';
import PureRenderMixin                from 'react-addons-pure-render-mixin';
import { Router, Route, hashHistory } from 'react-router';
import Account                        from '../features/account';
import Settings                       from '../features/settings';
import Status                         from '../features/status';
import Subscriptions                  from '../features/subscriptions';
import UI                             from '../features/ui';

const store = configureStore();

const Mastodon = React.createClass({

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

  mixins: [PureRenderMixin],

  componentWillMount() {
    store.dispatch(setAccessToken(this.props.token));
    store.dispatch(setAccountSelf(JSON.parse(this.props.account)));

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

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

        },

        disconnected () {

        },

        received (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'));
            case 'block':
              return store.dispatch(refreshTimeline('mentions'));
          }
        }
      });
    }
  },

  render () {
    return (
      <Provider store={store}>
        <Router history={hashHistory}>
          <Route path='/' component={UI}>
            <Route path='/settings' component={Settings} />
            <Route path='/subscriptions' component={Subscriptions} />
            <Route path='/statuses/:statusId' component={Status} />
            <Route path='/accounts/:accountId' component={Account} />
          </Route>
        </Router>
      </Provider>
    );
  }

});

export default Mastodon;