2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2021-04-19 12:45:15 +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-10-08 00:55:58 +00:00
|
|
|
import { BrowserRouter, Route } from 'react-router-dom';
|
2017-10-31 21:58:38 +00:00
|
|
|
import { ScrollContext } from 'react-router-scroll-4';
|
2016-11-13 13:01:21 +00:00
|
|
|
import UI from '../features/ui';
|
2018-04-04 20:25:34 +00:00
|
|
|
import { fetchCustomEmojis } from '../actions/custom_emojis';
|
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';
|
2017-10-27 15:04:44 +00:00
|
|
|
import initialState from '../initial_state';
|
2019-03-15 04:35:45 +00:00
|
|
|
import ErrorBoundary from '../components/error_boundary';
|
2017-10-16 09:12:09 +00:00
|
|
|
|
2017-05-22 13:06:06 +00:00
|
|
|
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-10-27 15:04:44 +00:00
|
|
|
const hydrateAction = hydrateStore(initialState);
|
2017-01-09 11:37:15 +00:00
|
|
|
|
2018-12-17 10:07:17 +00:00
|
|
|
store.dispatch(hydrateAction);
|
2018-04-04 20:25:34 +00:00
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
|
2021-09-26 03:46:13 +00:00
|
|
|
const createIdentityContext = state => ({
|
|
|
|
signedIn: !!state.meta.me,
|
|
|
|
accountId: state.meta.me,
|
|
|
|
accessToken: state.meta.access_token,
|
|
|
|
});
|
|
|
|
|
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
|
|
|
|
2021-09-26 03:46:13 +00:00
|
|
|
static childContextTypes = {
|
|
|
|
identity: PropTypes.shape({
|
|
|
|
signedIn: PropTypes.bool.isRequired,
|
|
|
|
accountId: PropTypes.string,
|
|
|
|
accessToken: PropTypes.string,
|
|
|
|
}).isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
identity = createIdentityContext(initialState);
|
|
|
|
|
|
|
|
getChildContext() {
|
|
|
|
return {
|
|
|
|
identity: this.identity,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-02-03 23:34:31 +00:00
|
|
|
componentDidMount() {
|
2021-09-26 03:46:13 +00:00
|
|
|
if (this.identity.signedIn) {
|
|
|
|
this.disconnect = store.dispatch(connectUserStream());
|
|
|
|
}
|
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
|
|
|
|
2021-07-13 13:45:17 +00:00
|
|
|
shouldUpdateScroll (prevRouterProps, { location }) {
|
|
|
|
return !(location.state?.mastodonModalKey && location.state?.mastodonModalKey !== prevRouterProps?.location?.state?.mastodonModalKey);
|
2021-04-19 12:45:15 +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}>
|
2019-03-15 04:35:45 +00:00
|
|
|
<ErrorBoundary>
|
2021-04-19 12:45:15 +00:00
|
|
|
<BrowserRouter basename='/web'>
|
|
|
|
<ScrollContext shouldUpdateScroll={this.shouldUpdateScroll}>
|
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</BrowserRouter>
|
2019-03-15 04:35:45 +00:00
|
|
|
</ErrorBoundary>
|
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
|
|
|
}
|