前端快报10月

96 阅读4分钟

Making React fast by default and truly reactive

这篇文章通过介绍React中组件渲染优化的问题引出类mobx的状态库方案legend-state,在底层的技术方案上跟mobx是相似的,通过监听observable值的变化来运行渲染函数。

A (Mostly) Complete Guide to React Rendering Behavior

这篇文章比较详细的介绍了React组件渲染的细节,包括渲染的阶段、Fiber、渲染优化等。

The future of rendering in React

这篇文章主要介绍基于react的页面渲染流程和渲染方式的优缺点。

  1. CSR(Client-side rendering)- 客户端渲染。这种渲染方式通过在客户侧的浏览器执行脚本来完成整个页面内容的生成和数据的加载。 这种方式可以通过CDN去优化JS脚本的加载,能有效的提交TTFB(Time To First Byte),但是由于页面和数据都是在客户端组装和渲染会影响用户的首次可交互时间和不方便做SEO优化。

  2. SSR(Server-side rendering)- 服务端渲染。这种渲染方式通过react提供的api在服务端组装数据和渲染页面内容。服务端渲染的优势在于有利于SEO优化,能有效的提供FCP(First Contentful Paint)和LCP(Largest Contentful Paint),劣势是服务端渲染会降低TTFB,但是可以通过一些手段去优化,比如

    • SSG(Static site generation)- 静态页面生成 将不依赖数据的页面提前进行预编译,在访问的时候直接将已编译好的页面内容返回
    • ISR (Incremental static site generation)- 增量式页面生层 ISR为了解决SSG的对动态数据依赖和构建规模问题,可以在运行时动态的生成页面内容并存储
    • Streaming SSR- 流式服务端渲染 主要使用node中的stream实现流式的返回服务端渲染的内容,能有效的提高TTFB

A Half-Hour to Learn JavaScript

这篇文章介绍JavaScript中的基础知识点,包括变量声明、闭包、this、new关键字、原型链、继承、异步调用(async await,Promise)、事件循环等,适合复习基础的时候浏览查缺补漏。

JavaScript metaprogramming with the 2022-03 decorators API

这篇文章详细的介绍了JavaScript中装饰器的细节

工具

zx

google的一个脚本工具,可以在脚本中写javascript,值得一试

源码解读

Sortable源码解读

Sortable是一个实现可拖拽列表的库,它提供了丰富的功能比如共享列表的拖拽、多条目的拖拽等。以下主要从两方面对Sortable的源码进行简单的分析,希望对功能库的设计有所思考

  1. 插件机制
  2. 拖拽功能实现

插件机制

  • 插件能很好的实现功能的隔离。插件内功能逻辑自治,
  • 通过统一的接口提供接入和调用能力。便于后续功能的扩展
  • 通过组合插件,可以提供多版本的库
插件注册
    //  通过mount方法调用PluginManager的mount来注册插件
    Sortable.mount = function(...plugins) {
        if (plugins[0].constructor === Array) plugins = plugins[0];

        plugins.forEach((plugin) => {
            if (!plugin.prototype || !plugin.prototype.constructor) {
                throw `Sortable: Mounted plugin must be a constructor function, not ${ {}.toString.call(plugin) }`;
            }
            if (plugin.utils) Sortable.utils = { ...Sortable.utils, ...plugin.utils };

            PluginManager.mount(plugin);
        });
    };
触发插件

通过调用pluginEvent来触发插件执行的逻辑

    pluginEvent(eventName, sortable, evt) {
        this.eventCanceled = false;
        evt.cancel = () => {
            this.eventCanceled = true;
        };
        const eventNameGlobal = eventName + 'Global';
        plugins.forEach(plugin => {
            if (!sortable[plugin.pluginName]) return;
            // Fire global events if it exists in this sortable
            if (
                sortable[plugin.pluginName][eventNameGlobal]
            ) {
                sortable[plugin.pluginName][eventNameGlobal]({ sortable, ...evt });
            }

            // 触发对应插件上对应eventName的处理函数
            // 比如MultiDrag plugin的drop方法就是通过pluginEvent('drop', this, { evt })触发
            if (
                sortable.options[plugin.pluginName] &&
                sortable[plugin.pluginName][eventName]
            ) {
                sortable[plugin.pluginName][eventName]({ sortable, ...evt });
            }
        });
    },

拖拽能力实现

拖拽能力主要实现是:

  • 初始化绑定根元素拖拽的dom事件监听函数
  • 根据事件触发顺序添加动画处理逻辑、插件调用逻辑、元素替换逻辑、配置的回调函数触发逻辑等

绑定事件监听函数

HTML 5 Drag and Drop 入门教程中有对html5中拖拽函数介绍。

    // 事件监听
    if (!this.nativeDraggable || touch) {
		if (this.options.supportPointer) {
			on(document, 'pointermove', this._onTouchMove);
		} else if (touch) {
			on(document, 'touchmove', this._onTouchMove);
		} else {
			on(document, 'mousemove', this._onTouchMove);
		}
	} else {
        // 注意这里传入的是this
		on(dragEl, 'dragend', this);
		on(rootEl, 'dragstart', this._onDragStart);
	}

事件触发

addEventListener的第二个参数listener可以是一个函数或者是一个带handleEvent函数的对象。在绑定监听函数的时候listener传入的是this,在触发回调的时候就会走入到handleEvent处理拖拽结束的函数逻辑

    handleEvent: function (/**Event*/evt) {
        switch (evt.type) {
            case 'drop':
            case 'dragend':
                // 拖拽结束的时候 执行逻辑
                this._onDrop(evt);
                break;

            case 'dragenter':
            case 'dragover':
                if (dragEl) {
                    this._onDragOver(evt);
                    _globalDragOver(evt);
                }
                break;

            case 'selectstart':
                evt.preventDefault();
                break;
        }
    },

欢迎大家关注我的 个人主页