2016-09-12 16:22:43 +00:00
|
|
|
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';
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-09-10 16:36:48 +00:00
|
|
|
const store = configureStore();
|
|
|
|
const history = createMemoryHistory();
|
2016-08-24 15:56:44 +00:00
|
|
|
|
|
|
|
const Root = React.createClass({
|
|
|
|
|
2016-08-26 17:12:19 +00:00
|
|
|
propTypes: {
|
|
|
|
token: React.PropTypes.string.isRequired,
|
2016-08-31 14:15:12 +00:00
|
|
|
timelines: React.PropTypes.object
|
2016-08-26 17:12:19 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
componentWillMount() {
|
2016-08-26 17:12:19 +00:00
|
|
|
store.dispatch(setAccessToken(this.props.token));
|
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
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) {
|
2016-09-12 16:22:43 +00:00
|
|
|
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'));
|
2016-09-04 23:59:46 +00:00
|
|
|
}
|
2016-08-24 15:56:44 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
render () {
|
2016-08-24 15:56:44 +00:00
|
|
|
return (
|
|
|
|
<Provider store={store}>
|
2016-09-10 16:36:48 +00:00
|
|
|
<Router history={history}>
|
|
|
|
<Route path="/" component={Frontend}>
|
|
|
|
<Route path="/accounts/:account_id" component={AccountRoute} />
|
|
|
|
<Route path="/statuses/:status_id" component={StatusRoute} />
|
|
|
|
</Route>
|
|
|
|
</Router>
|
2016-08-24 15:56:44 +00:00
|
|
|
</Provider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default Root;
|