当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript virtual-dom.diff函数代码示例

本文整理汇总了TypeScript中virtual-dom.diff函数的典型用法代码示例。如果您正苦于以下问题:TypeScript diff函数的具体用法?TypeScript diff怎么用?TypeScript diff使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了diff函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: appendPosts

    private appendPosts(): void {
        let newCollectionNode = new PostCollectionView(this.loadedPosts).render();

        if (!this.collectionElement) {
            this.collectionElement = create(newCollectionNode);
            let postElements = this.element.querySelectorAll(".post");
            let lastElement = postElements[postElements.length - 1];
            if (lastElement && lastElement.parentElement) {
                lastElement.parentElement.insertBefore(
                    this.collectionElement,
                    lastElement.nextSibling,
                );
            }
        } else {
            let patches = diff(this.collectionNode, newCollectionNode);
            this.collectionElement = patch(this.collectionElement, patches);
        }

        this.collectionNode = newCollectionNode;
    }
开发者ID:pxfs,项目名称:fanboi2,代码行数:20,代码来源:topic_load_posts.ts

示例2: originalDiff

const diff = (current: VDOM, next: VDOM): Patches =>
  originalDiff(current, next);
开发者ID:bouzuya,项目名称:boa-vdom,代码行数:2,代码来源:vdom.ts

示例3: render

 stores[storeName].subscribe(() => {
   let newTree = render(stores);
   let patches = diff(tree, newTree);
   rootNode    = patch(rootNode, patches);
   tree        =  newTree;
 })
开发者ID:tomjal,项目名称:tsf,代码行数:6,代码来源:core.ts

示例4: diff

const updateDom = (newTree: VirtualDOM.VNode): void => {
    const patches: VPatch[] = diff(currentTree, newTree);
    rootNode = patch(rootNode, patches);
    currentTree = newTree;
};
开发者ID:315ea,项目名称:frontend,代码行数:5,代码来源:main.ts


注:本文中的virtual-dom.diff函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。