2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2018-12-17 05:07:17 -05:00
|
|
|
import { Provider, connect } from 'react-redux';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-13 08:01:21 -05:00
|
|
|
import configureStore from '../store/configureStore';
|
2018-12-17 05:07:17 -05:00
|
|
|
import { INTRODUCTION_VERSION } from '../actions/onboarding';
|
2017-10-07 20:55:58 -04:00
|
|
|
import { BrowserRouter, Route } from 'react-router-dom';
|
2017-10-31 17:58:38 -04:00
|
|
|
import { ScrollContext } from 'react-router-scroll-4';
|
2016-11-13 08:01:21 -05:00
|
|
|
import UI from '../features/ui';
|
2018-12-17 05:07:17 -05:00
|
|
|
import Introduction from '../features/introduction';
|
2018-04-04 16:25:34 -04:00
|
|
|
import { fetchCustomEmojis } from '../actions/custom_emojis';
|
2017-01-09 06:37:15 -05:00
|
|
|
import { hydrateStore } from '../actions/store';
|
2017-08-21 09:04:34 -04:00
|
|
|
import { connectUserStream } from '../actions/streaming';
|
2017-05-22 09:06:06 -04:00
|
|
|
import { IntlProvider, addLocaleData } from 'react-intl';
|
|
|
|
import { getLocale } from '../locales';
|
2019-09-12 14:14:59 -04:00
|
|
|
import { previewState as previewMediaState } from 'mastodon/features/ui/components/media_modal';
|
|
|
|
import { previewState as previewVideoState } from 'mastodon/features/ui/components/video_modal';
|
2017-10-27 11:04:44 -04:00
|
|
|
import initialState from '../initial_state';
|
2019-03-15 00:35:45 -04:00
|
|
|
import ErrorBoundary from '../components/error_boundary';
|
2017-10-16 05:12:09 -04:00
|
|
|
|
2017-05-22 09:06:06 -04:00
|
|
|
const { localeData, messages } = getLocale();
|
|
|
|
addLocaleData(localeData);
|
2016-08-24 11:56:44 -04:00
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
export const store = configureStore();
|
2017-10-27 11:04:44 -04:00
|
|
|
const hydrateAction = hydrateStore(initialState);
|
2017-01-09 06:37:15 -05:00
|
|
|
|
2018-12-17 05:07:17 -05:00
|
|
|
store.dispatch(hydrateAction);
|
2018-04-04 16:25:34 -04:00
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
|
2018-12-17 05:07:17 -05:00
|
|
|
const mapStateToProps = state => ({
|
|
|
|
showIntroduction: state.getIn(['settings', 'introductionVersion'], 0) < INTRODUCTION_VERSION,
|
|
|
|
});
|
|
|
|
|
|
|
|
@connect(mapStateToProps)
|
|
|
|
class MastodonMount extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
showIntroduction: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
2019-09-12 14:14:59 -04:00
|
|
|
shouldUpdateScroll (_, { location }) {
|
|
|
|
return location.state !== previewMediaState && location.state !== previewVideoState;
|
|
|
|
}
|
|
|
|
|
2018-12-17 05:07:17 -05:00
|
|
|
render () {
|
|
|
|
const { showIntroduction } = this.props;
|
|
|
|
|
|
|
|
if (showIntroduction) {
|
|
|
|
return <Introduction />;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<BrowserRouter basename='/web'>
|
2019-09-12 14:14:59 -04:00
|
|
|
<ScrollContext shouldUpdateScroll={this.shouldUpdateScroll}>
|
2018-12-17 05:07:17 -05:00
|
|
|
<Route path='/' component={UI} />
|
|
|
|
</ScrollContext>
|
|
|
|
</BrowserRouter>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class Mastodon extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
locale: PropTypes.string.isRequired,
|
|
|
|
};
|
2016-08-26 13:12:19 -04:00
|
|
|
|
2017-02-03 18:34:31 -05:00
|
|
|
componentDidMount() {
|
2017-08-21 09:04:34 -04:00
|
|
|
this.disconnect = store.dispatch(connectUserStream());
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-08-24 11:56:44 -04:00
|
|
|
|
2016-10-07 10:00:11 -04:00
|
|
|
componentWillUnmount () {
|
2017-08-21 09:04:34 -04:00
|
|
|
if (this.disconnect) {
|
|
|
|
this.disconnect();
|
|
|
|
this.disconnect = null;
|
2017-05-04 17:41:34 -04:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-10-07 10:00:11 -04:00
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
render () {
|
2016-11-16 11:20:52 -05:00
|
|
|
const { locale } = this.props;
|
|
|
|
|
2016-08-24 11:56:44 -04:00
|
|
|
return (
|
2017-05-22 09:06:06 -04:00
|
|
|
<IntlProvider locale={locale} messages={messages}>
|
2016-11-16 11:20:52 -05:00
|
|
|
<Provider store={store}>
|
2019-03-15 00:35:45 -04:00
|
|
|
<ErrorBoundary>
|
|
|
|
<MastodonMount />
|
|
|
|
</ErrorBoundary>
|
2016-11-16 11:20:52 -05:00
|
|
|
</Provider>
|
|
|
|
</IntlProvider>
|
2016-08-24 11:56:44 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|