2023-05-23 04:52:27 -04:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-23 11:15:17 -04:00
|
|
|
|
|
|
|
import { Helmet } from 'react-helmet';
|
2023-07-13 11:18:09 -04:00
|
|
|
import { Route } from 'react-router-dom';
|
2023-05-23 11:15:17 -04:00
|
|
|
|
|
|
|
import { Provider as ReduxProvider } from 'react-redux';
|
|
|
|
|
2017-10-31 17:58:38 -04:00
|
|
|
import { ScrollContext } from 'react-router-scroll-4';
|
2023-05-23 11:15:17 -04:00
|
|
|
|
2022-10-08 21:55:09 -04: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 11:18:09 -04:00
|
|
|
import { Router } from 'mastodon/components/router';
|
2023-05-23 11:15:17 -04:00
|
|
|
import UI from 'mastodon/features/ui';
|
2024-05-19 13:07:32 -04:00
|
|
|
import { IdentityContext, createIdentityContext } from 'mastodon/identity_context';
|
2022-10-08 21:55:09 -04:00
|
|
|
import initialState, { title as siteTitle } from 'mastodon/initial_state';
|
2023-06-02 09:00:27 -04:00
|
|
|
import { IntlProvider } from 'mastodon/locales';
|
2023-05-23 11:15:17 -04:00
|
|
|
import { store } from 'mastodon/store';
|
2023-10-31 12:05:44 -04:00
|
|
|
import { isProduction } from 'mastodon/utils/environment';
|
2017-10-16 05:12:09 -04:00
|
|
|
|
2023-10-31 12:05:44 -04:00
|
|
|
const title = isProduction() ? siteTitle : `${siteTitle} (Dev)`;
|
2022-10-08 21:55:09 -04:00
|
|
|
|
2017-10-27 11:04:44 -04:00
|
|
|
const hydrateAction = hydrateStore(initialState);
|
2017-01-09 06:37:15 -05:00
|
|
|
|
2018-12-17 05:07:17 -05:00
|
|
|
store.dispatch(hydrateAction);
|
2022-12-15 08:07:34 -05:00
|
|
|
if (initialState.meta.me) {
|
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
}
|
2018-04-04 16:25:34 -04:00
|
|
|
|
2023-05-23 04:52:27 -04:00
|
|
|
export default class Mastodon extends PureComponent {
|
2021-09-25 23:46:13 -04:00
|
|
|
identity = createIdentityContext(initialState);
|
|
|
|
|
2017-02-03 18:34:31 -05:00
|
|
|
componentDidMount() {
|
2021-09-25 23:46:13 -04:00
|
|
|
if (this.identity.signedIn) {
|
|
|
|
this.disconnect = store.dispatch(connectUserStream());
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-08-24 11:56:44 -04:00
|
|
|
|
2016-10-07 10:00:11 -04:00
|
|
|
componentWillUnmount () {
|
2017-08-21 09:04:34 -04:00
|
|
|
if (this.disconnect) {
|
|
|
|
this.disconnect();
|
|
|
|
this.disconnect = null;
|
2017-05-04 17:41:34 -04:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-10-07 10:00:11 -04:00
|
|
|
|
2021-07-13 09:45:17 -04:00
|
|
|
shouldUpdateScroll (prevRouterProps, { location }) {
|
|
|
|
return !(location.state?.mastodonModalKey && location.state?.mastodonModalKey !== prevRouterProps?.location?.state?.mastodonModalKey);
|
2021-04-19 08:45:15 -04:00
|
|
|
}
|
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
render () {
|
2016-08-24 11:56:44 -04:00
|
|
|
return (
|
2024-05-19 13:07:32 -04: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 11:56:44 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|