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

127 lines
3.9 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-04-27 11:56:26 -07:00
import SoapboxPropTypes from 'gabsocial/utils/soapbox_prop_types';
2020-04-14 21:21:36 -07:00
import Helmet from 'gabsocial/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-04-01 13:05:52 -07:00
import { fetchInstance } from 'gabsocial/actions/instance';
import { fetchSoapboxConfig } from 'gabsocial/actions/soapbox';
import { fetchMe } from 'gabsocial/actions/me';
2020-04-25 15:26:47 -07:00
import PublicLayout from 'gabsocial/features/public_layout';
import { getSettings } from 'gabsocial/actions/settings';
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,
theme: settings.get('theme'),
reduceMotion: settings.get('reduceMotion'),
systemFont: settings.get('systemFont'),
dyslexicFont: settings.get('dyslexicFont'),
demetricator: settings.get('demetricator'),
locale: settings.get('locale'),
2020-04-14 11:44:40 -07:00
};
};
2020-03-27 13:59:38 -07:00
@connect(mapStateToProps)
class GabSocialMount extends React.PureComponent {
static propTypes = {
showIntroduction: PropTypes.bool,
2020-04-27 11:56:26 -07:00
me: SoapboxPropTypes.me,
2020-04-14 20:09:59 -07:00
theme: PropTypes.string,
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-03-27 13:59:38 -07:00
};
render() {
const { me, theme, reduceMotion, systemFont, dyslexicFont, demetricator, 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 />;
// }
2020-04-21 13:05:49 -07:00
const bodyClass = classNames('app-body', {
[`theme-${theme}`]: theme,
'system-font': systemFont,
2020-04-21 13:16:33 -07:00
'no-reduce-motion': !reduceMotion,
2020-04-21 13:10:45 -07:00
'dyslexic': dyslexicFont,
2020-04-21 13:14:06 -07:00
'demetricator': 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} />
<script src={`/packs/js/locale_${locale}.chunk.js`} />
{theme && <link rel='stylesheet' href={`/packs/css/${theme}.chunk.css`} />}
</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
);
}
}
export default class GabSocial extends React.PureComponent {
render() {
2020-03-27 13:59:38 -07:00
return (
<Provider store={store}>
<ErrorBoundary>
<GabSocialMount />
</ErrorBoundary>
</Provider>
2020-03-27 13:59:38 -07:00
);
}
}