2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2022-10-09 12:55:09 +11:00
|
|
|
import React from 'react';
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
import { IntlProvider, addLocaleData } from 'react-intl';
|
|
|
|
import { Provider as ReduxProvider } from 'react-redux';
|
2017-10-08 11:55:58 +11:00
|
|
|
import { BrowserRouter, Route } from 'react-router-dom';
|
2017-11-01 08:58:38 +11:00
|
|
|
import { ScrollContext } from 'react-router-scroll-4';
|
2022-10-09 12:55:09 +11:00
|
|
|
import configureStore from 'mastodon/store/configureStore';
|
|
|
|
import UI from 'mastodon/features/ui';
|
|
|
|
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';
|
|
|
|
import initialState, { title as siteTitle } from 'mastodon/initial_state';
|
|
|
|
import { getLocale } from 'mastodon/locales';
|
2017-10-16 20:12:09 +11:00
|
|
|
|
2017-05-22 23:06:06 +10:00
|
|
|
const { localeData, messages } = getLocale();
|
|
|
|
addLocaleData(localeData);
|
2016-08-25 01:56:44 +10:00
|
|
|
|
2022-10-09 12:55:09 +11:00
|
|
|
const title = process.env.NODE_ENV === 'production' ? siteTitle : `${siteTitle} (Dev)`;
|
|
|
|
|
2017-07-08 08:06:02 +10:00
|
|
|
export const store = configureStore();
|
2017-10-28 02:04:44 +11:00
|
|
|
const hydrateAction = hydrateStore(initialState);
|
2017-01-09 22:37:15 +11:00
|
|
|
|
2018-12-17 21:07:17 +11:00
|
|
|
store.dispatch(hydrateAction);
|
2022-12-16 00:07:34 +11:00
|
|
|
if (initialState.meta.me) {
|
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
}
|
2018-04-05 06:25:34 +10:00
|
|
|
|
2021-09-26 13:46:13 +10:00
|
|
|
const createIdentityContext = state => ({
|
|
|
|
signedIn: !!state.meta.me,
|
|
|
|
accountId: state.meta.me,
|
2022-11-06 04:28:13 +11:00
|
|
|
disabledAccountId: state.meta.disabled_account_id,
|
2021-09-26 13:46:13 +10:00
|
|
|
accessToken: state.meta.access_token,
|
2022-09-29 12:39:33 +10:00
|
|
|
permissions: state.role ? state.role.permissions : 0,
|
2021-09-26 13:46:13 +10:00
|
|
|
});
|
|
|
|
|
2017-06-24 03:36:54 +10:00
|
|
|
export default class Mastodon extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
locale: PropTypes.string.isRequired,
|
|
|
|
};
|
2016-08-27 03:12:19 +10:00
|
|
|
|
2021-09-26 13:46:13 +10:00
|
|
|
static childContextTypes = {
|
|
|
|
identity: PropTypes.shape({
|
|
|
|
signedIn: PropTypes.bool.isRequired,
|
|
|
|
accountId: PropTypes.string,
|
2022-11-06 04:28:13 +11:00
|
|
|
disabledAccountId: PropTypes.string,
|
2021-09-26 13:46:13 +10:00
|
|
|
accessToken: PropTypes.string,
|
|
|
|
}).isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
identity = createIdentityContext(initialState);
|
|
|
|
|
|
|
|
getChildContext() {
|
|
|
|
return {
|
|
|
|
identity: this.identity,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-02-04 10:34:31 +11:00
|
|
|
componentDidMount() {
|
2021-09-26 13:46:13 +10:00
|
|
|
if (this.identity.signedIn) {
|
|
|
|
this.disconnect = store.dispatch(connectUserStream());
|
|
|
|
}
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2016-08-25 01:56:44 +10:00
|
|
|
|
2016-10-08 01:00:11 +11:00
|
|
|
componentWillUnmount () {
|
2017-08-21 23:04:34 +10:00
|
|
|
if (this.disconnect) {
|
|
|
|
this.disconnect();
|
|
|
|
this.disconnect = null;
|
2017-05-05 07:41:34 +10:00
|
|
|
}
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
2016-10-08 01:00:11 +11:00
|
|
|
|
2021-07-13 23:45:17 +10:00
|
|
|
shouldUpdateScroll (prevRouterProps, { location }) {
|
|
|
|
return !(location.state?.mastodonModalKey && location.state?.mastodonModalKey !== prevRouterProps?.location?.state?.mastodonModalKey);
|
2021-04-19 22:45:15 +10:00
|
|
|
}
|
|
|
|
|
2016-09-01 00:15:12 +10:00
|
|
|
render () {
|
2016-11-17 03:20:52 +11:00
|
|
|
const { locale } = this.props;
|
|
|
|
|
2016-08-25 01:56:44 +10:00
|
|
|
return (
|
2017-05-22 23:06:06 +10:00
|
|
|
<IntlProvider locale={locale} messages={messages}>
|
2022-10-09 12:55:09 +11:00
|
|
|
<ReduxProvider store={store}>
|
2019-03-15 15:35:45 +11:00
|
|
|
<ErrorBoundary>
|
2022-10-20 23:35:29 +11:00
|
|
|
<BrowserRouter>
|
2021-04-19 22:45:15 +10:00
|
|
|
<ScrollContext shouldUpdateScroll={this.shouldUpdateScroll}>
|
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</BrowserRouter>
|
2022-10-09 12:55:09 +11:00
|
|
|
|
|
|
|
<Helmet defaultTitle={title} titleTemplate={`%s - ${title}`} />
|
2019-03-15 15:35:45 +11:00
|
|
|
</ErrorBoundary>
|
2022-10-09 12:55:09 +11:00
|
|
|
</ReduxProvider>
|
2016-11-17 03:20:52 +11:00
|
|
|
</IntlProvider>
|
2016-08-25 01:56:44 +10:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|