2016-11-13 13:01:21 +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-11-13 13:01:21 +00:00
|
|
|
} from '../actions/timelines';
|
2016-11-20 18:39:18 +00:00
|
|
|
import { updateNotifications } from '../actions/notifications';
|
2016-10-06 20:47:35 +00:00
|
|
|
import { setAccessToken } from '../actions/meta';
|
|
|
|
import { setAccountSelf } from '../actions/accounts';
|
2016-11-13 13:01:21 +00:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import createBrowserHistory from 'history/lib/createBrowserHistory';
|
2016-10-06 20:47:35 +00:00
|
|
|
import {
|
2016-10-18 21:06:28 +00:00
|
|
|
applyRouterMiddleware,
|
2016-11-13 13:01:21 +00:00
|
|
|
useRouterHistory,
|
2016-10-06 20:47:35 +00:00
|
|
|
Router,
|
|
|
|
Route,
|
|
|
|
IndexRoute
|
2016-11-13 13:01:21 +00:00
|
|
|
} from 'react-router';
|
|
|
|
import { useScroll } from 'react-router-scroll';
|
|
|
|
import UI from '../features/ui';
|
|
|
|
import Account from '../features/account';
|
|
|
|
import Status from '../features/status';
|
|
|
|
import GettingStarted from '../features/getting_started';
|
|
|
|
import PublicTimeline from '../features/public_timeline';
|
|
|
|
import AccountTimeline from '../features/account_timeline';
|
|
|
|
import HomeTimeline from '../features/home_timeline';
|
|
|
|
import MentionsTimeline from '../features/mentions_timeline';
|
|
|
|
import Compose from '../features/compose';
|
|
|
|
import Followers from '../features/followers';
|
|
|
|
import Following from '../features/following';
|
|
|
|
import Reblogs from '../features/reblogs';
|
|
|
|
import Favourites from '../features/favourites';
|
|
|
|
import HashtagTimeline from '../features/hashtag_timeline';
|
2016-11-20 18:39:18 +00:00
|
|
|
import Notifications from '../features/notifications';
|
2016-11-17 15:34:36 +00:00
|
|
|
import { IntlProvider, addLocaleData } from 'react-intl';
|
|
|
|
import en from 'react-intl/locale-data/en';
|
2016-11-18 14:36:16 +00:00
|
|
|
import de from 'react-intl/locale-data/de';
|
2016-11-18 23:10:47 +00:00
|
|
|
import es from 'react-intl/locale-data/es';
|
2016-11-18 14:36:16 +00:00
|
|
|
import getMessagesForLocale from '../locales';
|
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-11-13 13:01:21 +00:00
|
|
|
const browserHistory = useRouterHistory(createBrowserHistory)({
|
|
|
|
basename: '/web'
|
|
|
|
});
|
|
|
|
|
2016-11-18 23:10:47 +00:00
|
|
|
addLocaleData([...en, ...de, ...es]);
|
2016-11-17 15:34:36 +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,
|
2016-11-16 16:20:52 +00:00
|
|
|
account: React.PropTypes.string,
|
|
|
|
locale: React.PropTypes.string.isRequired
|
2016-08-26 17:12:19 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
componentWillMount() {
|
2016-11-21 09:24:50 +00:00
|
|
|
const { token, account, locale } = this.props;
|
|
|
|
|
|
|
|
store.dispatch(setAccessToken(token));
|
|
|
|
store.dispatch(setAccountSelf(JSON.parse(account)));
|
2016-08-26 17:12:19 +00:00
|
|
|
|
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':
|
2016-10-19 16:20:19 +00:00
|
|
|
return store.dispatch(refreshTimeline('home', true));
|
2016-10-03 16:17:06 +00:00
|
|
|
case 'block':
|
2016-10-19 16:20:19 +00:00
|
|
|
return store.dispatch(refreshTimeline('mentions', true));
|
2016-11-20 18:39:18 +00:00
|
|
|
case 'notification':
|
2016-11-21 09:24:50 +00:00
|
|
|
return store.dispatch(updateNotifications(JSON.parse(data.message), getMessagesForLocale(locale), locale));
|
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-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
// Desktop notifications
|
|
|
|
if (Notification.permission === 'default') {
|
|
|
|
Notification.requestPermission();
|
|
|
|
}
|
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-11-16 16:20:52 +00:00
|
|
|
const { locale } = this.props;
|
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
return (
|
2016-11-18 14:36:16 +00:00
|
|
|
<IntlProvider locale={locale} messages={getMessagesForLocale(locale)}>
|
2016-11-16 16:20:52 +00:00
|
|
|
<Provider store={store}>
|
|
|
|
<Router history={browserHistory} render={applyRouterMiddleware(useScroll())}>
|
|
|
|
<Route path='/' component={UI}>
|
|
|
|
<IndexRoute component={GettingStarted} />
|
|
|
|
|
|
|
|
<Route path='timelines/home' component={HomeTimeline} />
|
|
|
|
<Route path='timelines/mentions' component={MentionsTimeline} />
|
|
|
|
<Route path='timelines/public' component={PublicTimeline} />
|
|
|
|
<Route path='timelines/tag/:id' component={HashtagTimeline} />
|
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
<Route path='notifications' component={Notifications} />
|
|
|
|
|
2016-11-16 16:20:52 +00:00
|
|
|
<Route path='statuses/new' component={Compose} />
|
|
|
|
<Route path='statuses/:statusId' component={Status} />
|
|
|
|
<Route path='statuses/:statusId/reblogs' component={Reblogs} />
|
|
|
|
<Route path='statuses/:statusId/favourites' component={Favourites} />
|
|
|
|
|
|
|
|
<Route path='accounts/:accountId' component={Account}>
|
|
|
|
<IndexRoute component={AccountTimeline} />
|
|
|
|
<Route path='followers' component={Followers} />
|
|
|
|
<Route path='following' component={Following} />
|
|
|
|
</Route>
|
2016-10-09 18:18:54 +00:00
|
|
|
</Route>
|
2016-11-16 16:20:52 +00:00
|
|
|
</Router>
|
|
|
|
</Provider>
|
|
|
|
</IntlProvider>
|
2016-08-24 15:56:44 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-09-19 21:25:59 +00:00
|
|
|
export default Mastodon;
|