33 lines
961 B
TypeScript
Raw Normal View History

import React, { useState, useEffect, ComponentType } from 'react';
import { useSelector } from 'react-redux';
2019-12-07 13:28:52 +02:00
import { RawIntlProvider, IntlShape } from 'react-intl';
import i18n from 'app/services/i18n';
import { RootState } from 'app/reducers';
2016-05-19 22:41:43 +03:00
const IntlProvider: ComponentType = ({ children }) => {
const [intl, setIntl] = useState<IntlShape>();
2020-05-24 02:08:24 +03:00
const locale = useSelector(({ i18n: i18nState }: RootState) => i18nState.locale);
2016-05-19 22:41:43 +03:00
2020-05-24 02:08:24 +03:00
useEffect(() => {
if (process.env.NODE_ENV === 'test') {
// disable async modules loading in tests
setIntl(i18n.getIntl());
2020-05-24 02:08:24 +03:00
return;
}
2020-05-24 02:08:24 +03:00
(async () => {
setIntl(await i18n.changeLocale(locale));
})();
}, [locale]);
2016-05-19 22:41:43 +03:00
// don't run the application until locale bundle will be loaded
if (!intl) {
return null;
}
2020-05-24 02:08:24 +03:00
return <RawIntlProvider value={intl}>{children}</RawIntlProvider>;
};
2016-05-19 22:41:43 +03:00
export default IntlProvider;