2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2022-10-08 21:55:09 -04: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-07 20:55:58 -04:00
|
|
|
import { BrowserRouter, Route } from 'react-router-dom';
|
2017-10-31 17:58:38 -04:00
|
|
|
import { ScrollContext } from 'react-router-scroll-4';
|
2022-10-08 21:55:09 -04:00
|
|
|
import configureStore from 'flavours/glitch/store/configureStore';
|
2017-12-04 02:26:40 -05:00
|
|
|
import UI from 'flavours/glitch/features/ui';
|
2018-04-07 16:05:21 -04:00
|
|
|
import { fetchCustomEmojis } from 'flavours/glitch/actions/custom_emojis';
|
2017-12-04 02:26:40 -05:00
|
|
|
import { hydrateStore } from 'flavours/glitch/actions/store';
|
2022-05-15 11:30:40 -04:00
|
|
|
import { checkDeprecatedLocalSettings } from 'flavours/glitch/actions/local_settings';
|
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';
|
2022-10-08 21:55:09 -04:00
|
|
|
import initialState, { title as siteTitle } from 'flavours/glitch/initial_state';
|
|
|
|
import { getLocale } from 'locales';
|
2017-10-16 05:12:09 -04:00
|
|
|
|
2017-05-22 09:06:06 -04:00
|
|
|
const { localeData, messages } = getLocale();
|
|
|
|
addLocaleData(localeData);
|
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-07-07 18:06:02 -04:00
|
|
|
export const store = configureStore();
|
2017-10-27 11:04:44 -04:00
|
|
|
const hydrateAction = hydrateStore(initialState);
|
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());
|
|
|
|
|
2018-04-07 16:05:21 -04:00
|
|
|
// load custom emojis
|
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
|
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
|
|
|
});
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Mastodon extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
locale: PropTypes.string.isRequired,
|
|
|
|
};
|
2016-08-26 13:12:19 -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
|
|
|
|
2019-09-12 14:14:59 -04:00
|
|
|
shouldUpdateScroll (_, { location }) {
|
2021-07-13 05:07:16 -04:00
|
|
|
return !(location.state?.mastodonModalKey);
|
2019-09-12 14:14:59 -04:00
|
|
|
}
|
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
render () {
|
2016-11-16 11:20:52 -05:00
|
|
|
const { locale } = this.props;
|
|
|
|
|
2016-08-24 11:56:44 -04:00
|
|
|
return (
|
2017-05-22 09:06:06 -04:00
|
|
|
<IntlProvider locale={locale} messages={messages}>
|
2022-10-08 21:55:09 -04:00
|
|
|
<ReduxProvider store={store}>
|
2018-11-28 09:01:40 -05:00
|
|
|
<ErrorBoundary>
|
2022-10-20 08:35:29 -04:00
|
|
|
<BrowserRouter>
|
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>
|
|
|
|
</BrowserRouter>
|
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
|
|
|
}
|