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