react-redux 是一个链接react和redux的库, 方便把redux状态库在react中使用。javascript
先让咱们来个裸的redux 和react结合的例子试试手
样例store(本文都会以这个store为例)html
import { createStore, applyMiddleware } from 'redux' import logger from 'redux-logger' function reduer(state, action) { switch (action.type) { case 'add': { return { ...state, count: state.count + 1 } } default: { return state } } } const store = createStore(reduer, { count: 0 }, applyMiddleware(logger))
这个store接受一个 type为add的action。
假设如今有一个 组件HelloWorld 监听展现这个 store的count值。java
class HelloWorld extends Component { constructor(props) { super(props) store.subscribe(() => { this.setState({}) }) } render() { const state = store.getState() return ( <div onClick={e => store.dispatch({type: 'add'})} style={{color: 'red'}} > {state.count} </div> ) } } ReactDOM.render(<HelloWorld/>, document.getElementById("root"))
在线地址。 打开f12,当咱们点击的时候 会发现有redux日志输出,而且渲染的值和store保持了一致。react
HelloWorld 已经向咱们展现了当react把状态交给redux的处理方式。 可是这里有这样的问题:git
- redux侵入了每个组件,每一个组件都要引入store
- 每一个组件和redux交互的逻辑,就是constructor里面监听, 取对应的state。。。诸多逻辑没法方便复用
让咱们用react-redux的思路来思考这个问题。 react-redux须要作什么呢?github
因此:npm
class HelloWorld extends Component { render() { return ( <div> <div onClick={e => store.dispatch({type: 'add'})} >{this.props.count}</div> <div onClick={e => store.dispatch({type: 'delete'})} >xxx</div> </div> ) } } function reduxHoc(WrappedComponent, mapStateToProps) { return class Rh extends Component { constructor(props) { super(props) this.sub = store.subscribe(() => { this.setState({}) }) this._beforeProps = mapStateToProps(store.getState(), props) } componentWillUnmount() { this.sub() } shouldComponentUpdate() { const newProps = mapStateToProps(store.getState(), this.props) if (this._beforeProps === newProps) { return false } this._beforeProps = newProps return true } render() { return <WrappedComponent {...this.props} {...this._beforeProps} /> } } } HelloWorld = reduxHoc(HelloWorld, state => state)
这里的reduxHoc方法返回了一个React组件类,类比与“高阶函数”的概念,这里叫作“高价组件”。高阶组件详解。reduxHoc 接受2个参数WrappedComponent, mapStateToProps,分别是要被包装的组件(这里是HelloWorld)以及 把state映射到props的mapStateToProps。 返回的Rh组件此刻已经监听了store的变化,而且会把从store映射过来的props 传递给WrappedComponent组件。
react-redux的connect 方法不只接受mapStateToProps,还接受mapDispatchToProps。更近一步,把reduxHoc改成connect吧redux
function connect(mapStateToProps, mapDispatchToProps) { return function (WrappedComponent) { return class Hoc extends Component { constructor(props, context) { super(props) this.unsubscribe = store.subscribe(() => { this.setState({}) }) this.memorizeProps = this.calculateProps() } calculateProps() { const o1 = mapStateToProps(store.getState(), this.props) let o2 = null if(mapDispatchToProps) { o2 = mapDispatchToProps(store.dispatch, this.props) } else { o2 = { dispatch: store.dispatch } } return { ...o1, ...o2 } } componentWillUnmount() { this.unsubscribe() this.unsubscribe = null } shouldComponentUpdate() { const nextProps = this.calculateProps() const isEqual = shallowEqual(nextProps, this.memorizeProps) if (isEqual) { return false } else { this.memorizeProps = nextProps return true } } render() { return ( <WrappedComponent {...this.props} {...this.memorizeProps} /> ) } } } } function shallowEqual(objA, objB) { if (objA === objB) { return true; } const keysA = Object.keys(objA); const keysB = Object.keys(objB); if (keysA.length !== keysB.length) { return false; } // Test for A's keys different from B. const hasOwn = Object.prototype.hasOwnProperty; for (let i = 0; i < keysA.length; i++) { if (!hasOwn.call(objB, keysA[i]) || objA[keysA[i]] !== objB[keysA[i]]) { return false; } } return true; }
这里的connect使用方式和 react-redux的connect是一致的了(react-redux的connect其实接受4个参数)。有一点须要注意:reduxHoc和connect的shouldComponentUpdate 都只是 浅比较了引用, 这是由于redux库是无反作用的,因此来自redux库的对象只要引用相同就必定彻底没有改变, 能够不用再次渲染。反过来讲:若是store里面的值改变了,可是页面没有从新渲染,说明redux的逻辑写的有问题。app
前面提到的connect方法, 虽然如今store没有侵入具体业务组件, 可是connect方法里面却用到了store。而咱们在使用react-redux这个库的时候, 可能压根儿就不知道store在哪里。 或者咱们须要把store传给这个库,来生成connect函数。
换一个角度, react不只提供了props来传递数据。 还提供了context, context传递数据是透传的形式, 关于conext的详细介绍请看。 在最外层的根组件提供store, 而后全部的组件均可以经过context获取store。ide
class Provider extends Component { static childContextTypes = { store: PropTypes.object } getChildContext() { return { store: this.props.store } } render() { return Children.only(this.props.children) } }
对应的connect写法
function connect(mapStateToProps, mapDispatchToProps) { return function (WrappedComponent) { return class Hoc extends Component { static contextTypes = { store: PropTypes.object } constructor(props, context) { super(props) this.store = props.store || context.store this.unsubscribe = this.store.subscribe(() => { this.setState({}) }) this.memorizeProps = this.calculateProps() } calculateProps() { const o1 = mapStateToProps(this.store.getState(), this.props) let o2 = null if(mapDispatchToProps) { o2 = mapDispatchToProps(this.store.dispatch, this.props) } else { o2 = { dispatch: this.store.dispatch } } return { ...o1, ...o2 } } componentWillUnmount() { this.unsubscribe() this.unsubscribe = null } shouldComponentUpdate() { const nextProps = this.calculateProps() const isEqual = shallowEqual(nextProps, this.memorizeProps) if (isEqual) { return false } else { this.memorizeProps = nextProps return true } } render() { return ( <WrappedComponent {...this.props} {...this.memorizeProps} /> ) } } } }
代码托管在git
安装:
npm install treact-tredux