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