2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-28 12:18:23 +00:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2023-05-31 21:43:39 +00:00
|
|
|
import { IntlProvider } from 'react-intl';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
|
|
|
import { Helmet } from 'react-helmet';
|
2017-10-08 00:55:58 +00:00
|
|
|
import { BrowserRouter, Route } from 'react-router-dom';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
|
|
|
import { Provider as ReduxProvider } from 'react-redux';
|
|
|
|
|
2017-10-31 21:58:38 +00:00
|
|
|
import { ScrollContext } from 'react-router-scroll-4';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2018-04-07 20:05:21 +00:00
|
|
|
import { fetchCustomEmojis } from 'flavours/glitch/actions/custom_emojis';
|
2022-05-15 15:30:40 +00:00
|
|
|
import { checkDeprecatedLocalSettings } from 'flavours/glitch/actions/local_settings';
|
2023-05-28 14:38:10 +00:00
|
|
|
import { hydrateStore } from 'flavours/glitch/actions/store';
|
2022-10-09 01:55:09 +00:00
|
|
|
import { connectUserStream } from 'flavours/glitch/actions/streaming';
|
2018-11-28 14:01:40 +00:00
|
|
|
import ErrorBoundary from 'flavours/glitch/components/error_boundary';
|
2023-05-28 14:38:10 +00:00
|
|
|
import UI from 'flavours/glitch/features/ui';
|
2022-10-09 01:55:09 +00:00
|
|
|
import initialState, { title as siteTitle } from 'flavours/glitch/initial_state';
|
2023-05-28 14:38:10 +00:00
|
|
|
import { store } from 'flavours/glitch/store';
|
2023-05-31 21:43:39 +00:00
|
|
|
import { getLocale, onProviderError } from 'locales';
|
2017-10-16 09:12:09 +00:00
|
|
|
|
2023-05-31 21:43:39 +00:00
|
|
|
const { messages } = getLocale();
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2022-10-09 01:55:09 +00:00
|
|
|
const title = process.env.NODE_ENV === 'production' ? siteTitle : `${siteTitle} (Dev)`;
|
|
|
|
|
2017-10-27 15:04:44 +00:00
|
|
|
const hydrateAction = hydrateStore(initialState);
|
2017-07-07 22:06:02 +00:00
|
|
|
store.dispatch(hydrateAction);
|
2017-01-09 11:37:15 +00:00
|
|
|
|
2022-05-15 15:30:40 +00:00
|
|
|
// check for deprecated local settings
|
|
|
|
store.dispatch(checkDeprecatedLocalSettings());
|
|
|
|
|
2022-12-15 13:07:34 +00:00
|
|
|
if (initialState.meta.me) {
|
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
}
|
2018-04-07 20:05:21 +00:00
|
|
|
|
2021-09-26 03:46:13 +00:00
|
|
|
const createIdentityContext = state => ({
|
|
|
|
signedIn: !!state.meta.me,
|
|
|
|
accountId: state.meta.me,
|
2022-11-05 17:28:13 +00:00
|
|
|
disabledAccountId: state.meta.disabled_account_id,
|
2021-09-26 03:46:13 +00:00
|
|
|
accessToken: state.meta.access_token,
|
2022-09-29 02:39:33 +00:00
|
|
|
permissions: state.role ? state.role.permissions : 0,
|
2021-09-26 03:46:13 +00:00
|
|
|
});
|
|
|
|
|
2023-05-28 12:18:23 +00:00
|
|
|
export default class Mastodon extends PureComponent {
|
2017-06-23 17:36:54 +00:00
|
|
|
|
|
|
|
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,
|
2022-11-05 17:28:13 +00:00
|
|
|
disabledAccountId: PropTypes.string,
|
2021-09-26 03:46:13 +00:00
|
|
|
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
|
|
|
|
2019-09-12 18:14:59 +00:00
|
|
|
shouldUpdateScroll (_, { location }) {
|
2021-07-13 09:07:16 +00:00
|
|
|
return !(location.state?.mastodonModalKey);
|
2019-09-12 18:14:59 +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 (
|
2023-05-31 21:43:39 +00:00
|
|
|
<IntlProvider locale={locale} messages={messages} onError={onProviderError}>
|
2022-10-09 01:55:09 +00:00
|
|
|
<ReduxProvider store={store}>
|
2018-11-28 14:01:40 +00:00
|
|
|
<ErrorBoundary>
|
2022-10-20 12:35:29 +00:00
|
|
|
<BrowserRouter>
|
2019-09-12 18:14:59 +00:00
|
|
|
<ScrollContext shouldUpdateScroll={this.shouldUpdateScroll}>
|
2018-11-28 14:01:40 +00:00
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</BrowserRouter>
|
2022-10-09 01:55:09 +00:00
|
|
|
|
|
|
|
<Helmet defaultTitle={title} titleTemplate={`%s - ${title}`} />
|
2018-11-28 14:01:40 +00:00
|
|
|
</ErrorBoundary>
|
2022-10-09 01:55:09 +00:00
|
|
|
</ReduxProvider>
|
2016-11-16 16:20:52 +00:00
|
|
|
</IntlProvider>
|
2016-08-24 15:56:44 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|