23 lines
677 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>(i18n.getIntl());
const locale = useSelector(
({ i18n: i18nState }: RootState) => i18nState.locale,
);
2016-05-19 22:41:43 +03:00
useEffect(() => {
(async () => {
setIntl(await i18n.changeLocale(locale));
})();
}, [locale]);
2016-05-19 22:41:43 +03:00
return <RawIntlProvider value={intl}>{children}</RawIntlProvider>;
};
2016-05-19 22:41:43 +03:00
export default IntlProvider;