2016-09-04 16:59:46 -07:00
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import configureStore from '../store/configureStore';
|
|
|
|
import Frontend from '../components/frontend';
|
|
|
|
import { setTimeline, updateTimeline, deleteFromTimelines } from '../actions/timelines';
|
|
|
|
import { setAccessToken } from '../actions/meta';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
2016-08-24 08:56:44 -07:00
|
|
|
|
|
|
|
const store = configureStore();
|
|
|
|
|
|
|
|
const Root = React.createClass({
|
|
|
|
|
2016-08-26 10:12:19 -07:00
|
|
|
propTypes: {
|
|
|
|
token: React.PropTypes.string.isRequired,
|
2016-08-31 07:15:12 -07:00
|
|
|
timelines: React.PropTypes.object
|
2016-08-26 10:12:19 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-08-24 08:56:44 -07:00
|
|
|
componentWillMount() {
|
2016-08-26 10:12:19 -07:00
|
|
|
store.dispatch(setAccessToken(this.props.token));
|
|
|
|
|
2016-08-24 08:56:44 -07: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-04 16:59:46 -07:00
|
|
|
if (data.type === 'update') {
|
|
|
|
return store.dispatch(updateTimeline(data.timeline, JSON.parse(data.message)));
|
|
|
|
} else if (data.type === 'delete') {
|
|
|
|
return store.dispatch(deleteFromTimelines(data.id));
|
|
|
|
}
|
2016-08-24 08:56:44 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
render () {
|
2016-08-24 08:56:44 -07:00
|
|
|
return (
|
|
|
|
<Provider store={store}>
|
|
|
|
<Frontend />
|
|
|
|
</Provider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default Root;
|