bigbluebutton-Github/bigbluebutton-html5/imports/startup/client/intl.jsx
2021-02-12 13:55:39 -03:00

123 lines
3.4 KiB
JavaScript

import React, { Component } from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import PropTypes from 'prop-types';
import { IntlProvider } from 'react-intl';
import Settings from '/imports/ui/services/settings';
import LoadingScreen from '/imports/ui/components/loading-screen/component';
import getFromUserSettings from '/imports/ui/services/users-settings';
import _ from 'lodash';
const propTypes = {
locale: PropTypes.string,
children: PropTypes.element.isRequired,
};
const DEFAULT_LANGUAGE = Meteor.settings.public.app.defaultSettings.application.fallbackLocale;
const RTL_LANGUAGES = ['ar', 'he', 'fa'];
const defaultProps = {
locale: DEFAULT_LANGUAGE,
};
class IntlStartup extends Component {
static saveLocale(localeName) {
Settings.application.locale = localeName;
if (RTL_LANGUAGES.includes(localeName.substring(0, 2))) {
document.body.parentNode.setAttribute('dir', 'rtl');
Settings.application.isRTL = true;
} else {
document.body.parentNode.setAttribute('dir', 'ltr');
Settings.application.isRTL = false;
}
Settings.save();
}
constructor(props) {
super(props);
this.state = {
messages: {},
normalizedLocale: null,
fetching: true,
};
if (RTL_LANGUAGES.includes(props.locale)) {
document.body.parentNode.setAttribute('dir', 'rtl');
}
this.fetchLocalizedMessages = this.fetchLocalizedMessages.bind(this);
}
componentDidMount() {
const { locale, overrideLocaleFromPassedParameter } = this.props;
this.fetchLocalizedMessages(overrideLocaleFromPassedParameter || locale, true);
}
componentDidUpdate(prevProps) {
const { fetching, messages } = this.state;
const { locale } = this.props;
const shouldFetch = (!fetching && _.isEmpty(messages)) || (locale !== prevProps.locale);
if (shouldFetch) this.fetchLocalizedMessages(locale);
}
fetchLocalizedMessages(locale, init = false) {
const url = `./locale?locale=${locale}&init=${init}`;
this.setState({ fetching: true }, () => {
fetch(url)
.then((response) => {
if (!response.ok) {
return Promise.reject();
}
return response.json();
})
.then(({ messages, normalizedLocale }) => {
const dasherizedLocale = normalizedLocale.replace('_', '-');
this.setState({ messages, fetching: false, normalizedLocale: dasherizedLocale }, () => {
IntlStartup.saveLocale(dasherizedLocale);
});
})
.catch(() => {
this.setState({ fetching: false, normalizedLocale: null }, () => {
IntlStartup.saveLocale(DEFAULT_LANGUAGE);
});
});
});
}
render() {
const { fetching, normalizedLocale, messages } = this.state;
const { children } = this.props;
return (
<>
{(fetching || !normalizedLocale) && <LoadingScreen />}
{normalizedLocale
&& (
<IntlProvider locale={normalizedLocale} messages={messages}>
{children}
</IntlProvider>
)
}
</>
);
}
}
const IntlStartupContainer = withTracker(() => {
const { locale } = Settings.application;
const overrideLocaleFromPassedParameter = getFromUserSettings('bbb_override_default_locale', null);
return {
locale,
overrideLocaleFromPassedParameter,
};
})(IntlStartup);
export default IntlStartupContainer;
IntlStartup.propTypes = propTypes;
IntlStartup.defaultProps = defaultProps;