2017-05-03 03:04:16 +03:00
|
|
|
import React from 'react';
|
2021-04-19 15:45:15 +03:00
|
|
|
import { Provider } from 'react-redux';
|
2017-04-21 21:05:35 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-13 15:01:21 +02:00
|
|
|
import configureStore from '../store/configureStore';
|
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';
|
2016-11-13 15:01:21 +02:00
|
|
|
import UI from '../features/ui';
|
2018-04-04 23:25:34 +03:00
|
|
|
import { fetchCustomEmojis } from '../actions/custom_emojis';
|
2017-01-09 13:37:15 +02:00
|
|
|
import { hydrateStore } from '../actions/store';
|
2017-08-21 16:04:34 +03:00
|
|
|
import { connectUserStream } from '../actions/streaming';
|
2017-05-22 16:06:06 +03:00
|
|
|
import { IntlProvider, addLocaleData } from 'react-intl';
|
|
|
|
import { getLocale } from '../locales';
|
2017-10-27 18:04:44 +03:00
|
|
|
import initialState from '../initial_state';
|
2019-03-15 06:35:45 +02:00
|
|
|
import ErrorBoundary from '../components/error_boundary';
|
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-01-09 13:37:15 +02:00
|
|
|
|
2018-12-17 12:07:17 +02:00
|
|
|
store.dispatch(hydrateAction);
|
2018-04-04 23:25:34 +03:00
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
|
2021-09-26 06:46:13 +03:00
|
|
|
const createIdentityContext = state => ({
|
|
|
|
signedIn: !!state.meta.me,
|
|
|
|
accountId: state.meta.me,
|
|
|
|
accessToken: state.meta.access_token,
|
2022-07-05 03:41:40 +03:00
|
|
|
permissions: state.role.permissions,
|
2021-09-26 06:46:13 +03: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
|
|
|
|
2021-09-26 06:46:13 +03: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-04 01:34:31 +02:00
|
|
|
componentDidMount() {
|
2021-09-26 06:46:13 +03:00
|
|
|
if (this.identity.signedIn) {
|
|
|
|
this.disconnect = store.dispatch(connectUserStream());
|
|
|
|
}
|
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
|
|
|
|
2021-07-13 16:45:17 +03:00
|
|
|
shouldUpdateScroll (prevRouterProps, { location }) {
|
|
|
|
return !(location.state?.mastodonModalKey && location.state?.mastodonModalKey !== prevRouterProps?.location?.state?.mastodonModalKey);
|
2021-04-19 15:45:15 +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}>
|
2019-03-15 06:35:45 +02:00
|
|
|
<ErrorBoundary>
|
2021-04-19 15:45:15 +03:00
|
|
|
<BrowserRouter basename='/web'>
|
|
|
|
<ScrollContext shouldUpdateScroll={this.shouldUpdateScroll}>
|
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</BrowserRouter>
|
2019-03-15 06:35:45 +02:00
|
|
|
</ErrorBoundary>
|
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
|
|
|
}
|