How to handle errors in fetch() responses with Redux-Saga?

后端 未结 3 1026
感动是毒
感动是毒 2020-12-15 04:46

I try to handle Unauthorized error from server using redux-saga. This is my saga:

function* logIn(action) {
  try {
    const user = yield call(         


        
3条回答
  •  忘掉有多难
    2020-12-15 05:33

    If you need to make multiple API calls in one saga, the better approach is to throw errors at a fetch stage:

    FETCH

    export const getCounterTypes = (user) => {
      const url = API_URL + `api/v4/counters/counter_types`;
    
      const headers = {
        'Authorization': user.token_type + ' ' + user.access_token,
        'Accept': 'application/json'
      };
      const request = {
          method: 'GET',
          headers: headers
      };
      return fetch(url, request)
      .then(response => {
        return new Promise((resolve, reject) => {
          if (response.status === 401) {
            let err = new Error("Unauthorized");
            reject(err);
          }
          if (response.status === 500) {
            let err = new Error("Critical");
            reject(err);
          }
          if ((response.status >= 200 && response.status < 300) || response.status === 400) {
            response.json().then(json => {
              console.log(json);
              resolve(json);
            });
          }
        });
      });
    } 
    

    SAGA

    export function* getMainScreenInfoSaga() {
      try {
        const user = yield select(getUser);
        const userInfo = yield select(getUserInfo);
        if (userInfo) {
          yield put({ type: types.NET_LOAD_USER_DATA });
        } else {
          yield put({ type: types.NET_INIT });
        }
        const info = yield all({
          user: call(getInfo, user),
          apartments: call(getUserApartments, user),
          accounts: call(getUserAccounts, user),
          counters: call(getCounters, user)
        });
        const ui = yield select(getUi);
        if (!ui) {
          yield put({ type: types.NET_LOAD_UI });
          const ui = yield all({
            apartmentTypes: call(getApartmentTypes, user),
            serviceTypes: call(getServiceTypes, user),
            counterTypes: call(getCounterTypes, user),
          });
          yield put({ type: types.GET_UI_SUCCESS, ui });
        }
        yield put({ type: types.GET_MAIN_SCREEN_INFO_SUCCESS, info });
        yield put({ type: types.NET_END });
    
      } catch (err) {
    
        if (err.message === "Unauthorized") {
          yield put({ type: types.LOGOUT });
          yield put({ type: types.NET_END });
        }
        if (err.message === "Critical") {
          window.alert("Server critical error");
          yield put({ type: types.NET_END });
        }
    
      }
    }
    

提交回复
热议问题