Redux中间件: ChanMiddleware
在开发客户端渲染(CSR)与服务端渲染(SSR)共用的前端代码时,需要使用Redux初始化状态。但是发现Redux-saga的take等函数只能在createStore()之后才能使用,不是很方便。于是,造一个跨组件通信的Redux side-effect中间件: ChanMiddleware 。
ChanMiddleware支持以下3个函数:
interface ChanHandler {
(state?: any, action?: AnyAction, dispatch?: Dispatch, next?: () => void): void
}
const use = (type: string, handler: ChanHandler) => void;
const useOnce = (type: string, handler: ChanHandler) => void;
const unUse = (type: string, handler: ChanHandler) => void;
type等于'‘时,handler处理所有的Action。
继续阅读→