bigbuffet-rw/app/soapbox/containers/soapbox.js

248 lines
8.3 KiB
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
'use strict';
import classNames from 'classnames';
2020-03-27 13:59:38 -07:00
import PropTypes from 'prop-types';
import React from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { IntlProvider } from 'react-intl';
import { Provider, connect } from 'react-redux';
import { BrowserRouter, Switch, Redirect, Route } from 'react-router-dom';
2020-03-27 13:59:38 -07:00
import { ScrollContext } from 'react-router-scroll-4';
import { loadInstance } from 'soapbox/actions/instance';
2020-05-28 15:52:07 -07:00
import { fetchMe } from 'soapbox/actions/me';
import { getSettings } from 'soapbox/actions/settings';
import { loadSoapboxConfig } from 'soapbox/actions/soapbox';
import { getSoapboxConfig } from 'soapbox/actions/soapbox';
2022-03-21 11:09:01 -07:00
import { fetchVerificationConfig } from 'soapbox/actions/verification';
2021-09-05 11:21:39 -07:00
import { FE_SUBDIRECTORY } from 'soapbox/build_config';
import Helmet from 'soapbox/components/helmet';
2022-03-21 11:09:01 -07:00
import AuthLayout from 'soapbox/features/auth_layout';
2022-04-12 06:52:04 -07:00
import OnboardingWizard from 'soapbox/features/onboarding/onboarding-wizard';
import PublicLayout from 'soapbox/features/public_layout';
2022-04-12 06:52:04 -07:00
import NotificationsContainer from 'soapbox/features/ui/containers/notifications_container';
2022-03-21 11:09:01 -07:00
import WaitlistPage from 'soapbox/features/verification/waitlist_page';
import { createGlobals } from 'soapbox/globals';
import messages from 'soapbox/locales/messages';
2022-03-21 11:09:01 -07:00
import { makeGetAccount } from 'soapbox/selectors';
2022-04-19 16:15:42 -07:00
import { getFeatures } from 'soapbox/utils/features';
import SoapboxPropTypes from 'soapbox/utils/soapbox_prop_types';
import { generateThemeCss } from 'soapbox/utils/theme';
import { ONBOARDING_VERSION } from '../actions/onboarding';
2022-01-10 14:01:24 -08:00
import { preload } from '../actions/preload';
import ErrorBoundary from '../components/error_boundary';
2022-01-10 14:01:24 -08:00
import UI from '../features/ui';
import { store } from '../store';
2020-03-27 13:59:38 -07:00
2020-06-04 19:48:45 -07:00
const validLocale = locale => Object.keys(messages).includes(locale);
// Configure global functions for developers
createGlobals(store);
2022-04-19 16:15:42 -07:00
// Preload happens synchronously
2020-08-24 13:23:05 -07:00
store.dispatch(preload());
2022-04-19 16:15:42 -07:00
/** Load initial data from the backend */
const loadInitial = () => {
return async(dispatch, getState) => {
// Await for authenticated fetch
await dispatch(fetchMe());
// Await for feature detection
await dispatch(loadInstance());
2022-04-19 16:15:42 -07:00
const promises = [];
promises.push(dispatch(loadSoapboxConfig()));
2022-04-19 16:15:42 -07:00
const state = getState();
const features = getFeatures(state.instance);
2022-03-21 11:09:01 -07:00
2022-04-19 16:15:42 -07:00
if (features.pepe && !state.me) {
promises.push(dispatch(fetchVerificationConfig()));
2022-03-21 11:09:01 -07:00
}
await Promise.all(promises);
2022-04-19 16:15:42 -07:00
};
};
2022-03-21 11:09:01 -07:00
const makeAccount = makeGetAccount();
2020-03-27 13:59:38 -07:00
const mapStateToProps = (state) => {
const me = state.get('me');
2022-03-21 11:09:01 -07:00
const account = makeAccount(state, me);
const settings = getSettings(state);
const needsOnboarding = settings.get('onboardingVersion') < ONBOARDING_VERSION;
const soapboxConfig = getSoapboxConfig(state);
2020-06-04 19:48:45 -07:00
const locale = settings.get('locale');
2020-03-27 13:59:38 -07:00
const singleUserMode = soapboxConfig.get('singleUserMode') && soapboxConfig.get('singleUserModeProfile');
2020-03-27 13:59:38 -07:00
return {
me,
2022-03-21 11:09:01 -07:00
account,
reduceMotion: settings.get('reduceMotion'),
underlineLinks: settings.get('underlineLinks'),
systemFont: settings.get('systemFont'),
dyslexicFont: settings.get('dyslexicFont'),
demetricator: settings.get('demetricator'),
2020-06-04 19:48:45 -07:00
locale: validLocale(locale) ? locale : 'en',
themeCss: generateThemeCss(soapboxConfig),
2021-08-14 19:49:09 -07:00
brandColor: soapboxConfig.get('brandColor'),
2022-04-14 11:15:32 -07:00
appleAppId: soapboxConfig.get('appleAppId'),
2020-06-02 10:16:26 -07:00
themeMode: settings.get('themeMode'),
singleUserMode,
needsOnboarding,
2020-04-14 11:44:40 -07:00
};
};
2020-03-27 13:59:38 -07:00
@connect(mapStateToProps)
2020-05-28 15:52:07 -07:00
class SoapboxMount extends React.PureComponent {
2020-03-27 13:59:38 -07:00
static propTypes = {
2020-04-27 11:56:26 -07:00
me: SoapboxPropTypes.me,
2022-03-23 10:14:42 -07:00
account: ImmutablePropTypes.record,
2020-04-21 13:16:33 -07:00
reduceMotion: PropTypes.bool,
underlineLinks: PropTypes.bool,
2020-04-21 13:05:49 -07:00
systemFont: PropTypes.bool,
2022-04-12 06:52:04 -07:00
needsOnboarding: PropTypes.bool,
2020-04-21 13:10:45 -07:00
dyslexicFont: PropTypes.bool,
2020-04-21 13:14:06 -07:00
demetricator: PropTypes.bool,
locale: PropTypes.string.isRequired,
themeCss: PropTypes.string,
2020-06-02 10:16:26 -07:00
themeMode: PropTypes.string,
2021-08-14 19:49:09 -07:00
brandColor: PropTypes.string,
2022-04-14 11:15:32 -07:00
appleAppId: PropTypes.string,
2020-05-30 17:05:01 -07:00
dispatch: PropTypes.func,
2022-03-21 11:09:01 -07:00
singleUserMode: PropTypes.bool,
2020-03-27 13:59:38 -07:00
};
2020-06-04 19:22:58 -07:00
state = {
messages: {},
localeLoading: true,
2022-04-19 16:15:42 -07:00
isLoaded: false,
2020-06-04 19:22:58 -07:00
}
setMessages = () => {
messages[this.props.locale]().then(messages => {
this.setState({ messages, localeLoading: false });
}).catch(() => {});
}
maybeUpdateMessages = prevProps => {
if (this.props.locale !== prevProps.locale) {
this.setMessages();
2021-08-03 12:22:51 -07:00
}
2020-06-04 19:22:58 -07:00
}
componentDidMount() {
this.setMessages();
2022-04-19 16:15:42 -07:00
this.props.dispatch(loadInitial()).then(() => {
this.setState({ isLoaded: true });
}).catch(() => {
this.setState({ isLoaded: false });
});
2020-06-04 19:22:58 -07:00
}
componentDidUpdate(prevProps) {
this.maybeUpdateMessages(prevProps);
}
shouldUpdateScroll(prevRouterProps, { location }) {
return !(location.state?.soapboxModalKey && location.state?.soapboxModalKey !== prevRouterProps?.location?.state?.soapboxModalKey);
}
render() {
const { me, account, themeCss, locale, needsOnboarding, singleUserMode } = this.props;
2020-04-14 13:45:38 -07:00
if (me === null) return null;
2022-03-21 11:09:01 -07:00
if (me && !account) return null;
2022-04-19 16:15:42 -07:00
if (!this.state.isLoaded) return null;
2020-06-04 19:22:58 -07:00
if (this.state.localeLoading) return null;
2022-03-21 11:09:01 -07:00
const waitlisted = account && !account.getIn(['source', 'approved'], true);
if (account && !waitlisted && needsOnboarding) {
2022-04-12 06:52:04 -07:00
return (
<IntlProvider locale={locale} messages={this.state.messages}>
<Helmet>
<html lang='en' className={classNames({ dark: this.props.themeMode === 'dark' })} />
<body className={bodyClass} />
{themeCss && <style id='theme' type='text/css'>{`:root{${themeCss}}`}</style>}
<meta name='theme-color' content={this.props.brandColor} />
</Helmet>
<ErrorBoundary>
<BrowserRouter basename={FE_SUBDIRECTORY}>
<OnboardingWizard />
<NotificationsContainer />
</BrowserRouter>
</ErrorBoundary>
2022-04-12 06:52:04 -07:00
</IntlProvider>
);
}
2020-03-27 13:59:38 -07:00
2022-03-21 11:09:01 -07:00
const bodyClass = classNames('bg-white dark:bg-slate-900 text-base', {
'no-reduce-motion': !this.props.reduceMotion,
'underline-links': this.props.underlineLinks,
'dyslexic': this.props.dyslexicFont,
'demetricator': this.props.demetricator,
2020-04-21 13:05:49 -07:00
});
2020-03-27 13:59:38 -07:00
return (
2020-06-04 19:22:58 -07:00
<IntlProvider locale={locale} messages={this.state.messages}>
<Helmet>
<html lang='en' className={classNames({ dark: this.props.themeMode === 'dark' })} />
<body className={bodyClass} />
{themeCss && <style id='theme' type='text/css'>{`:root{${themeCss}}`}</style>}
<meta name='theme-color' content={this.props.brandColor} />
2022-04-14 11:15:32 -07:00
{this.props.appleAppId && (
<meta name='apple-itunes-app' content={`app-id=${this.props.appleAppId}`} />
)}
</Helmet>
<ErrorBoundary>
2021-09-05 11:21:39 -07:00
<BrowserRouter basename={FE_SUBDIRECTORY}>
<>
<ScrollContext shouldUpdateScroll={this.shouldUpdateScroll}>
<Switch>
2022-03-21 11:09:01 -07:00
<Redirect from='/v1/verify_email/:token' to='/auth/verify/email/:token' />
{waitlisted && <Route render={(props) => <WaitlistPage {...props} account={account} />} />}
{!me && (singleUserMode
? <Redirect exact from='/' to={`/${singleUserMode}`} />
: <Route exact path='/' component={PublicLayout} />)}
2022-03-21 11:09:01 -07:00
{!me && <Route exact path='/' component={PublicLayout} />}
<Route exact path='/about/:slug?' component={PublicLayout} />
2022-03-21 11:09:01 -07:00
<Route exact path='/beta/:slug?' component={PublicLayout} />
<Route exact path='/mobile/:slug?' component={PublicLayout} />
<Route exact path='/login' component={AuthLayout} />
<Route path='/auth/verify' component={AuthLayout} />
<Route path='/reset-password' component={AuthLayout} />
<Route path='/edit-password' component={AuthLayout} />
<Route path='/' component={UI} />
</Switch>
</ScrollContext>
</>
</BrowserRouter>
</ErrorBoundary>
</IntlProvider>
2020-03-27 13:59:38 -07:00
);
}
}
const Soapbox = () => {
return (
<Provider store={store}>
<SoapboxMount />
</Provider>
);
};
2020-03-27 13:59:38 -07:00
export default Soapbox;