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