React 之 connect 组件

发布于 2024-11-10 13:32:39 字数 3649 浏览 6 评论 0

一、connect 用法

作用:连接 React 组件与 Redux store

connect([mapStateToProps], [mapDispatchToProps], [mergeProps],[options])
// 这个函数允许我们将 store 中的数据作为 props 绑定到组件上
const mapStateToProps = (state) => {
  return {
    count: state.count
  }
}
  • 这个函数的第一个参数就是 Reduxstore ,我们从中摘取了 count 属性。你不必将 state 中的数据原封不动地传入组件,可以根据 state 中的数据,动态地输出组件需要的(最小)属性
  • 函数的第二个参数 ownProps ,是组件自己的 props

state 变化,或者 ownProps 变化的时候, mapStateToProps 都会被调用,计算出一个新的 stateProps ,(在与 ownProps merge 后)更新给组件

mapDispatchToProps(dispatch, ownProps): dispatchProps

connect 的第二个参数是 mapDispatchToProps ,它的功能是,将 action 作为 props 绑定到组件上,也会成为 MyCompprops

二、原理解析

首先 connect 之所以会成功,是因为 Provider 组件

  • 在原应用组件上包裹一层,使原来整个应用成为 Provider 的子组件
  • 接收 Reduxstore 作为 props ,通过 context 对象传递给子孙组件上的 connect

connect 做了些什么

它真正连接 ReduxReact ,它包在我们的容器组件的外一层,它接收上面 Provider 提供的 store 里面的 statedispatch ,传给一个构造函数,返回一个对象,以属性形式传给我们的容器组件

三、源码

connect 是一个高阶函数,首先传入 mapStateToPropsmapDispatchToProps ,然后返回一个生产 Component 的函数( wrapWithConnect ),然后再将真正的 Component 作为参数传入 wrapWithConnect ,这样就生产出一个经过包裹的 Connect 组件,该组件具有如下特点

  • 通过 props.store 获取祖先 Componentstore props 包括 statePropsdispatchPropsparentProps ,合并在一起得到 nextState ,作为 props 传给真正的 Component
  • componentDidMount 时,添加事件 this.store.subscribe(this.handleChange) ,实现页面交互
  • shouldComponentUpdate 时判断是否有避免进行渲染,提升页面性能,并得到 nextState
  • componentWillUnmount 时移除注册的事件 this.handleChange
// 主要逻辑

export default function connect(mapStateToProps, mapDispatchToProps, mergeProps, options = {}) {
  return function wrapWithConnect(WrappedComponent) {
    class Connect extends Component {
      constructor(props, context) {
        // 从祖先 Component 处获得 store
        this.store = props.store || context.store
        this.stateProps = computeStateProps(this.store, props)
        this.dispatchProps = computeDispatchProps(this.store, props)
        this.state = { storeState: null }
        // 对 stateProps、dispatchProps、parentProps 进行合并
        this.updateState()
      }
      shouldComponentUpdate(nextProps, nextState) {
        // 进行判断,当数据发生改变时,Component 重新渲染
        if (propsChanged || mapStateProducedChange || dispatchPropsChanged) {
          this.updateState(nextProps)
            return true
          }
        }
        componentDidMount() {
          // 改变 Component 的 state
          this.store.subscribe(() = {
            this.setState({
              storeState: this.store.getState()
            })
          })
        }
        render() {
          // 生成包裹组件 Connect
          return (
            <WrappedComponent {...this.nextState} />
          )
        }
      }
      Connect.contextTypes = {
        store: storeShape
      }
      return Connect;
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

盛装女皇

暂无简介

0 文章
0 评论
22 人气
更多

推荐作者

安静被遗忘

文章 0 评论 0

喔爱吃橙子

文章 0 评论 0

草莓味的萝莉

文章 0 评论 0

梦里兽

文章 0 评论 0

mb_83J3Cyxa

文章 0 评论 0

时间海

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文