Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export const clearAuthToken = () => {
if (Storage.local.get(AUTH_TOKEN_KEY)) {
Storage.local.remove(AUTH_TOKEN_KEY);
}
if (Storage.session.get(AUTH_TOKEN_KEY)) {
Storage.session.remove(AUTH_TOKEN_KEY);
}
};
export const getSession = () => async (dispatch, getState) => {
await dispatch({
type: ACTION_TYPES.GET_SESSION,
payload: axios.get('api/account')
});
const { account } = getState().authentication;
if (account && account.langKey) {
const langKey = Storage.session.get('locale', account.langKey);
await dispatch(setLocale(langKey));
}
};
export const clearAuthToken = () => {
if (Storage.local.get(AUTH_TOKEN_KEY)) {
Storage.local.remove(AUTH_TOKEN_KEY);
}
if (Storage.session.get(AUTH_TOKEN_KEY)) {
Storage.session.remove(AUTH_TOKEN_KEY);
}
};
export default (state: LocaleState = initialState, action): LocaleState => {
switch (action.type) {
case ACTION_TYPES.SET_LOCALE:
const currentLocale = action.locale;
if (state.currentLocale !== currentLocale) {
Storage.session.set('locale', currentLocale);
TranslatorContext.setLocale(currentLocale);
}
return {
currentLocale
};
default:
return state;
}
};
export const saveAccountSettings = account => async (dispatch, getState) => {
await dispatch({
type: ACTION_TYPES.UPDATE_ACCOUNT,
payload: axios.post(apiUrl, account),
meta: {
successMessage: translate('settings.messages.success')
}
});
if (Storage.session.get(`locale`)) {
Storage.session.remove(`locale`);
}
await dispatch(getSession());
};
const handleLocaleChange = event => {
const langKey = event.target.value;
Storage.session.set('locale', langKey);
props.onLocaleChange(langKey);
};
export const getSession = () => async (dispatch, getState) => {
await dispatch({
type: ACTION_TYPES.GET_SESSION,
payload: axios.get('api/account')
});
const { account } = getState().authentication;
if (account && account.langKey) {
const langKey = Storage.session.get('locale', account.langKey);
await dispatch(setLocale(langKey));
}
};
export const registerLocale = store => {
store.dispatch(setLocale(Storage.session.get('locale', 'en')));
};
export const registerLocale = store => {
store.dispatch(setLocale(Storage.session.get('locale', 'en')));
};