이제 sample 리듀서에서 불필요한 코드를 지워 봅시다.

    modules/sample.js

    import { handleActions } from 'redux-actions';
    import * as api from '../lib/api';
    import createRequestThunk from '../lib/createRequestThunk';
    
    // 액션 타입을 선언합니다.
    const GET_POST = 'sample/GET_POST';
    const GET_POST_SUCCESS = 'sample/GET_POST_SUCCESS';
    
    const GET_USERS = 'sample/GET_USERS';
    const GET_USERS_SUCCESS = 'sample/GET_USERS_SUCCESS';
    
    // thunk 함수를 생성합니다.
    // thunk 함수 내부에서는 시작할 때, 성공했을 때, 실패했을 때 다른 액션을 디스패치합니다.
    
    export const getPost = createRequestThunk(GET_POST, api.getPost);
    export const getUsers = createRequestThunk(GET_USERS, api.getUsers);
    
    // 초기 상태를 선언합니다.
    // 요청의 로딩 중 상태는 loading이라는 객체에서 관리합니다.
    
    const initialState = {
      post: null,
      users: null
    };
    
    const sample = handleActions(
      {
        [GET_POST_SUCCESS]: (state, action) => ({
          ...state,
          post: action.payload
        }),
        [GET_USERS_SUCCESS]: (state, action) => ({
          ...state,
          users: action.payload
        })
      },
      initialState
    );
    
    export default sample;

    신간 소식 구독하기
    뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.