mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-02 19:50:44 +05:30
32 lines
681 B
TypeScript
32 lines
681 B
TypeScript
import { Action as ReduxAction } from 'redux';
|
|
import i18n from 'app/services/i18n';
|
|
import { ThunkAction } from 'app/reducers';
|
|
|
|
export function setLocale(desiredLocale: string): ThunkAction<Promise<string>> {
|
|
return async (dispatch) => {
|
|
const locale = i18n.detectLanguage(desiredLocale);
|
|
|
|
dispatch(_setLocale(locale));
|
|
|
|
return locale;
|
|
};
|
|
}
|
|
|
|
interface SetAction extends ReduxAction {
|
|
type: 'i18n:setLocale';
|
|
payload: {
|
|
locale: string;
|
|
};
|
|
}
|
|
|
|
function _setLocale(locale: string): SetAction {
|
|
return {
|
|
type: 'i18n:setLocale',
|
|
payload: {
|
|
locale,
|
|
},
|
|
};
|
|
}
|
|
|
|
export type Action = SetAction;
|