typesafe-actions 라이브러리

Column 1
Tags
enhance
TS
Column
각종 편의함수들 제공하여, 코드를 더 깔끔하게 작성할 수 있다.
액션 정의, 액션함수 생성, 리덕스 함수 생성 더 쉽고 간결해짐.
 
typesafe-actions

v5.1.0 latest 기준

v4→v5의 변화

createStandardAction과 몇몇 함수들은 deprecated 되고 createAction으로 대체됨
( v4의 createAction은 removed 됨 )

기존의 함수들

deprecated 함수들은 deprecated를 받아와서 쓸 수 있음.
근데 쓰지말고 대체된 createAction을 쓰자.
// before import { createAction, createStandardAction, createCustomAction } from "typesafe-actions" // after import { deprecated } from "typesafe-actions" const { createAction, createStandardAction, createCustomAction } = deprecated;

AsyncActionCreatorBuilder

기존의 AsyncActionCreator에서 단순히 이름만 변경되었다.
// before import { AsyncActionCreator } from "typesafe-actions" //after import { AsyncActionCreatorBuilder } from "typesafe-actions"