2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-11-13 13:01:21 +00:00
|
|
|
import { Provider } from 'react-redux';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-13 13:01:21 +00:00
|
|
|
import configureStore from '../store/configureStore';
|
2016-09-20 21:18:00 +00:00
|
|
|
import {
|
|
|
|
refreshTimelineSuccess,
|
|
|
|
updateTimeline,
|
|
|
|
deleteFromTimelines,
|
2017-06-11 15:07:35 +00:00
|
|
|
refreshHomeTimeline,
|
2017-04-02 19:44:06 +00:00
|
|
|
connectTimeline,
|
2017-05-20 15:31:47 +00:00
|
|
|
disconnectTimeline,
|
2016-11-13 13:01:21 +00:00
|
|
|
} from '../actions/timelines';
|
2017-04-16 18:32:00 +00:00
|
|
|
import { showOnboardingOnce } from '../actions/onboarding';
|
2017-02-07 13:37:12 +00:00
|
|
|
import { updateNotifications, refreshNotifications } from '../actions/notifications';
|
2016-11-13 13:01:21 +00:00
|
|
|
import createBrowserHistory from 'history/lib/createBrowserHistory';
|
2017-05-18 17:14:03 +00:00
|
|
|
import applyRouterMiddleware from 'react-router/lib/applyRouterMiddleware';
|
|
|
|
import useRouterHistory from 'react-router/lib/useRouterHistory';
|
|
|
|
import Router from 'react-router/lib/Router';
|
|
|
|
import Route from 'react-router/lib/Route';
|
|
|
|
import IndexRedirect from 'react-router/lib/IndexRedirect';
|
|
|
|
import IndexRoute from 'react-router/lib/IndexRoute';
|
2016-11-13 13:01:21 +00:00
|
|
|
import { useScroll } from 'react-router-scroll';
|
|
|
|
import UI from '../features/ui';
|
|
|
|
import Status from '../features/status';
|
|
|
|
import GettingStarted from '../features/getting_started';
|
|
|
|
import PublicTimeline from '../features/public_timeline';
|
2017-02-19 19:25:54 +00:00
|
|
|
import CommunityTimeline from '../features/community_timeline';
|
2016-11-13 13:01:21 +00:00
|
|
|
import AccountTimeline from '../features/account_timeline';
|
2017-05-19 23:28:25 +00:00
|
|
|
import AccountGallery from '../features/account_gallery';
|
2016-11-13 13:01:21 +00:00
|
|
|
import HomeTimeline from '../features/home_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-12-26 20:33:51 +00:00
|
|
|
import FollowRequests from '../features/follow_requests';
|
2017-01-10 12:50:40 +00:00
|
|
|
import GenericNotFound from '../features/generic_not_found';
|
2017-01-16 12:27:58 +00:00
|
|
|
import FavouritedStatuses from '../features/favourited_statuses';
|
2017-02-05 18:18:11 +00:00
|
|
|
import Blocks from '../features/blocks';
|
2017-04-14 23:23:49 +00:00
|
|
|
import Mutes from '../features/mutes';
|
2017-02-14 19:59:26 +00:00
|
|
|
import Report from '../features/report';
|
2017-01-09 11:37:15 +00:00
|
|
|
import { hydrateStore } from '../actions/store';
|
2017-02-03 23:34:31 +00:00
|
|
|
import createStream from '../stream';
|
2017-05-22 13:06:06 +00:00
|
|
|
import { IntlProvider, addLocaleData } from 'react-intl';
|
|
|
|
import { getLocale } from '../locales';
|
|
|
|
const { localeData, messages } = getLocale();
|
|
|
|
addLocaleData(localeData);
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-09-13 00:24:40 +00:00
|
|
|
const store = configureStore();
|
2017-06-06 01:56:36 +00:00
|
|
|
const initialState = JSON.parse(document.getElementById('initial-state').textContent);
|
2017-04-15 00:32:42 +00:00
|
|
|
store.dispatch(hydrateStore(initialState));
|
2017-01-09 11:37:15 +00:00
|
|
|
|
2016-11-13 13:01:21 +00:00
|
|
|
const browserHistory = useRouterHistory(createBrowserHistory)({
|
2017-05-20 15:31:47 +00:00
|
|
|
basename: '/web',
|
2016-11-13 13:01:21 +00:00
|
|
|
});
|
|
|
|
|
2017-05-04 21:41:34 +00:00
|
|
|
class Mastodon extends React.PureComponent {
|
2016-08-26 17:12:19 +00:00
|
|
|
|
2017-02-03 23:34:31 +00:00
|
|
|
componentDidMount() {
|
|
|
|
const { locale } = this.props;
|
2017-04-15 00:32:42 +00:00
|
|
|
const streamingAPIBaseURL = store.getState().getIn(['meta', 'streaming_api_base_url']);
|
2017-02-03 23:34:31 +00:00
|
|
|
const accessToken = store.getState().getIn(['meta', 'access_token']);
|
2016-08-26 17:12:19 +00:00
|
|
|
|
2017-05-04 21:41:34 +00:00
|
|
|
const setupPolling = () => {
|
|
|
|
this.polling = setInterval(() => {
|
2017-06-11 15:07:35 +00:00
|
|
|
store.dispatch(refreshHomeTimeline());
|
2017-05-04 21:41:34 +00:00
|
|
|
store.dispatch(refreshNotifications());
|
|
|
|
}, 20000);
|
|
|
|
};
|
|
|
|
|
|
|
|
const clearPolling = () => {
|
|
|
|
clearInterval(this.polling);
|
|
|
|
this.polling = undefined;
|
|
|
|
};
|
|
|
|
|
2017-04-15 00:32:42 +00:00
|
|
|
this.subscription = createStream(streamingAPIBaseURL, accessToken, 'user', {
|
2016-10-03 16:17:06 +00:00
|
|
|
|
2017-04-02 19:44:06 +00:00
|
|
|
connected () {
|
2017-05-04 21:41:34 +00:00
|
|
|
clearPolling();
|
2017-04-02 19:44:06 +00:00
|
|
|
store.dispatch(connectTimeline('home'));
|
|
|
|
},
|
|
|
|
|
|
|
|
disconnected () {
|
2017-05-04 21:41:34 +00:00
|
|
|
setupPolling();
|
2017-04-02 19:44:06 +00:00
|
|
|
store.dispatch(disconnectTimeline('home'));
|
|
|
|
},
|
|
|
|
|
2017-02-03 23:34:31 +00:00
|
|
|
received (data) {
|
|
|
|
switch(data.event) {
|
|
|
|
case 'update':
|
|
|
|
store.dispatch(updateTimeline('home', JSON.parse(data.payload)));
|
|
|
|
break;
|
|
|
|
case 'delete':
|
|
|
|
store.dispatch(deleteFromTimelines(data.payload));
|
|
|
|
break;
|
|
|
|
case 'notification':
|
2017-05-22 13:06:06 +00:00
|
|
|
store.dispatch(updateNotifications(JSON.parse(data.payload), messages, locale));
|
2017-02-03 23:34:31 +00:00
|
|
|
break;
|
2016-08-24 15:56:44 +00:00
|
|
|
}
|
2017-02-07 13:37:12 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
reconnected () {
|
2017-05-04 21:41:34 +00:00
|
|
|
clearPolling();
|
2017-04-02 19:44:06 +00:00
|
|
|
store.dispatch(connectTimeline('home'));
|
2017-06-11 15:07:35 +00:00
|
|
|
store.dispatch(refreshHomeTimeline());
|
2017-02-07 13:37:12 +00:00
|
|
|
store.dispatch(refreshNotifications());
|
2017-05-20 15:31:47 +00:00
|
|
|
},
|
2016-10-07 14:00:11 +00:00
|
|
|
|
2017-02-03 23:34:31 +00:00
|
|
|
});
|
2016-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
// Desktop notifications
|
2016-11-21 09:59:59 +00:00
|
|
|
if (typeof window.Notification !== 'undefined' && Notification.permission === 'default') {
|
2016-11-20 18:39:18 +00:00
|
|
|
Notification.requestPermission();
|
|
|
|
}
|
2017-04-16 18:32:00 +00:00
|
|
|
|
|
|
|
store.dispatch(showOnboardingOnce());
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-10-07 14:00:11 +00:00
|
|
|
componentWillUnmount () {
|
|
|
|
if (typeof this.subscription !== 'undefined') {
|
2017-02-03 23:34:31 +00:00
|
|
|
this.subscription.close();
|
|
|
|
this.subscription = null;
|
2016-10-07 14:00:11 +00:00
|
|
|
}
|
2017-05-04 21:41:34 +00:00
|
|
|
|
|
|
|
if (typeof this.polling !== 'undefined') {
|
|
|
|
clearInterval(this.polling);
|
|
|
|
this.polling = null;
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2016-10-07 14:00:11 +00:00
|
|
|
|
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 (
|
2017-05-22 13:06:06 +00:00
|
|
|
<IntlProvider locale={locale} messages={messages}>
|
2016-11-16 16:20:52 +00:00
|
|
|
<Provider store={store}>
|
|
|
|
<Router history={browserHistory} render={applyRouterMiddleware(useScroll())}>
|
2017-05-14 23:23:58 +00:00
|
|
|
<Route path='/' component={UI}>
|
2017-05-03 00:04:16 +00:00
|
|
|
<IndexRedirect to='/getting-started' />
|
2017-01-06 21:09:55 +00:00
|
|
|
<Route path='getting-started' component={GettingStarted} />
|
2017-05-14 23:23:58 +00:00
|
|
|
<Route path='timelines/home' component={HomeTimeline} />
|
|
|
|
<Route path='timelines/public' component={PublicTimeline} />
|
|
|
|
<Route path='timelines/public/local' component={CommunityTimeline} />
|
2016-11-16 16:20:52 +00:00
|
|
|
<Route path='timelines/tag/:id' component={HashtagTimeline} />
|
|
|
|
|
2017-05-14 23:23:58 +00:00
|
|
|
<Route path='notifications' component={Notifications} />
|
|
|
|
<Route path='favourites' component={FavouritedStatuses} />
|
|
|
|
|
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} />
|
|
|
|
|
2017-01-30 20:40:55 +00:00
|
|
|
<Route path='accounts/:accountId' component={AccountTimeline} />
|
|
|
|
<Route path='accounts/:accountId/followers' component={Followers} />
|
|
|
|
<Route path='accounts/:accountId/following' component={Following} />
|
2017-05-19 23:28:25 +00:00
|
|
|
<Route path='accounts/:accountId/media' component={AccountGallery} />
|
2016-12-26 20:33:51 +00:00
|
|
|
|
|
|
|
<Route path='follow_requests' component={FollowRequests} />
|
2017-02-05 18:18:11 +00:00
|
|
|
<Route path='blocks' component={Blocks} />
|
2017-04-14 23:23:49 +00:00
|
|
|
<Route path='mutes' component={Mutes} />
|
2017-02-14 19:59:26 +00:00
|
|
|
<Route path='report' component={Report} />
|
2017-02-05 18:18:11 +00:00
|
|
|
|
2017-01-10 12:50:40 +00:00
|
|
|
<Route path='*' component={GenericNotFound} />
|
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
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Mastodon.propTypes = {
|
2017-05-20 15:31:47 +00:00
|
|
|
locale: PropTypes.string.isRequired,
|
2017-04-21 18:05:35 +00:00
|
|
|
};
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2016-09-19 21:25:59 +00:00
|
|
|
export default Mastodon;
|