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

100 lines
2.7 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';
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';
import LandingPage from 'gabsocial/features/landing_page';
2020-03-27 13:59:38 -07:00
const { localeData, messages } = getLocale();
addLocaleData(localeData);
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;
return {
showIntroduction,
me,
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-14 14:37:17 -07:00
me: PropTypes.string,
2020-03-27 13:59:38 -07:00
};
render() {
const { me } = this.props;
2020-04-14 13:45:38 -07:00
if (me === null) return null;
2020-03-27 13:59:38 -07:00
// Disabling introduction for launch
// const { showIntroduction } = this.props;
//
// if (showIntroduction) {
// return <Introduction />;
// }
return (
<BrowserRouter basename='/web'>
2020-03-27 13:59:38 -07:00
<ScrollContext>
<Switch>
{!me && <Route exact path='/' component={LandingPage} />}
<Route path='/' component={UI} />
</Switch>
2020-03-27 13:59:38 -07:00
</ScrollContext>
</BrowserRouter>
);
}
}
export default class GabSocial extends React.PureComponent {
static propTypes = {
locale: PropTypes.string.isRequired,
};
render() {
2020-03-27 13:59:38 -07:00
const { locale } = this.props;
return (
<IntlProvider locale={locale} messages={messages}>
<Provider store={store}>
<ErrorBoundary>
<GabSocialMount />
</ErrorBoundary>
</Provider>
</IntlProvider>
);
}
}