bigbuffet-rw/app/soapbox/reducers/me.ts

44 lines
1 KiB
TypeScript
Raw Normal View History

import {
AUTH_LOGGED_OUT,
AUTH_ACCOUNT_REMEMBER_SUCCESS,
VERIFY_CREDENTIALS_SUCCESS,
} from '../actions/auth';
import {
ME_FETCH_SUCCESS,
ME_FETCH_FAIL,
ME_FETCH_SKIP,
ME_PATCH_SUCCESS,
} from '../actions/me';
2022-04-04 10:44:05 -07:00
import type { AxiosError } from 'axios';
import type { AnyAction } from 'redux';
import type { Me } from 'soapbox/types/soapbox';
2022-04-04 10:44:05 -07:00
const initialState: Me = null;
const handleForbidden = (state: Me, error: AxiosError) => {
if (([401, 403] as any[]).includes(error.response?.status)) {
return false;
} else {
return state;
}
};
2022-04-04 10:44:05 -07:00
export default function me(state: Me = initialState, action: AnyAction): Me {
switch(action.type) {
case ME_FETCH_SUCCESS:
case ME_PATCH_SUCCESS:
2020-04-17 14:10:55 -07:00
return action.me.id;
2021-03-23 22:05:06 -07:00
case VERIFY_CREDENTIALS_SUCCESS:
2021-10-20 14:27:36 -07:00
case AUTH_ACCOUNT_REMEMBER_SUCCESS:
2021-03-23 22:05:06 -07:00
return state || action.account.id;
case ME_FETCH_SKIP:
2020-04-11 12:41:13 -07:00
case AUTH_LOGGED_OUT:
return false;
2021-10-20 14:27:36 -07:00
case ME_FETCH_FAIL:
return handleForbidden(state, action.error);
default:
return state;
}
2021-08-03 12:22:51 -07:00
}