当前位置: 首页 > news >正文

搭建网站wordpress主题打开慢

搭建网站,wordpress主题打开慢,重庆涪陵网站设计公司推荐,抽奖网站怎么做React 的鲜活生命起源于 ReactDOM.render #xff0c;这个过程会为它的一生储备好很多必需品#xff0c;我们顺着这个线索#xff0c;一探婴儿般 React 应用诞生之初的悦然。 更新创建的操作我们总结为以下两种场景 ReactDOM.rendersetStateforceUpdate ReactDom.render …React 的鲜活生命起源于 ReactDOM.render 这个过程会为它的一生储备好很多必需品我们顺着这个线索一探婴儿般 React 应用诞生之初的悦然。 更新创建的操作我们总结为以下两种场景 ReactDOM.rendersetStateforceUpdate ReactDom.render 串联该内容一图以蔽之 首先看到 react-dom/client/ReactDOM 中对于 ReactDOM 的定义其中包含我们熟知的方法、不稳定方法以及即将废弃方法。 const ReactDOM: Object {createPortal,// LegacyfindDOMNode,hydrate,render,unstable_renderSubtreeIntoContainer,unmountComponentAtNode,// Temporary alias since we already shipped React 16 RC with it.// TODO: remove in React 17.unstable_createPortal(...args) {// ...return createPortal(...args);},unstable_batchedUpdates: batchedUpdates,flushSync: flushSync,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: {// ...}, };此处方法均来自 ./ReactDOMLegacy render 方法定义很简单正如我们常使用的那样第一个参数是组件第二个参数为组件所要挂载的DOM节点第三个参数为回调函数。 export function render(element: React$Elementany,container: DOMContainer,callback: ?Function, ) {// ...return legacyRenderSubtreeIntoContainer(null,element,container,false,callback,); }function legacyRenderSubtreeIntoContainer(parentComponent: ?React$Componentany, any,children: ReactNodeList,container: DOMContainer,forceHydrate: boolean,callback: ?Function, ) {// TODO: Without any type, Flow says Property cannot be accessed on any// member of intersection type. Whyyyyyy.let root: RootType (container._reactRootContainer: any);let fiberRoot;if (!root) {// Initial mountroot container._reactRootContainer legacyCreateRootFromDOMContainer(container,forceHydrate,);fiberRoot root._internalRoot;if (typeof callback function) {const originalCallback callback;callback function() {const instance getPublicRootInstance(fiberRoot);originalCallback.call(instance);};}// 初次渲染不会将更新标记为batched.unbatchedUpdates(() {updateContainer(children, fiberRoot, parentComponent, callback);});} else {fiberRoot root._internalRoot;if (typeof callback function) {const originalCallback callback;callback function() {const instance getPublicRootInstance(fiberRoot);originalCallback.call(instance);};}// UpdateupdateContainer(children, fiberRoot, parentComponent, callback);}return getPublicRootInstance(fiberRoot); }这段代码我们不难发现调用 ReactDOM.render 时返回的 parentComponent 是 null并且初次渲染不会进行批量策略的更新而是需要尽快的完成。batchedUpdates批量更新后续介绍 从这部分源码我们不难看出render 和 createProtal 的用法的联系通过DOM容器创建Root节点的形式 function legacyCreateRootFromDOMContainer(container: DOMContainer, forceHydrate: boolean, ): RootType {const shouldHydrate forceHydrate || shouldHydrateDueToLegacyHeuristic(container);// First clear any existing content.if (!shouldHydrate) {let warned false;let rootSibling;while ((rootSibling container.lastChild)) {// ...container.removeChild(rootSibling);}}return createLegacyRoot(container,shouldHydrate? {hydrate: true,}: undefined,); }createLegacyRoot 定义于 ./ReactDOMRoot 中指定了创建的DOM容器和一些option设置最终会返回一个 ReactDOMBlockingRoot 。 export function createLegacyRoot(container: DOMContainer, options?: RootOptions, ): RootType {return new ReactDOMBlockingRoot(container, LegacyRoot, options); }function ReactDOMBlockingRoot(container: DOMContainer, tag: RootTag, options: void | RootOptions, ) {this._internalRoot createRootImpl(container, tag, options); }function createRootImpl(container: DOMContainer, tag: RootTag, options: void | RootOptions, ) {// Tag is either LegacyRoot or Concurrent Root// ...const root createContainer(container, tag, hydrate, hydrationCallbacks);// ...return root; }关键点在于方法最终调用了 createContainer 来创建root而该方法中会创建我们上一节所介绍的 FiberRoot 该对象在后续的更新调度过程中起着非常重要的作用到更新调度内容我们详细介绍。 在这部分我们看到了两个方法分别是createContainer、 updateContainer均出自 react-reconciler/inline.dom 最终定义在 react-reconciler/src/ReactFiberReconciler 。创建方法很简单如下 相关参考视频讲解进入学习 export function createContainer( containerInfo: Container, tag: RootTag, hydrate: boolean, hydrationCallbacks: null | SuspenseHydrationCallbacks,): OpaqueRoot {return createFiberRoot(containerInfo, tag, hydrate, hydrationCallbacks); }我们继续往下看紧跟着能看到 updateContainer 方法该方法定义了更新相关的操作其中最重要的一个点就是 expirationTime 直接译为中文是过期时间我们想想此处为何要过期时间这个过期的含义是什么呢这个过期时间是如何计算的呢继续往下我们可以看到computeExpirationForFiber 方法用于过期时间的计算我们先将源码片段放在此处。 export function updateContainer(element: ReactNodeList,container: OpaqueRoot,parentComponent: ?React$Componentany, any,callback: ?Function, ): ExpirationTime {const current container.current;const currentTime requestCurrentTimeForUpdate();// ...const suspenseConfig requestCurrentSuspenseConfig();const expirationTime computeExpirationForFiber(currentTime,current,suspenseConfig,);// ...const context getContextForSubtree(parentComponent);if (container.context null) {container.context context;} else {container.pendingContext context;}// ...const update createUpdate(expirationTime, suspenseConfig);// Caution: React DevTools currently depends on this property// being called element. update.payload {element};callback callback undefined ? null : callback;if (callback ! null) {warningWithoutStack(typeof callback function,render(...): Expected the last optional callback argument to be a function. Instead received: %s.,callback,);update.callback callback;}enqueueUpdate(current, update);scheduleWork(current, expirationTime);return expirationTime; }计算完更新超时时间而后创建更新对象 createUpdate 进而将element绑定到update对象上如果存在回调函数则将回调函数也绑定到update对象上。update对象创建完成将update添加到UpdateQueue中关于update和UpdateQueue数据结构见上一节讲解。至此开始任务调度。 setState 与 forceUpdate 这两个方法绑定在我们当初定义React的文件中具体定义在 react/src/ReactBaseClasses 中如下 Component.prototype.setState function(partialState, callback) {// ...this.updater.enqueueSetState(this, partialState, callback, setState); };Component.prototype.forceUpdate function(callback) {this.updater.enqueueForceUpdate(this, callback, forceUpdate); };这就是为何React基础上拓展React-Native能轻松自如因为React只是做了一些规范和结构设定具体实现是在React-Dom或React-Native中如此达到了平台适配性。 Class组件的更新使用 this.setState 这个api我们早已烂熟于心对于对象组件的更新创建定义在 react-reconciler/src/ReactFiberClassComponent.js classComponentUpdater对象定义了 enqueueSetState 与 enqueueReplaceState 以及 enqueueForceUpdate 对象方法观察这两个方法会发现不同在于enqueueReplaceState 和 enqueueForceUpdate 会在创建的update对象绑定一个tag用于标志更新的类型是 ReplaceState 还是 ForceUpdate 具体实现我们一起来看代码片段。 const classComponentUpdater {isMounted,enqueueSetState(inst, payload, callback) {const fiber getInstance(inst);const currentTime requestCurrentTimeForUpdate();const suspenseConfig requestCurrentSuspenseConfig();const expirationTime computeExpirationForFiber(currentTime,fiber,suspenseConfig,);const update createUpdate(expirationTime, suspenseConfig);update.payload payload;if (callback ! undefined callback ! null) {// ...update.callback callback;}enqueueUpdate(fiber, update);scheduleWork(fiber, expirationTime);},enqueueReplaceState(inst, payload, callback) {const fiber getInstance(inst);const currentTime requestCurrentTimeForUpdate();const suspenseConfig requestCurrentSuspenseConfig();const expirationTime computeExpirationForFiber(currentTime,fiber,suspenseConfig,);const update createUpdate(expirationTime, suspenseConfig);update.tag ReplaceState;update.payload payload;if (callback ! undefined callback ! null) {// ...update.callback callback;}enqueueUpdate(fiber, update);scheduleWork(fiber, expirationTime);},enqueueForceUpdate(inst, callback) {const fiber getInstance(inst);const currentTime requestCurrentTimeForUpdate();const suspenseConfig requestCurrentSuspenseConfig();const expirationTime computeExpirationForFiber(currentTime,fiber,suspenseConfig,);const update createUpdate(expirationTime, suspenseConfig);update.tag ForceUpdate;if (callback ! undefined callback ! null) {// ...update.callback callback;}enqueueUpdate(fiber, update);scheduleWork(fiber, expirationTime);}, };我们也能发现其实通过setState更新的操作实现和ReactDOM.render基本一致。 更新过期时间创建Update对象为update对象绑定一些属性比如 tag 、callback创建的update对象入队 (enqueueUpdate)进入调度过程 expirationTime的作用 expirationTime用于React在调度和渲染过程优先级判断针对不同的操作有不同响应优先级这时我们通过 currentTime: ExpirationTime 变量与预定义的优先级EXPIRATION常量计算得出expirationTime。难道currentTime如我们平时糟糕代码中的 Date.now() 错如此操作会产生频繁计算导致性能降低因此我们定义currentTime的计算规则。 获取currentTime export function requestCurrentTimeForUpdate() {if ((executionContext (RenderContext | CommitContext)) ! NoContext) {// Were inside React, so its fine to read the actual time.return msToExpirationTime(now());}// Were not inside React, so we may be in the middle of a browser event.if (currentEventTime ! NoWork) {// Use the same start time for all updates until we enter React again.return currentEventTime;}// This is the first update since React yielded. Compute a new start time.currentEventTime msToExpirationTime(now());return currentEventTime; }该方法定义了如何去获得当前时间now 方法由 ./SchedulerWithReactIntegration 提供对于now方法的定义似乎不太好找我们通过断点调试 Scheduler_now 最终能够发现时间的获取是通过 window.performance.now() 紧接着找寻到 msToExpirationTime 定义在 ReactFiberExpirationTime.js 定义了expirationTime相关处理逻辑。 不同的expirationTime 阅读到 react-reconciler/src/ReactFilberExpirationTime 对于expirationTime的计算有三个不同方法分别为computeAsyncExpiration 、computeSuspenseExpiration 、computeInteractiveExpiration 。这三个方法均接收三个参数第一个参数均为以上获取的 currentTime 第二个参数为约定的超时时间第三个参数与批量更新的粒度有关。 export const Sync MAX_SIGNED_31_BIT_INT; export const Batched Sync - 1;const UNIT_SIZE 10; const MAGIC_NUMBER_OFFSET Batched - 1;// 1 unit of expiration time represents 10ms. export function msToExpirationTime(ms: number): ExpirationTime {// Always add an offset so that we dont clash with the magic number for NoWork.return MAGIC_NUMBER_OFFSET - ((ms / UNIT_SIZE) | 0); }export function expirationTimeToMs(expirationTime: ExpirationTime): number {return (MAGIC_NUMBER_OFFSET - expirationTime) * UNIT_SIZE; }function ceiling(num: number, precision: number): number {return (((num / precision) | 0) 1) * precision; }function computeExpirationBucket(currentTime, expirationInMs, bucketSizeMs, ): ExpirationTime {return (MAGIC_NUMBER_OFFSET -ceiling(MAGIC_NUMBER_OFFSET - currentTime expirationInMs / UNIT_SIZE,bucketSizeMs / UNIT_SIZE,)); }// TODO: This corresponds to Schedulers NormalPriority, not LowPriority. Update // the names to reflect. export const LOW_PRIORITY_EXPIRATION 5000; export const LOW_PRIORITY_BATCH_SIZE 250;export function computeAsyncExpiration(currentTime: ExpirationTime, ): ExpirationTime {return computeExpirationBucket(currentTime,LOW_PRIORITY_EXPIRATION,LOW_PRIORITY_BATCH_SIZE,); }export function computeSuspenseExpiration(currentTime: ExpirationTime, timeoutMs: number, ): ExpirationTime {// TODO: Should we warn if timeoutMs is lower than the normal pri expiration time?return computeExpirationBucket(currentTime,timeoutMs,LOW_PRIORITY_BATCH_SIZE,); }export const HIGH_PRIORITY_EXPIRATION __DEV__ ? 500 : 150; export const HIGH_PRIORITY_BATCH_SIZE 100;export function computeInteractiveExpiration(currentTime: ExpirationTime) {return computeExpirationBucket(currentTime,HIGH_PRIORITY_EXPIRATION,HIGH_PRIORITY_BATCH_SIZE,); }重点在于 ceil 方法的定义方法传递两个参数需要求值的number和期望精度precision不妨随意带入两个值观察该函数的作用number 100precision 10那么函数返回值为 (((100 / 10) | 0) 1) * 10我们保持precision值不变更改number会发现当我们的值在100-110之间时该函数返回的值相同。哦此时恍然大悟原来这个方法就是保证在同一个bucket中的更新获取到相同的过期时间 expirationTime 就能够实现在较短时间间隔内的更新创建能够__合并处理__。 关于超时时间的处理是很复杂的除了我们看到的 expirationTime 还有 childExpirationTime 、root.firstPendingTime 、root.lastExpiredTime 、root.firstSuspendedTime 、root.lastSuspendedTime root下的相关属性标记了其下子节点fiber的expirationTime的次序构成处理优先级的次序childExpirationTime 则是在遍历子树时更新其 childExpirationTime 值为子节点 expirationTime 。 以上是React创建更新的核心流程任务调度我们下一章节再见。
http://www.w-s-a.com/news/304862/

