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

129 lines
4 KiB
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
'use strict';
import React from 'react';
import { Provider, connect } from 'react-redux';
import PropTypes from 'prop-types';
2020-05-28 15:52:07 -07:00
import SoapboxPropTypes from 'soapbox/utils/soapbox_prop_types';
import Helmet from 'soapbox/components/helmet';
2020-04-21 13:05:49 -07:00
import classNames from 'classnames';
2020-03-27 13:59:38 -07:00
import configureStore from '../store/configureStore';
import { INTRODUCTION_VERSION } from '../actions/onboarding';
import { Switch, BrowserRouter, Route } from 'react-router-dom';
2020-03-27 13:59:38 -07:00
import { ScrollContext } from 'react-router-scroll-4';
import UI from '../features/ui';
2020-04-14 13:45:38 -07:00
// import Introduction from '../features/introduction';
2020-03-27 13:59:38 -07:00
import { fetchCustomEmojis } from '../actions/custom_emojis';
import { hydrateStore } from '../actions/store';
import { IntlProvider, addLocaleData } from 'react-intl';
import { getLocale } from '../locales';
import initialState from '../initial_state';
import ErrorBoundary from '../components/error_boundary';
2020-05-28 15:52:07 -07:00
import { fetchInstance } from 'soapbox/actions/instance';
import { fetchSoapboxConfig } from 'soapbox/actions/soapbox';
import { fetchMe } from 'soapbox/actions/me';
import PublicLayout from 'soapbox/features/public_layout';
import { getSettings } from 'soapbox/actions/settings';
2020-06-02 13:48:27 -07:00
import { generateThemeCss } from 'soapbox/utils/theme';
2020-03-27 13:59:38 -07:00
export const store = configureStore();
const hydrateAction = hydrateStore(initialState);
store.dispatch(hydrateAction);
store.dispatch(fetchMe());
2020-04-01 13:05:52 -07:00
store.dispatch(fetchInstance());
store.dispatch(fetchSoapboxConfig());
2020-04-01 13:05:52 -07:00
store.dispatch(fetchCustomEmojis());
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);
2020-03-27 13:59:38 -07:00
return {
showIntroduction,
me,
reduceMotion: settings.get('reduceMotion'),
systemFont: settings.get('systemFont'),
dyslexicFont: settings.get('dyslexicFont'),
demetricator: settings.get('demetricator'),
locale: settings.get('locale'),
2020-06-02 13:48:27 -07:00
themeCss: generateThemeCss(state.getIn(['soapbox', 'brandColor'])),
2020-06-02 10:16:26 -07:00
themeMode: settings.get('themeMode'),
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,
2020-04-21 13:16:33 -07:00
reduceMotion: 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,
2020-05-30 17:05:01 -07:00
dispatch: PropTypes.func,
2020-03-27 13:59:38 -07:00
};
render() {
const { me, themeCss, locale } = this.props;
2020-04-14 13:45:38 -07:00
if (me === null) return null;
const { localeData, messages } = getLocale();
addLocaleData(localeData);
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,
'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 (
<IntlProvider locale={locale} messages={messages}>
<>
<Helmet>
<body className={bodyClass} />
2020-05-30 17:05:01 -07:00
{themeCss && <style id='theme' type='text/css'>{`:root{${themeCss}}`}</style>}
</Helmet>
<BrowserRouter>
<ScrollContext>
<Switch>
{!me && <Route exact path='/' component={PublicLayout} />}
<Route exact path='/about/:slug?' component={PublicLayout} />
<Route path='/' component={UI} />
</Switch>
</ScrollContext>
</BrowserRouter>
</>
</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
render() {
2020-03-27 13:59:38 -07:00
return (
<Provider store={store}>
<ErrorBoundary>
2020-05-28 15:52:07 -07:00
<SoapboxMount />
</ErrorBoundary>
</Provider>
2020-03-27 13:59:38 -07:00
);
}
}