mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
import { Components, registerComponent, getSetting, Strings } from 'meteor/vulcan:lib';
|
|
import React, { PureComponent } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { IntlProvider, intlShape} from 'meteor/vulcan:i18n';
|
|
import withCurrentUser from '../containers/withCurrentUser.js';
|
|
|
|
class App extends PureComponent {
|
|
|
|
getLocale() {
|
|
return getSetting('locale', 'en');
|
|
}
|
|
|
|
getChildContext() {
|
|
|
|
const messages = Strings[this.getLocale()] || {};
|
|
const intlProvider = new IntlProvider({locale: this.getLocale()}, messages);
|
|
const { intl } = intlProvider.getChildContext();
|
|
return {
|
|
intl: intl
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<IntlProvider locale={this.getLocale()} messages={Strings[this.getLocale()]}>
|
|
<Components.Layout {...this.props} >
|
|
{ this.props.currentUserLoading ? <Components.Loading /> : this.props.children }
|
|
</Components.Layout>
|
|
</IntlProvider>
|
|
);
|
|
}
|
|
}
|
|
|
|
App.propTypes = {
|
|
currentUserLoading: PropTypes.bool,
|
|
}
|
|
|
|
App.childContextTypes = {
|
|
intl: intlShape,
|
|
}
|
|
|
|
App.displayName = 'App';
|
|
|
|
registerComponent('App', App, withCurrentUser);
|
|
|
|
export default App;
|