bigbluebutton-Github/bigbluebutton-html5/imports/startup/client/intl.jsx

135 lines
3.4 KiB
React
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { IntlProvider, addLocaleData } from 'react-intl';
2017-11-01 01:13:44 +08:00
import Settings from '/imports/ui/services/settings';
import LoadingScreen from '/imports/ui/components/loading-screen/component';
2017-03-11 02:33:46 +08:00
// currently supported locales.
import bg from 'react-intl/locale-data/bg';
import cs from 'react-intl/locale-data/cs';
import de from 'react-intl/locale-data/de';
import el from 'react-intl/locale-data/el';
import en from 'react-intl/locale-data/en';
import es from 'react-intl/locale-data/es';
import fa from 'react-intl/locale-data/fa';
import fr from 'react-intl/locale-data/fr';
import he from 'react-intl/locale-data/he';
import id from 'react-intl/locale-data/id';
import it from 'react-intl/locale-data/it';
import ja from 'react-intl/locale-data/ja';
import km from 'react-intl/locale-data/km';
import pl from 'react-intl/locale-data/pl';
import pt from 'react-intl/locale-data/pt';
import ru from 'react-intl/locale-data/ru';
import tr from 'react-intl/locale-data/tr';
import uk from 'react-intl/locale-data/uk';
import zh from 'react-intl/locale-data/zh';
2019-01-10 05:43:54 +08:00
addLocaleData([
...bg,
...cs,
...de,
...el,
...en,
...es,
...fa,
...fr,
...he,
...id,
...it,
...ja,
...km,
...pl,
...pt,
...ru,
...tr,
...uk,
...zh,
]);
2017-03-11 02:33:46 +08:00
const propTypes = {
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: {},
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);
}
2018-12-06 01:42:31 +08:00
componentWillMount() {
const { locale } = this.props;
this.fetchLocalizedMessages(locale);
}
componentWillUpdate(nextProps) {
const { fetching, normalizedLocale } = this.state;
const { locale } = nextProps;
if (!fetching
&& normalizedLocale
&& locale.toLowerCase() !== normalizedLocale.toLowerCase()) {
this.fetchLocalizedMessages(locale);
}
}
2017-03-11 02:33:46 +08:00
fetchLocalizedMessages(locale) {
const url = `/html5client/locale?locale=${locale}`;
this.setState({ fetching: true }, () => {
fetch(url)
.then((response) => {
if (!response.ok) {
return Promise.reject();
}
2017-03-11 02:33:46 +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
});
});
2017-03-11 02:33:46 +08:00
}
render() {
const { fetching, normalizedLocale, messages } = this.state;
const { children } = this.props;
return fetching ? <LoadingScreen /> : (
<IntlProvider locale={normalizedLocale} messages={messages}>
{children}
2017-03-11 02:33:46 +08:00
</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;