很久之前小弟我被繁琐的reducer,action写法搞的心力交瘁,不能专注于业务逻辑的开发。于是懒癌发作,不想写reducer,所以开发了这么一个helper,帮助我们简单的写action和reducer。
Redux no reducer Helper
特点
- 无需编写繁琐的reducer和定义多个action-type
- 依赖redux-thunk 插件,action可同步可异步
- 使用路径更新store树,更新沿途引用,实现 immutable 功能
- 兼容其他redux开发方式,可与其他reducer合并,并可以与其他reducer无缝对接
使用这个写法,reducer的职责被划分为页面状态的数据映射,action为数据流转变化的行为,比较清晰。
开始使用
1 安装
npm install redux-no-reducer-helper复制代码
2 创建reducer
import { createReducer } from 'redux-no-reducer-helper'; // 引入创建reducer的方法 export default createReducer('action-type',{ // action-type 为处理此reducer的action的统一标识 count:0, // 初始化store数据 });复制代码
3 创建redux store
import { createStore, applyMiddleware, combineReducers } from 'redux'; // 引入redux相关 import thunkMiddleware from 'redux-thunk'; // 引入redux-thunk 相关 import reducers from '../reducers/index'; // 引入reducer const store=createStore( combineReducers(reducers), // 与其他普通reducer混和的总reducer对象 {}, // 初始化状态,但是启动后会返回reducer中定义的状态 applyMiddleware(thunkMiddleware) // 依赖与thunk 插件 ); export default store;复制代码
4 编写action
export async function getCount(params){ // 异步action const newCount=await getCountFromServer(params); // 调用服务器接口 this.set('count',newCount); // 放入暂存区 this.commit(); // 提交改动并合并到store } export function addCount(){ // 同步action this.update('count',old=>old+1); // 将更新函数放入暂存区 this.commit(); // 提交改动,并将更新函数作用在响应路径下的值上,合并到store } export function resetCount(){ // 同步action this.set('count',0); // 放值 this.commit(); // 提交 this.call(getCount,params); // 启动其他action }复制代码
5 在react组件引用 store,action
import { connect } from 'react-redux'; import { bindActionCreators } from 'redux-no-reducer-helper'; import * as actions from '../action.js'; @connect( state=>({ store:state}), dispatch=>({ actions:bindActionCreators(actions,dispatch,'action-type')}), // 将action 绑定到当前组件,action-type 为响应reducer 的 actionType ) export default class View extends React.component{ onClick=()=>{ this.props.actions.addCount(); // 正常调用action } };复制代码
API
action方法将会把this绑定到一个帮助器上(也是action运行期间的store数据暂存区),为action提供redux功能和帮助函数
/* 向暂存区的相应path位置放置value path :数据路径,用 / 隔开的字符串,例如:'a/b/c' 对应store中的 {a:{b:{c:0}}} 中c位置 value :放置的值,在提交后会合并到store的相应位置,并替换原值 */ this.set(path,value); /* 向暂存区的相应path位置放置更新函数 path:同上 func:纯同步函数,参数为store中path位置之前的值,函数需要返回新的值,在合并期间执行 */ this.update(path,func); /* 获取store中最新的值,相当于redux 的getstate func:参数为store的根节点,返回需要返回的值,例如 state=>state.a.b.c 则此函数返回c的值 */ this.getState(func) /* 设置暂存去通用路径,之后调用的set,或者update的paht只需要传入相对路径,具体的会自动补全 path:同上 */ this.setRoot(path); /* 清空暂存区数据 */ this.clear(); /* 提交暂存去数据,和store进行合并 actionType:可选,不填时会将暂存区数据交给 bindActionCreators时填写的reducer actiontype执行, 填写时将暂存区数据提交到谈些的reducer处理 */ this.commit(actionType)复制代码
示例代码
最后谢谢各位大佬捧场,求轻喷和指教。