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

223 lines
7.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 { Switch, BrowserRouter, Route } from 'react-router-dom';
2020-03-27 13:59:38 -07:00
import { ScrollContext } from 'react-router-scroll-4';
2020-04-14 13:45:38 -07:00
// import Introduction from '../features/introduction';
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';
2021-09-05 11:21:39 -07:00
import { FE_SUBDIRECTORY } from 'soapbox/build_config';
import Helmet from 'soapbox/components/helmet';
import PublicLayout from 'soapbox/features/public_layout';
import { createGlobals } from 'soapbox/globals';
import messages from 'soapbox/locales/messages';
import SoapboxPropTypes from 'soapbox/utils/soapbox_prop_types';
import { generateThemeCss } from 'soapbox/utils/theme';
import { INTRODUCTION_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 configureStore from '../store/configureStore';
2020-03-27 13:59:38 -07:00
2020-06-04 19:48:45 -07:00
const validLocale = locale => Object.keys(messages).includes(locale);
// Delay rendering until instance has loaded or failed (for feature detection)
const isInstanceLoaded = state => {
const v = state.getIn(['instance', 'version'], '0.0.0');
const fetchFailed = state.getIn(['meta', 'instance_fetch_failed'], false);
return v !== '0.0.0' || fetchFailed;
};
2020-03-27 13:59:38 -07:00
export const store = configureStore();
// Configure global functions for developers
createGlobals(store);
2020-08-24 13:23:05 -07:00
store.dispatch(preload());
store.dispatch(fetchMe())
.then(() => {
// Postpone for authenticated fetch
store.dispatch(loadInstance());
store.dispatch(loadSoapboxConfig());
})
.catch(() => {});
2020-03-27 13:59:38 -07:00
const mapStateToProps = (state) => {
const me = state.get('me');
2020-03-27 13:59:38 -07:00
const account = state.getIn(['accounts', me]);
const showIntroduction = account ? state.getIn(['settings', 'introductionVersion'], 0) < INTRODUCTION_VERSION : false;
const settings = getSettings(state);
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
2022-01-26 17:37:32 -08:00
// In demo mode, force the default brand color
const brandColor = settings.get('demo') ? '#0482d8' : soapboxConfig.get('brandColor');
const accentColor = settings.get('demo') ? null : soapboxConfig.get('accentColor');
2022-01-26 17:37:32 -08:00
2020-03-27 13:59:38 -07:00
return {
showIntroduction,
me,
instanceLoaded: isInstanceLoaded(state),
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(brandColor, accentColor),
2021-08-14 19:49:09 -07:00
brandColor: soapboxConfig.get('brandColor'),
2020-06-02 10:16:26 -07:00
themeMode: settings.get('themeMode'),
2020-09-25 13:39:54 -07:00
halloween: settings.get('halloween'),
2022-01-26 17:37:32 -08:00
customCss: settings.get('demo') ? null : soapboxConfig.get('customCss'),
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 = {
showIntroduction: PropTypes.bool,
2020-04-27 11:56:26 -07:00
me: SoapboxPropTypes.me,
instanceLoaded: PropTypes.bool,
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,
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,
2020-05-30 17:05:01 -07:00
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,
customCss: ImmutablePropTypes.list,
2020-09-25 13:39:54 -07:00
halloween: PropTypes.bool,
2020-05-30 17:05:01 -07:00
dispatch: PropTypes.func,
2020-03-27 13:59:38 -07:00
};
2020-06-04 19:22:58 -07:00
state = {
messages: {},
localeLoading: true,
}
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();
}
componentDidUpdate(prevProps) {
this.maybeUpdateMessages(prevProps);
}
shouldUpdateScroll(prevRouterProps, { location }) {
return !(location.state?.soapboxModalKey && location.state?.soapboxModalKey !== prevRouterProps?.location?.state?.soapboxModalKey);
}
render() {
const { me, instanceLoaded, themeCss, locale, customCss } = this.props;
2020-04-14 13:45:38 -07:00
if (me === null) return null;
if (!instanceLoaded) return null;
2020-06-04 19:22:58 -07:00
if (this.state.localeLoading) return null;
2020-03-27 13:59:38 -07:00
// Disabling introduction for launch
// const { showIntroduction } = this.props;
//
// if (showIntroduction) {
// return <Introduction />;
// }
const bodyClass = classNames('app-body', `theme-mode-${this.props.themeMode}`, {
'system-font': this.props.systemFont,
'no-reduce-motion': !this.props.reduceMotion,
'underline-links': this.props.underlineLinks,
'dyslexic': this.props.dyslexicFont,
'demetricator': this.props.demetricator,
2020-09-25 13:39:54 -07:00
'halloween': this.props.halloween,
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}>
<ErrorBoundary>
2021-09-05 11:21:39 -07:00
<BrowserRouter basename={FE_SUBDIRECTORY}>
<>
<Helmet>
<body className={bodyClass} />
{themeCss && <style id='theme' type='text/css'>{`:root{${themeCss}}`}</style>}
{customCss && customCss.map(css => (
<link rel='stylesheet' href={css} key={css} />
))}
<meta name='theme-color' content={this.props.brandColor} />
</Helmet>
<ScrollContext shouldUpdateScroll={this.shouldUpdateScroll}>
<Switch>
{!me && <Route exact path='/' component={PublicLayout} />}
<Route exact path='/about/:slug?' component={PublicLayout} />
<Route path='/' component={UI} />
</Switch>
</ScrollContext>
</>
</BrowserRouter>
</ErrorBoundary>
</IntlProvider>
2020-03-27 13:59:38 -07:00
);
}
}
2020-05-28 15:52:07 -07:00
export default class Soapbox extends React.PureComponent {
2020-03-27 13:59:38 -07:00
2021-03-24 11:37:41 -07:00
printConsoleWarning = () => {
/* eslint-disable no-console */
console.log('%cStop!', [
'color: #ff0000',
'display: block',
'font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, "Helvetica Neue", sans-serif',
'font-size: 50px',
'font-weight: 800',
'padding: 4px 0',
].join(';'));
console.log('%cThis is a browser feature intended for developers. If someone told you to copy-paste something here it is a scam and will give them access to your account.', [
'color: #111111',
'display: block',
'font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, "Helvetica Neue", sans-serif',
'font-size: 18px',
'padding: 4px 0 16px',
].join(';'));
/* eslint-enable no-console */
}
componentDidMount() {
this.printConsoleWarning();
}
render() {
2020-03-27 13:59:38 -07:00
return (
<Provider store={store}>
<SoapboxMount />
</Provider>
2020-03-27 13:59:38 -07:00
);
}
}