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';
|
2017-04-16 18:32:00 +00:00
|
|
|
import { showOnboardingOnce } from '../actions/onboarding';
|
2017-06-20 18:40:03 +00: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 13:01:21 +00:00
|
|
|
import UI from '../features/ui';
|
2017-01-09 11:37:15 +00:00
|
|
|
import { hydrateStore } from '../actions/store';
|
2017-08-21 13:04:34 +00:00
|
|
|
import { connectUserStream } from '../actions/streaming';
|
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
|
|
|
|
2017-07-07 22:06:02 +00:00
|
|
|
export const store = configureStore();
|
2017-07-09 10:16:08 +00:00
|
|
|
const hydrateAction = hydrateStore(JSON.parse(document.getElementById('initial-state').textContent));
|
2017-07-07 22:06:02 +00:00
|
|
|
store.dispatch(hydrateAction);
|
2017-01-09 11:37:15 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class Mastodon extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
locale: PropTypes.string.isRequired,
|
|
|
|
};
|
2016-08-26 17:12:19 +00:00
|
|
|
|
2017-02-03 23:34:31 +00:00
|
|
|
componentDidMount() {
|
2017-08-21 13:04:34 +00:00
|
|
|
this.disconnect = store.dispatch(connectUserStream());
|
2016-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
// Desktop notifications
|
2017-09-01 14:07:08 +00:00
|
|
|
// Ask after 1 minute
|
2016-11-21 09:59:59 +00:00
|
|
|
if (typeof window.Notification !== 'undefined' && Notification.permission === 'default') {
|
2017-09-01 14:07:08 +00:00
|
|
|
window.setTimeout(() => Notification.requestPermission(), 60 * 1000);
|
2016-11-20 18:39:18 +00:00
|
|
|
}
|
2017-04-16 18:32:00 +00:00
|
|
|
|
2017-09-01 14:07:08 +00:00
|
|
|
// Protocol handler
|
|
|
|
// Ask after 5 minutes
|
2017-08-14 02:53:31 +00:00
|
|
|
if (typeof navigator.registerProtocolHandler !== 'undefined') {
|
|
|
|
const handlerUrl = window.location.protocol + '//' + window.location.host + '/intent?uri=%s';
|
2017-09-01 14:07:08 +00:00
|
|
|
window.setTimeout(() => navigator.registerProtocolHandler('web+mastodon', handlerUrl, 'Mastodon'), 5 * 60 * 1000);
|
2017-08-14 02:53:31 +00:00
|
|
|
}
|
|
|
|
|
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 () {
|
2017-08-21 13:04:34 +00:00
|
|
|
if (this.disconnect) {
|
|
|
|
this.disconnect();
|
|
|
|
this.disconnect = null;
|
2017-05-04 21:41:34 +00:00
|
|
|
}
|
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}>
|
2017-06-20 18:40:03 +00:00
|
|
|
<BrowserRouter basename='/web'>
|
|
|
|
<ScrollContext>
|
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</BrowserRouter>
|
2016-11-16 16:20:52 +00:00
|
|
|
</Provider>
|
|
|
|
</IntlProvider>
|
2016-08-24 15:56:44 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|