2016-10-06 20:47:35 +00:00
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import configureStore from '../store/configureStore';
|
2016-09-20 21:18:00 +00:00
|
|
|
import {
|
|
|
|
refreshTimelineSuccess,
|
|
|
|
updateTimeline,
|
|
|
|
deleteFromTimelines,
|
|
|
|
refreshTimeline
|
2016-10-06 20:47:35 +00:00
|
|
|
} 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,
|
|
|
|
IndexRoute
|
|
|
|
} from 'react-router';
|
|
|
|
import Account from '../features/account';
|
|
|
|
import Status from '../features/status';
|
|
|
|
import GettingStarted from '../features/getting_started';
|
2016-10-07 14:00:11 +00:00
|
|
|
import PublicTimeline from '../features/public_timeline';
|
2016-10-06 20:47:35 +00:00
|
|
|
import UI from '../features/ui';
|
2016-10-09 18:18:54 +00:00
|
|
|
import AccountTimeline from '../features/account_timeline';
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-09-13 00:24:40 +00:00
|
|
|
const store = configureStore();
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-09-19 21:25:59 +00:00
|
|
|
const Mastodon = React.createClass({
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-08-26 17:12:19 +00:00
|
|
|
propTypes: {
|
|
|
|
token: React.PropTypes.string.isRequired,
|
2016-09-13 00:24:40 +00:00
|
|
|
timelines: React.PropTypes.object,
|
|
|
|
account: React.PropTypes.string
|
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-09-13 00:24:40 +00:00
|
|
|
store.dispatch(setAccountSelf(JSON.parse(this.props.account)));
|
2016-08-26 17:12:19 +00:00
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
for (var timelineType in this.props.timelines) {
|
|
|
|
if (this.props.timelines.hasOwnProperty(timelineType)) {
|
2016-09-20 21:18:00 +00:00
|
|
|
store.dispatch(refreshTimelineSuccess(timelineType, JSON.parse(this.props.timelines[timelineType])));
|
2016-08-24 15:56:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof App !== 'undefined') {
|
2016-10-07 14:00:11 +00:00
|
|
|
this.subscription = App.cable.subscriptions.create('TimelineChannel', {
|
2016-10-03 16:17:06 +00:00
|
|
|
|
|
|
|
received (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-10-03 16:17:06 +00:00
|
|
|
case 'block':
|
|
|
|
return store.dispatch(refreshTimeline('mentions'));
|
2016-09-04 23:59:46 +00:00
|
|
|
}
|
2016-08-24 15:56:44 +00:00
|
|
|
}
|
2016-10-07 14:00:11 +00:00
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-10-07 14:00:11 +00:00
|
|
|
componentWillUnmount () {
|
|
|
|
if (typeof this.subscription !== 'undefined') {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
render () {
|
2016-08-24 15:56:44 +00:00
|
|
|
return (
|
|
|
|
<Provider store={store}>
|
2016-09-13 00:24:40 +00:00
|
|
|
<Router history={hashHistory}>
|
2016-09-19 21:25:59 +00:00
|
|
|
<Route path='/' component={UI}>
|
2016-10-06 20:47:35 +00:00
|
|
|
<IndexRoute component={GettingStarted} />
|
2016-10-07 14:00:11 +00:00
|
|
|
<Route path='/statuses/all' component={PublicTimeline} />
|
2016-09-15 22:21:51 +00:00
|
|
|
<Route path='/statuses/:statusId' component={Status} />
|
2016-10-09 18:18:54 +00:00
|
|
|
<Route path='/accounts/:accountId' component={Account}>
|
|
|
|
<IndexRoute component={AccountTimeline} />
|
|
|
|
</Route>
|
2016-09-10 16:36:48 +00:00
|
|
|
</Route>
|
|
|
|
</Router>
|
2016-08-24 15:56:44 +00:00
|
|
|
</Provider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-09-19 21:25:59 +00:00
|
|
|
export default Mastodon;
|