mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-06 16:21:23 +05:30
27 lines
688 B
TypeScript
27 lines
688 B
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { RawIntlProvider, IntlShape } from 'react-intl';
|
|
import i18n from 'app/services/i18n';
|
|
import { RootState } from 'app/reducers';
|
|
|
|
type Props = {
|
|
children: React.ReactNode;
|
|
locale: string;
|
|
};
|
|
|
|
function IntlProvider({ children, locale }: Props) {
|
|
const [intl, setIntl] = useState<IntlShape>(i18n.getIntl());
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
setIntl(await i18n.changeLocale(locale));
|
|
})();
|
|
}, [locale]);
|
|
|
|
return <RawIntlProvider value={intl}>{children}</RawIntlProvider>;
|
|
}
|
|
|
|
export default connect(({ i18n: i18nState }: RootState) => i18nState)(
|
|
IntlProvider,
|
|
);
|