2023-05-23 08:52:27 +00:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
|
|
|
import { Helmet } from 'react-helmet';
|
2023-07-13 15:18:09 +00:00
|
|
|
import { Route } from 'react-router-dom';
|
2023-05-23 15:15:17 +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-23 15:15:17 +00:00
|
|
|
|
2022-10-09 01:55:09 +00:00
|
|
|
import { fetchCustomEmojis } from 'mastodon/actions/custom_emojis';
|
|
|
|
import { hydrateStore } from 'mastodon/actions/store';
|
|
|
|
import { connectUserStream } from 'mastodon/actions/streaming';
|
|
|
|
import ErrorBoundary from 'mastodon/components/error_boundary';
|
2023-07-13 15:18:09 +00:00
|
|
|
import { Router } from 'mastodon/components/router';
|
2023-05-23 15:15:17 +00:00
|
|
|
import UI from 'mastodon/features/ui';
|
2024-05-19 17:07:32 +00:00
|
|
|
import { IdentityContext, createIdentityContext } from 'mastodon/identity_context';
|
2022-10-09 01:55:09 +00:00
|
|
|
import initialState, { title as siteTitle } from 'mastodon/initial_state';
|
2023-06-02 13:00:27 +00:00
|
|
|
import { IntlProvider } from 'mastodon/locales';
|
2023-05-23 15:15:17 +00:00
|
|
|
import { store } from 'mastodon/store';
|
2023-10-31 16:05:44 +00:00
|
|
|
import { isProduction } from 'mastodon/utils/environment';
|
2017-10-16 09:12:09 +00:00
|
|
|
|
2023-10-31 16:05:44 +00:00
|
|
|
const title = isProduction() ? siteTitle : `${siteTitle} (Dev)`;
|
2022-10-09 01:55:09 +00:00
|
|
|
|
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);
|
2022-12-15 13:07:34 +00:00
|
|
|
if (initialState.meta.me) {
|
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
}
|
2018-04-04 20:25:34 +00:00
|
|
|
|
2023-05-23 08:52:27 +00:00
|
|
|
export default class Mastodon extends PureComponent {
|
2021-09-26 03:46:13 +00:00
|
|
|
identity = createIdentityContext(initialState);
|
|
|
|
|
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-08-24 15:56:44 +00:00
|
|
|
return (
|
2024-05-19 17:07:32 +00:00
|
|
|
<IdentityContext.Provider value={this.identity}>
|
|
|
|
<IntlProvider>
|
|
|
|
<ReduxProvider store={store}>
|
|
|
|
<ErrorBoundary>
|
|
|
|
<Router>
|
|
|
|
<ScrollContext shouldUpdateScroll={this.shouldUpdateScroll}>
|
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</Router>
|
|
|
|
|
|
|
|
<Helmet defaultTitle={title} titleTemplate={`%s - ${title}`} />
|
|
|
|
</ErrorBoundary>
|
|
|
|
</ReduxProvider>
|
|
|
|
</IntlProvider>
|
|
|
|
</IdentityContext.Provider>
|
2016-08-24 15:56:44 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|