guild_front/src/server/authRedirect.js
2021-08-20 17:33:29 +03:00

15 lines
494 B
JavaScript

export const withAuthRedirect = actionCall => ({link, index, history, role}) => {
return actionCall(link, index)
.then(res => {
if(res.status && res.status == 401) {
localStorage.clear();
history.push(role === 'ROLE_DEV' ? '/authdev' : '/auth')
}
return res;
})
.catch(err => {
localStorage.clear();
history.push(role === 'ROLE_DEV' ? '/authdev' : '/auth');
})
}