2017-06-04 10:40:14 +08:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-03-11 02:33:46 +08:00
|
|
|
import { IntlProvider } from 'react-intl';
|
2017-11-01 01:13:44 +08:00
|
|
|
import Settings from '/imports/ui/services/settings';
|
2018-08-03 03:23:11 +08:00
|
|
|
import LoadingScreen from '/imports/ui/components/loading-screen/component';
|
2017-03-11 02:33:46 +08:00
|
|
|
|
|
|
|
const propTypes = {
|
2018-08-03 03:23:11 +08:00
|
|
|
locale: PropTypes.string,
|
2017-10-24 08:09:40 +08:00
|
|
|
children: PropTypes.element.isRequired,
|
2017-03-11 02:33:46 +08:00
|
|
|
};
|
|
|
|
|
2017-10-27 21:23:18 +08:00
|
|
|
const DEFAULT_LANGUAGE = Meteor.settings.public.app.defaultSettings.application.locale;
|
2017-06-06 20:43:57 +08:00
|
|
|
|
2017-03-11 02:33:46 +08:00
|
|
|
const defaultProps = {
|
2017-11-01 01:13:44 +08:00
|
|
|
locale: DEFAULT_LANGUAGE,
|
2017-03-11 02:33:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class IntlStartup extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
messages: {},
|
2018-08-03 03:23:11 +08:00
|
|
|
normalizedLocale: null,
|
|
|
|
fetching: false,
|
2017-03-11 02:33:46 +08:00
|
|
|
};
|
2017-05-18 00:02:13 +08:00
|
|
|
|
2017-03-11 02:33:46 +08:00
|
|
|
this.fetchLocalizedMessages = this.fetchLocalizedMessages.bind(this);
|
|
|
|
}
|
2017-06-06 20:33:53 +08:00
|
|
|
componentWillMount() {
|
2017-10-27 19:36:27 +08:00
|
|
|
this.fetchLocalizedMessages(this.props.locale);
|
2017-06-06 20:33:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUpdate(nextProps) {
|
2018-08-03 03:23:11 +08:00
|
|
|
if (!this.state.fetching
|
|
|
|
&& this.state.normalizedLocale
|
2018-08-16 00:58:23 +08:00
|
|
|
&& nextProps.locale.toLowerCase() !== this.state.normalizedLocale.toLowerCase()) {
|
2017-06-06 20:33:53 +08:00
|
|
|
this.fetchLocalizedMessages(nextProps.locale);
|
|
|
|
}
|
|
|
|
}
|
2017-03-11 02:33:46 +08:00
|
|
|
|
|
|
|
fetchLocalizedMessages(locale) {
|
|
|
|
const url = `/html5client/locale?locale=${locale}`;
|
|
|
|
|
2018-08-03 03:23:11 +08:00
|
|
|
this.setState({ fetching: true }, () => {
|
|
|
|
fetch(url)
|
|
|
|
.then((response) => {
|
|
|
|
if (!response.ok) {
|
|
|
|
return Promise.reject();
|
|
|
|
}
|
2017-03-11 02:33:46 +08:00
|
|
|
|
2018-08-03 03:23:11 +08:00
|
|
|
return response.json();
|
|
|
|
})
|
|
|
|
.then(({ messages, normalizedLocale }) => {
|
|
|
|
const dasherizedLocale = normalizedLocale.replace('_', '-');
|
|
|
|
this.setState({ messages, fetching: false, normalizedLocale: dasherizedLocale }, () => {
|
|
|
|
Settings.application.locale = dasherizedLocale;
|
|
|
|
Settings.save();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
this.setState({ fetching: false, normalizedLocale: null }, () => {
|
|
|
|
Settings.application.locale = DEFAULT_LANGUAGE;
|
|
|
|
Settings.save();
|
|
|
|
});
|
2017-11-01 01:13:44 +08:00
|
|
|
});
|
2018-08-03 03:23:11 +08:00
|
|
|
});
|
2017-03-11 02:33:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2018-08-03 03:23:11 +08:00
|
|
|
return this.state.fetching ? <LoadingScreen /> : (
|
|
|
|
<IntlProvider locale={this.state.normalizedLocale} messages={this.state.messages}>
|
2017-03-11 02:33:46 +08:00
|
|
|
{this.props.children}
|
|
|
|
</IntlProvider>
|
|
|
|
);
|
|
|
|
}
|
2017-06-03 03:25:02 +08:00
|
|
|
}
|
2017-03-11 02:33:46 +08:00
|
|
|
|
|
|
|
export default IntlStartup;
|
|
|
|
|
|
|
|
IntlStartup.propTypes = propTypes;
|
|
|
|
IntlStartup.defaultProps = defaultProps;
|