2019-05-21 20:53:13 +05:30
|
|
|
// @flow
|
2016-05-20 01:11:43 +05:30
|
|
|
import i18n from 'services/i18n';
|
2016-11-05 15:41:41 +05:30
|
|
|
import captcha from 'services/captcha';
|
2016-05-20 01:11:43 +05:30
|
|
|
|
2016-11-05 15:41:41 +05:30
|
|
|
export const SET_LOCALE = 'i18n:setLocale';
|
2019-05-21 20:53:13 +05:30
|
|
|
export function setLocale(desiredLocale: string) {
|
|
|
|
return async (dispatch: (action: Object) => any) => {
|
|
|
|
const { locale, messages } = await i18n.require(i18n.detectLanguage(desiredLocale));
|
|
|
|
dispatch(_setLocale(locale, messages));
|
2016-11-05 15:41:41 +05:30
|
|
|
|
|
|
|
// TODO: probably should be moved from here, because it is a side effect
|
|
|
|
captcha.setLang(locale);
|
2016-05-20 01:11:43 +05:30
|
|
|
|
|
|
|
return locale;
|
2019-05-21 20:53:13 +05:30
|
|
|
};
|
2016-05-20 01:11:43 +05:30
|
|
|
}
|
2016-11-05 15:41:41 +05:30
|
|
|
|
2019-05-21 20:53:13 +05:30
|
|
|
function _setLocale(locale: string, messages: { [string]: string }) {
|
2016-11-05 15:41:41 +05:30
|
|
|
return {
|
|
|
|
type: SET_LOCALE,
|
|
|
|
payload: {
|
|
|
|
locale,
|
2019-05-21 20:53:13 +05:30
|
|
|
messages,
|
|
|
|
},
|
2016-11-05 15:41:41 +05:30
|
|
|
};
|
|
|
|
}
|