-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
48 lines (41 loc) · 1.23 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
*
* LanguageProvider
*
* this component connects the redux state language locale to the
* IntlProvider component and i18n messages (loaded from `app/translations`)
*/
import React from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { createSelector } from 'reselect';
import { i18n } from '@lingui/core';
import { I18nProvider } from '@lingui/react';
import { makeSelectLocale } from './selectors';
export function LanguageProvider(props) {
const messages = props.messages[props.locale];
const locale = props.locale;
const catalogs = { [props.locale]: messages };
i18n.loadLocaleData(locale, { plurals: locale });
i18n.load(locale, messages);
i18n.activate(locale);
return (
<I18nProvider i18n={i18n} language={locale} catalogs={catalogs}>
{React.Children.only(props.children)}
</I18nProvider>
);
}
LanguageProvider.propTypes = {
locale: PropTypes.string,
messages: PropTypes.object,
children: PropTypes.element.isRequired
};
const mapStateToProps = createSelector(makeSelectLocale(), (locale) => ({
locale
}));
function mapDispatchToProps(dispatch) {
return {
dispatch
};
}
export default connect(mapStateToProps, mapDispatchToProps)(LanguageProvider);