2016-10-06 22:47:35 +02:00
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import configureStore from '../store/configureStore';
|
2016-09-20 23:18:00 +02:00
|
|
|
import {
|
|
|
|
refreshTimelineSuccess,
|
|
|
|
updateTimeline,
|
|
|
|
deleteFromTimelines,
|
|
|
|
refreshTimeline
|
2016-10-06 22:47:35 +02:00
|
|
|
} from '../actions/timelines';
|
|
|
|
import { setAccessToken } from '../actions/meta';
|
|
|
|
import { setAccountSelf } from '../actions/accounts';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import {
|
2016-10-18 23:06:28 +02:00
|
|
|
applyRouterMiddleware,
|
2016-10-06 22:47:35 +02:00
|
|
|
Router,
|
|
|
|
Route,
|
|
|
|
hashHistory,
|
|
|
|
IndexRoute
|
|
|
|
} from 'react-router';
|
2016-10-18 23:06:28 +02:00
|
|
|
import { useScroll } from 'react-router-scroll';
|
2016-10-12 13:17:17 +02:00
|
|
|
import UI from '../features/ui';
|
2016-10-06 22:47:35 +02:00
|
|
|
import Account from '../features/account';
|
|
|
|
import Status from '../features/status';
|
|
|
|
import GettingStarted from '../features/getting_started';
|
2016-10-07 16:00:11 +02:00
|
|
|
import PublicTimeline from '../features/public_timeline';
|
2016-10-09 20:18:54 +02:00
|
|
|
import AccountTimeline from '../features/account_timeline';
|
2016-10-12 13:17:17 +02:00
|
|
|
import HomeTimeline from '../features/home_timeline';
|
|
|
|
import MentionsTimeline from '../features/mentions_timeline';
|
|
|
|
import Compose from '../features/compose';
|
2016-10-27 21:59:56 +02:00
|
|
|
import Followers from '../features/followers';
|
|
|
|
import Following from '../features/following';
|
2016-08-24 17:56:44 +02:00
|
|
|
|
2016-09-13 02:24:40 +02:00
|
|
|
const store = configureStore();
|
2016-08-24 17:56:44 +02:00
|
|
|
|
2016-09-19 23:25:59 +02:00
|
|
|
const Mastodon = React.createClass({
|
2016-08-24 17:56:44 +02:00
|
|
|
|
2016-08-26 19:12:19 +02:00
|
|
|
propTypes: {
|
|
|
|
token: React.PropTypes.string.isRequired,
|
2016-09-13 02:24:40 +02:00
|
|
|
timelines: React.PropTypes.object,
|
|
|
|
account: React.PropTypes.string
|
2016-08-26 19:12:19 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-08-24 17:56:44 +02:00
|
|
|
componentWillMount() {
|
2016-08-26 19:12:19 +02:00
|
|
|
store.dispatch(setAccessToken(this.props.token));
|
2016-09-13 02:24:40 +02:00
|
|
|
store.dispatch(setAccountSelf(JSON.parse(this.props.account)));
|
2016-08-26 19:12:19 +02:00
|
|
|
|
2016-08-24 17:56:44 +02:00
|
|
|
if (typeof App !== 'undefined') {
|
2016-10-07 16:00:11 +02:00
|
|
|
this.subscription = App.cable.subscriptions.create('TimelineChannel', {
|
2016-10-03 18:17:06 +02:00
|
|
|
|
|
|
|
received (data) {
|
2016-09-12 18:22:43 +02: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':
|
2016-10-19 18:20:19 +02:00
|
|
|
return store.dispatch(refreshTimeline('home', true));
|
2016-10-03 18:17:06 +02:00
|
|
|
case 'block':
|
2016-10-19 18:20:19 +02:00
|
|
|
return store.dispatch(refreshTimeline('mentions', true));
|
2016-09-05 01:59:46 +02:00
|
|
|
}
|
2016-08-24 17:56:44 +02:00
|
|
|
}
|
2016-10-07 16:00:11 +02:00
|
|
|
|
2016-08-24 17:56:44 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-10-07 16:00:11 +02:00
|
|
|
componentWillUnmount () {
|
|
|
|
if (typeof this.subscription !== 'undefined') {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-08-31 16:15:12 +02:00
|
|
|
render () {
|
2016-08-24 17:56:44 +02:00
|
|
|
return (
|
|
|
|
<Provider store={store}>
|
2016-10-18 23:06:28 +02:00
|
|
|
<Router history={hashHistory} render={applyRouterMiddleware(useScroll())}>
|
2016-09-19 23:25:59 +02:00
|
|
|
<Route path='/' component={UI}>
|
2016-10-06 22:47:35 +02:00
|
|
|
<IndexRoute component={GettingStarted} />
|
2016-10-12 13:17:17 +02:00
|
|
|
<Route path='/statuses/new' component={Compose} />
|
|
|
|
<Route path='/statuses/home' component={HomeTimeline} />
|
|
|
|
<Route path='/statuses/mentions' component={MentionsTimeline} />
|
2016-10-07 16:00:11 +02:00
|
|
|
<Route path='/statuses/all' component={PublicTimeline} />
|
2016-09-16 00:21:51 +02:00
|
|
|
<Route path='/statuses/:statusId' component={Status} />
|
2016-10-09 20:18:54 +02:00
|
|
|
<Route path='/accounts/:accountId' component={Account}>
|
|
|
|
<IndexRoute component={AccountTimeline} />
|
2016-10-27 21:59:56 +02:00
|
|
|
<Route path='/accounts/:accountId/followers' component={Followers} />
|
|
|
|
<Route path='/accounts/:accountId/following' component={Following} />
|
2016-10-09 20:18:54 +02:00
|
|
|
</Route>
|
2016-09-10 18:36:48 +02:00
|
|
|
</Route>
|
|
|
|
</Router>
|
2016-08-24 17:56:44 +02:00
|
|
|
</Provider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-09-19 23:25:59 +02:00
|
|
|
export default Mastodon;
|