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'; 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) { if (Settings.application.locale !== localeName) { Settings.application.changedLocale = 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, localeChanged: false, }; if (RTL_LANGUAGES.includes(props.locale)) { document.body.parentNode.setAttribute('dir', 'rtl'); } this.fetchLocalizedMessages = this.fetchLocalizedMessages.bind(this); } componentDidMount() { const { locale } = this.props; this.fetchLocalizedMessages(locale, true); } componentDidUpdate(prevProps) { const { fetching, normalizedLocale, localeChanged } = this.state; const { locale, overrideLocale, changedLocale } = this.props; if (prevProps.locale !== locale) { this.setState({ localeChanged: true, }); } if (overrideLocale) { if (!fetching && (overrideLocale !== normalizedLocale.toLowerCase()) && !localeChanged && !changedLocale) { this.fetchLocalizedMessages(overrideLocale); } if (!localeChanged) { return; } } if (!fetching && normalizedLocale && ((locale.toLowerCase() !== normalizedLocale.toLowerCase()))) { if (((DEFAULT_LANGUAGE === normalizedLocale.toLowerCase()) && !localeChanged)) return; 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) ? : ( {children} ); } } const IntlStartupContainer = withTracker(() => { const { locale, changedLocale } = Settings.application; const overrideLocale = getFromUserSettings('bbb_override_default_locale', null); return { locale, overrideLocale, changedLocale, }; })(IntlStartup); export default IntlStartupContainer; IntlStartup.propTypes = propTypes; IntlStartup.defaultProps = defaultProps;