2017-05-02 17:04:16 -07:00
|
|
|
import React from 'react';
|
2016-11-13 05:01:21 -08:00
|
|
|
import { Provider } from 'react-redux';
|
2017-04-21 11:05:35 -07:00
|
|
|
import PropTypes from 'prop-types';
|
2017-12-03 23:26:40 -08:00
|
|
|
import configureStore from 'flavours/glitch/store/configureStore';
|
2017-10-07 17:55:58 -07:00
|
|
|
import { BrowserRouter, Route } from 'react-router-dom';
|
2017-10-31 14:58:38 -07:00
|
|
|
import { ScrollContext } from 'react-router-scroll-4';
|
2017-12-03 23:26:40 -08:00
|
|
|
import UI from 'flavours/glitch/features/ui';
|
2018-04-07 13:05:21 -07:00
|
|
|
import { fetchCustomEmojis } from 'flavours/glitch/actions/custom_emojis';
|
2017-12-03 23:26:40 -08:00
|
|
|
import { hydrateStore } from 'flavours/glitch/actions/store';
|
|
|
|
import { connectUserStream } from 'flavours/glitch/actions/streaming';
|
2017-05-22 06:06:06 -07:00
|
|
|
import { IntlProvider, addLocaleData } from 'react-intl';
|
2017-11-20 22:13:37 -08:00
|
|
|
import { getLocale } from 'locales';
|
2017-12-03 23:26:40 -08:00
|
|
|
import initialState from 'flavours/glitch/util/initial_state';
|
2018-11-28 06:01:40 -08:00
|
|
|
import ErrorBoundary from 'flavours/glitch/components/error_boundary';
|
2017-10-16 02:12:09 -07:00
|
|
|
|
2017-05-22 06:06:06 -07:00
|
|
|
const { localeData, messages } = getLocale();
|
|
|
|
addLocaleData(localeData);
|
2016-08-24 08:56:44 -07:00
|
|
|
|
2017-07-07 15:06:02 -07:00
|
|
|
export const store = configureStore();
|
2017-10-27 08:04:44 -07:00
|
|
|
const hydrateAction = hydrateStore(initialState);
|
2017-07-07 15:06:02 -07:00
|
|
|
store.dispatch(hydrateAction);
|
2017-01-09 03:37:15 -08:00
|
|
|
|
2018-04-07 13:05:21 -07:00
|
|
|
// load custom emojis
|
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
|
2017-06-23 10:36:54 -07:00
|
|
|
export default class Mastodon extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
locale: PropTypes.string.isRequired,
|
|
|
|
};
|
2016-08-26 10:12:19 -07:00
|
|
|
|
2017-02-03 15:34:31 -08:00
|
|
|
componentDidMount() {
|
2017-08-21 06:04:34 -07:00
|
|
|
this.disconnect = store.dispatch(connectUserStream());
|
2017-04-21 11:05:35 -07:00
|
|
|
}
|
2016-08-24 08:56:44 -07:00
|
|
|
|
2016-10-07 07:00:11 -07:00
|
|
|
componentWillUnmount () {
|
2017-08-21 06:04:34 -07:00
|
|
|
if (this.disconnect) {
|
|
|
|
this.disconnect();
|
|
|
|
this.disconnect = null;
|
2017-05-04 14:41:34 -07:00
|
|
|
}
|
2017-04-21 11:05:35 -07:00
|
|
|
}
|
2016-10-07 07:00:11 -07:00
|
|
|
|
2019-09-12 11:14:59 -07:00
|
|
|
shouldUpdateScroll (_, { location }) {
|
2021-07-13 02:07:16 -07:00
|
|
|
return !(location.state?.mastodonModalKey);
|
2019-09-12 11:14:59 -07:00
|
|
|
}
|
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
render () {
|
2016-11-16 08:20:52 -08:00
|
|
|
const { locale } = this.props;
|
|
|
|
|
2016-08-24 08:56:44 -07:00
|
|
|
return (
|
2017-05-22 06:06:06 -07:00
|
|
|
<IntlProvider locale={locale} messages={messages}>
|
2016-11-16 08:20:52 -08:00
|
|
|
<Provider store={store}>
|
2018-11-28 06:01:40 -08:00
|
|
|
<ErrorBoundary>
|
|
|
|
<BrowserRouter basename='/web'>
|
2019-09-12 11:14:59 -07:00
|
|
|
<ScrollContext shouldUpdateScroll={this.shouldUpdateScroll}>
|
2018-11-28 06:01:40 -08:00
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</BrowserRouter>
|
|
|
|
</ErrorBoundary>
|
2016-11-16 08:20:52 -08:00
|
|
|
</Provider>
|
|
|
|
</IntlProvider>
|
2016-08-24 08:56:44 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 11:05:35 -07:00
|
|
|
}
|