相关文章:

  • 成都网站建设推广详情邵阳市住房和城乡建设局网站
  • 淄博网站推广猎头公司有哪些
  • 局域网内建立网站90设计网怎么样
  • 域名备案和网站备案有什么不同工程项目建设网站
  • 做网站难吗?wordpress评论qq
  • 权威网站优化价格电子商务静态网站建设实验报告
  • 公司如何办网站北京网站建设公司内江
  • 六安建设网站企业营业执照查询系统入口
  • a5网站建设如果建设淘宝导购网站
  • html5响应式网站开发教程在国内做跨境电商怎么上外国网站
  • win7配置不能运行wordpress关键词快速优化排名软件
  • 餐饮公司最好的网站建设手机网站 搜索优化 百度
  • 17网站一起做网批做服装团购网站
  • 广州网站制作知名企业网站搭建品牌
  • 如何去除网站外链个人网页制作全过程
  • 保洁公司网站怎么做科技设计网站有哪些内容
  • 建设厅网站查询网页设计好就业吗
  • 惠东县网站建设wordpress 如何回到初始
  • 如何让公司网站网站转备案
  • 获得网站所有关键字北京网站建设116net
  • 铜陵电子商务网站建设做龙之向导网站有用吗
  • 购物网站制作费用沧州新华区
  • 信宜网站设计公司在线购物商城系统
  • 网站维护是什么样如何制作网站教程视频讲解
  • 网站建设网络推广代理公司wordpress图片防盗链
  • 网站备案关站沈阳男科医院哪家好点
  • 王者荣耀网站建设的步骤网站页面用什么软件做
  • 典型网站开发的流程房屋装修效果图三室一厅
  • 制作微网站多少钱阿里巴巴做网站的电话号码
  • 风铃建站模板安卓手机软件开发外包