2017-05-03 03:04:16 +03:00
|
|
|
import React from 'react';
|
2016-11-13 15:01:21 +02:00
|
|
|
import { Provider } from 'react-redux';
|
2017-04-21 21:05:35 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2017-11-18 05:11:18 +02:00
|
|
|
import configureStore from 'themes/glitch/store/configureStore';
|
|
|
|
import { showOnboardingOnce } from 'themes/glitch/actions/onboarding';
|
2017-10-08 03:55:58 +03:00
|
|
|
import { BrowserRouter, Route } from 'react-router-dom';
|
2017-10-31 23:58:38 +02:00
|
|
|
import { ScrollContext } from 'react-router-scroll-4';
|
2017-11-18 05:11:18 +02:00
|
|
|
import UI from 'themes/glitch/features/ui';
|
|
|
|
import { hydrateStore } from 'themes/glitch/actions/store';
|
|
|
|
import { connectUserStream } from 'themes/glitch/actions/streaming';
|
2017-05-22 16:06:06 +03:00
|
|
|
import { IntlProvider, addLocaleData } from 'react-intl';
|
2017-11-21 08:13:37 +02:00
|
|
|
import { getLocale } from 'locales';
|
2017-11-18 05:11:18 +02:00
|
|
|
import initialState from 'themes/glitch/util/initial_state';
|
2017-10-16 12:12:09 +03:00
|
|
|
|
2017-05-22 16:06:06 +03:00
|
|
|
const { localeData, messages } = getLocale();
|
|
|
|
addLocaleData(localeData);
|
2016-08-24 18:56:44 +03:00
|
|
|
|
2017-07-08 01:06:02 +03:00
|
|
|
export const store = configureStore();
|
2017-10-27 18:04:44 +03:00
|
|
|
const hydrateAction = hydrateStore(initialState);
|
2017-07-08 01:06:02 +03:00
|
|
|
store.dispatch(hydrateAction);
|
2017-01-09 13:37:15 +02:00
|
|
|
|
2017-06-23 20:36:54 +03:00
|
|
|
export default class Mastodon extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
locale: PropTypes.string.isRequired,
|
|
|
|
};
|
2016-08-26 20:12:19 +03:00
|
|
|
|
2017-02-04 01:34:31 +02:00
|
|
|
componentDidMount() {
|
2017-08-21 16:04:34 +03:00
|
|
|
this.disconnect = store.dispatch(connectUserStream());
|
2016-11-20 20:39:18 +02:00
|
|
|
|
|
|
|
// Desktop notifications
|
2017-09-01 17:07:08 +03:00
|
|
|
// Ask after 1 minute
|
2016-11-21 11:59:59 +02:00
|
|
|
if (typeof window.Notification !== 'undefined' && Notification.permission === 'default') {
|
2017-09-01 17:07:08 +03:00
|
|
|
window.setTimeout(() => Notification.requestPermission(), 60 * 1000);
|
2016-11-20 20:39:18 +02:00
|
|
|
}
|
2017-04-16 21:32:00 +03:00
|
|
|
|
2017-09-01 17:07:08 +03:00
|
|
|
// Protocol handler
|
|
|
|
// Ask after 5 minutes
|
2017-08-14 05:53:31 +03:00
|
|
|
if (typeof navigator.registerProtocolHandler !== 'undefined') {
|
|
|
|
const handlerUrl = window.location.protocol + '//' + window.location.host + '/intent?uri=%s';
|
2017-09-01 17:07:08 +03:00
|
|
|
window.setTimeout(() => navigator.registerProtocolHandler('web+mastodon', handlerUrl, 'Mastodon'), 5 * 60 * 1000);
|
2017-08-14 05:53:31 +03:00
|
|
|
}
|
|
|
|
|
2017-04-16 21:32:00 +03:00
|
|
|
store.dispatch(showOnboardingOnce());
|
2017-04-21 21:05:35 +03:00
|
|
|
}
|
2016-08-24 18:56:44 +03:00
|
|
|
|
2016-10-07 17:00:11 +03:00
|
|
|
componentWillUnmount () {
|
2017-08-21 16:04:34 +03:00
|
|
|
if (this.disconnect) {
|
|
|
|
this.disconnect();
|
|
|
|
this.disconnect = null;
|
2017-05-05 00:41:34 +03:00
|
|
|
}
|
2017-04-21 21:05:35 +03:00
|
|
|
}
|
2016-10-07 17:00:11 +03:00
|
|
|
|
2016-08-31 17:15:12 +03:00
|
|
|
render () {
|
2016-11-16 18:20:52 +02:00
|
|
|
const { locale } = this.props;
|
|
|
|
|
2016-08-24 18:56:44 +03:00
|
|
|
return (
|
2017-05-22 16:06:06 +03:00
|
|
|
<IntlProvider locale={locale} messages={messages}>
|
2016-11-16 18:20:52 +02:00
|
|
|
<Provider store={store}>
|
2017-06-20 21:40:03 +03:00
|
|
|
<BrowserRouter basename='/web'>
|
|
|
|
<ScrollContext>
|
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</BrowserRouter>
|
2016-11-16 18:20:52 +02:00
|
|
|
</Provider>
|
|
|
|
</IntlProvider>
|
2016-08-24 18:56:44 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 21:05:35 +03:00
|
|
|
}
|