2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-11-13 08:01:21 -05:00
|
|
|
import { Provider } from 'react-redux';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-13 08:01:21 -05:00
|
|
|
import configureStore from '../store/configureStore';
|
2016-09-20 17:18:00 -04:00
|
|
|
import {
|
|
|
|
updateTimeline,
|
|
|
|
deleteFromTimelines,
|
2017-06-11 11:07:35 -04:00
|
|
|
refreshHomeTimeline,
|
2017-04-02 15:44:06 -04:00
|
|
|
connectTimeline,
|
2017-05-20 11:31:47 -04:00
|
|
|
disconnectTimeline,
|
2016-11-13 08:01:21 -05:00
|
|
|
} from '../actions/timelines';
|
2017-04-16 14:32:00 -04:00
|
|
|
import { showOnboardingOnce } from '../actions/onboarding';
|
2017-02-07 08:37:12 -05:00
|
|
|
import { updateNotifications, refreshNotifications } from '../actions/notifications';
|
2017-06-20 14:40:03 -04:00
|
|
|
import BrowserRouter from 'react-router-dom/BrowserRouter';
|
|
|
|
import Route from 'react-router-dom/Route';
|
|
|
|
import ScrollContext from 'react-router-scroll/lib/ScrollBehaviorContext';
|
2016-11-13 08:01:21 -05:00
|
|
|
import UI from '../features/ui';
|
2017-01-09 06:37:15 -05:00
|
|
|
import { hydrateStore } from '../actions/store';
|
2017-02-03 18:34:31 -05:00
|
|
|
import createStream from '../stream';
|
2017-05-22 09:06:06 -04:00
|
|
|
import { IntlProvider, addLocaleData } from 'react-intl';
|
|
|
|
import { getLocale } from '../locales';
|
|
|
|
const { localeData, messages } = getLocale();
|
|
|
|
addLocaleData(localeData);
|
2016-08-24 11:56:44 -04:00
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
export const store = configureStore();
|
2017-06-05 21:56:36 -04:00
|
|
|
const initialState = JSON.parse(document.getElementById('initial-state').textContent);
|
2017-06-24 22:12:34 -04:00
|
|
|
try {
|
2017-06-29 01:00:54 -04:00
|
|
|
initialState.local_settings = JSON.parse(localStorage.getItem('mastodon-settings'));
|
2017-06-24 22:12:34 -04:00
|
|
|
} catch (e) {
|
2017-06-29 01:00:54 -04:00
|
|
|
initialState.local_settings = {};
|
2017-06-24 22:12:34 -04:00
|
|
|
}
|
2017-07-12 05:03:17 -04:00
|
|
|
const hydrateAction = hydrateStore(initialState);
|
2017-07-07 18:06:02 -04:00
|
|
|
store.dispatch(hydrateAction);
|
2017-01-09 06:37:15 -05:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Mastodon extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
locale: PropTypes.string.isRequired,
|
|
|
|
};
|
2016-08-26 13:12:19 -04:00
|
|
|
|
2017-02-03 18:34:31 -05:00
|
|
|
componentDidMount() {
|
|
|
|
const { locale } = this.props;
|
2017-04-14 20:32:42 -04:00
|
|
|
const streamingAPIBaseURL = store.getState().getIn(['meta', 'streaming_api_base_url']);
|
2017-02-03 18:34:31 -05:00
|
|
|
const accessToken = store.getState().getIn(['meta', 'access_token']);
|
2016-08-26 13:12:19 -04:00
|
|
|
|
2017-05-04 17:41:34 -04:00
|
|
|
const setupPolling = () => {
|
|
|
|
this.polling = setInterval(() => {
|
2017-06-11 11:07:35 -04:00
|
|
|
store.dispatch(refreshHomeTimeline());
|
2017-05-04 17:41:34 -04:00
|
|
|
store.dispatch(refreshNotifications());
|
|
|
|
}, 20000);
|
|
|
|
};
|
|
|
|
|
|
|
|
const clearPolling = () => {
|
|
|
|
clearInterval(this.polling);
|
|
|
|
this.polling = undefined;
|
|
|
|
};
|
|
|
|
|
2017-04-14 20:32:42 -04:00
|
|
|
this.subscription = createStream(streamingAPIBaseURL, accessToken, 'user', {
|
2016-10-03 12:17:06 -04:00
|
|
|
|
2017-04-02 15:44:06 -04:00
|
|
|
connected () {
|
2017-05-04 17:41:34 -04:00
|
|
|
clearPolling();
|
2017-04-02 15:44:06 -04:00
|
|
|
store.dispatch(connectTimeline('home'));
|
|
|
|
},
|
|
|
|
|
|
|
|
disconnected () {
|
2017-05-04 17:41:34 -04:00
|
|
|
setupPolling();
|
2017-04-02 15:44:06 -04:00
|
|
|
store.dispatch(disconnectTimeline('home'));
|
|
|
|
},
|
|
|
|
|
2017-02-03 18:34:31 -05: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 09:06:06 -04:00
|
|
|
store.dispatch(updateNotifications(JSON.parse(data.payload), messages, locale));
|
2017-02-03 18:34:31 -05:00
|
|
|
break;
|
2016-08-24 11:56:44 -04:00
|
|
|
}
|
2017-02-07 08:37:12 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
reconnected () {
|
2017-05-04 17:41:34 -04:00
|
|
|
clearPolling();
|
2017-04-02 15:44:06 -04:00
|
|
|
store.dispatch(connectTimeline('home'));
|
2017-06-11 11:07:35 -04:00
|
|
|
store.dispatch(refreshHomeTimeline());
|
2017-02-07 08:37:12 -05:00
|
|
|
store.dispatch(refreshNotifications());
|
2017-05-20 11:31:47 -04:00
|
|
|
},
|
2016-10-07 10:00:11 -04:00
|
|
|
|
2017-02-03 18:34:31 -05:00
|
|
|
});
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
// Desktop notifications
|
2016-11-21 04:59:59 -05:00
|
|
|
if (typeof window.Notification !== 'undefined' && Notification.permission === 'default') {
|
2016-11-20 13:39:18 -05:00
|
|
|
Notification.requestPermission();
|
|
|
|
}
|
2017-04-16 14:32:00 -04:00
|
|
|
|
|
|
|
store.dispatch(showOnboardingOnce());
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-08-24 11:56:44 -04:00
|
|
|
|
2016-10-07 10:00:11 -04:00
|
|
|
componentWillUnmount () {
|
|
|
|
if (typeof this.subscription !== 'undefined') {
|
2017-02-03 18:34:31 -05:00
|
|
|
this.subscription.close();
|
|
|
|
this.subscription = null;
|
2016-10-07 10:00:11 -04:00
|
|
|
}
|
2017-05-04 17:41:34 -04:00
|
|
|
|
|
|
|
if (typeof this.polling !== 'undefined') {
|
|
|
|
clearInterval(this.polling);
|
|
|
|
this.polling = null;
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-10-07 10:00:11 -04:00
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
render () {
|
2016-11-16 11:20:52 -05:00
|
|
|
const { locale } = this.props;
|
|
|
|
|
2016-08-24 11:56:44 -04:00
|
|
|
return (
|
2017-05-22 09:06:06 -04:00
|
|
|
<IntlProvider locale={locale} messages={messages}>
|
2016-11-16 11:20:52 -05:00
|
|
|
<Provider store={store}>
|
2017-06-20 14:40:03 -04:00
|
|
|
<BrowserRouter basename='/web'>
|
|
|
|
<ScrollContext>
|
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</BrowserRouter>
|
2016-11-16 11:20:52 -05:00
|
|
|
</Provider>
|
|
|
|
</IntlProvider>
|
2016-08-24 11:56:44 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|