最新公告
  • 欢迎您光临起源地模板网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!立即加入钻石VIP
  • 学习React源码

    正文概述 掘金(JuyRen)   2021-06-17   403

    源码调试

    1. 从React仓库拉取最新代码,并安装依赖

      # 拉取代码
      git clone https://github.com/facebook/react.git
      
      # 如果拉取速度很慢,可以考虑如下2个方案:
      
      # 1. 使用cnpm代理
      git clone https://github.com.cnpmjs.org/facebook/react
      
      # 2. 使用码云的镜像(一天会与react同步一次)
      git clone https://gitee.com/mirrors/react.git
      
      cd react
      
      yarn
      
      
    2. 打包react、scheduler、react-dom三个包为dev环境可以使用的cjs包。

      需要先安装java

          yarn build react/index,react/jsx,react-dom/index,scheduler --type=NODE
      
    3. 生成的包文件在 build/node_modules中, 创建 yarn link

          cd ./build/node_modules/react
          yarn link
          
          success Registered "react".
          info You can now run `yarn link "react"` in the projects where you want to use this package and it will be used instead.
          
          cd ./build/node_modules/react-dom
          yarn link
          
          success Registered "react-dom".
          info You can now run `yarn link "react-dom"` in the projects where you want to use this package and it will be used instead.
      
    4. 使用create-react-app创建项目

    5. yarn link react react-dom, 将项目中react, react-dom依赖指向react项目中build后的包

    PS: yarn unlink, yarn unlink xxx 可以解除链接

    Fiber

    作为FiberNode

        function FiberNode(tag, pendingProps, key, mode){
          this.tag = tag; // WorkTag (见下图)
          this.key = key;
          this.elementType = null; // 大部分情况同type
          this.type = null; // 对于 FunctionComponent,指函数本身,对于ClassComponent,指class,对于HostComponent,指DOM节点tagName
          this.stateNode = null; // Fiber
    
          this.return = null; // 指向父fiberNode
          this.child = null; // 指向子fiberNode
          this.sibling = null; // 指向兄弟fiberNode
          this.index = 0;
          
          this.ref = null;
          this.pendingProps = pendingProps;
          this.memoizedProps = null;
          this.updateQueue = null;
          this.memoizedState = null;
          this.dependencies = null;
          this.mode = mode; // Effects
    
          this.flags = NoFlags; // v18版本:The name of this field changed from "effectTag" to "flags"
          this.subtreeFlags = NoFlags;
          this.deletions = null;
          
          this.alternate = null; // 树指针,用于构建缓存树
          
          // 调度优先级相关
          this.lanes = NoLanes; 
          this.childLanes = NoLanes;
        }
    

    WorkTag 学习React源码

    作为FiberTree

    通过 return, child, sibling连接fiberNode

    学习React源码

    FiberTree出现的名词

     1. fiberRootNode(源码中为fiberRoot): 整个fiber应用的根, 在首次ReactDom.render时创建(可以理解为:首先是一个根,然后是整个fiber tree的根)
     2. rootFiber: 整个组件树的根fiber (可以理解为:首先是一个fiber,然后它是组件树的起点fiber)
     3. current fiber: 当前页面展示的fiber tree
     4. workInProgress fiber:存在于缓存中的fiber tree
    

    作为FiberReconciler

    解析FiberTree,使用双缓存技术,通过diff算法打上flags。并且支持异步可中断


    起源地下载网 » 学习React源码

    常见问题FAQ

    免费下载或者VIP会员专享资源能否直接商用?
    本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
    提示下载完但解压或打开不了?
    最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。若排除这种情况,可在对应资源底部留言,或 联络我们.。
    找不到素材资源介绍文章里的示例图片?
    对于PPT,KEY,Mockups,APP,网页模版等类型的素材,文章内用于介绍的图片通常并不包含在对应可供下载素材包内。这些相关商业图片需另外购买,且本站不负责(也没有办法)找到出处。 同样地一些字体文件也是这种情况,但部分素材会在素材包内有一份字体下载链接清单。
    模板不会安装或需要功能定制以及二次开发?
    请QQ联系我们

    发表评论

    还没有评论,快来抢沙发吧!

    如需帝国cms功能定制以及二次开发请联系我们

    联系作者

    请选择支付方式

    ×
    迅虎支付宝
    迅虎微信
    支付宝当面付
    余额支付
    ×
    微信扫码支付 0 元