• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript dom5.removeFakeRootElements函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: bundle

  async bundle(): Promise<BundledDocument> {
    this.document = await this._prepareBundleDocument();
    let ast = clone(this.document.parsedDocument.ast);
    dom5.removeFakeRootElements(ast);
    this._injectHtmlImportsForBundle(ast);
    this._rewriteAstToEmulateBaseTag(ast, this.assignedBundle.url);

    // Re-analyzing the document using the updated ast to refresh the scanned
    // imports, since we may now have appended some that were not initially
    // present.
    this.document = await this._reanalyze(serialize(ast));

    await this._inlineHtmlImports(ast);

    await this._updateExternalModuleScripts(ast);
    if (this.bundler.enableScriptInlining) {
      await this._inlineNonModuleScripts(ast);
      await this._inlineModuleScripts(ast);
    }
    if (this.bundler.enableCssInlining) {
      await this._inlineStylesheetLinks(ast);
      await this._inlineStylesheetImports(ast);
    }
    if (this.bundler.stripComments) {
      stripComments(ast);
    }
    this._removeEmptyHiddenDivs(ast);
    if (this.bundler.sourcemaps) {
      ast = updateSourcemapLocations(this.document, ast);
    }
    const content = serialize(ast);
    const files = [...this.assignedBundle.bundle.files];
    return {ast, content, files};
  }
开发者ID:Polymer,项目名称:vulcanize,代码行数:34,代码来源:html-bundler.ts


示例2: createLinks

export function createLinks(
    html: string,
    baseUrl: string,
    deps: Set<string>,
    absolute: boolean = false): string {
  const ast = parse5.parse(html, {locationInfo: true});
  const baseTag = dom5.query(ast, dom5.predicates.hasTagName('base'));
  const baseTagHref = baseTag ? dom5.getAttribute(baseTag, 'href') : '';

  // parse5 always produces a <head> element.
  const head = dom5.query(ast, dom5.predicates.hasTagName('head'))!;
  for (const dep of deps) {
    let href;
    if (absolute && !baseTagHref) {
      href = absUrl(dep);
    } else {
      href = relativeUrl(absUrl(baseUrl), absUrl(dep));
    }
    const link = dom5.constructors.element('link');
    dom5.setAttribute(link, 'rel', 'prefetch');
    dom5.setAttribute(link, 'href', href);
    dom5.append(head, link);
  }
  dom5.removeFakeRootElements(ast);
  return parse5.serialize(ast);
}
开发者ID:chrisekelley,项目名称:polymer-build,代码行数:26,代码来源:prefetch-links.ts


示例3: _inlineModuleScripts

 /**
  * Inlines the contents of external module scripts and rolls-up imported
  * modules into inline scripts.
  */
 private async _inlineModuleScripts(ast: ASTNode) {
   this.document = await this._reanalyze(serialize(ast));
   rewriteObject(ast, this.document.parsedDocument.ast);
   dom5.removeFakeRootElements(ast);
   const es6Rewriter =
       new Es6Rewriter(this.bundler, this.manifest, this.assignedBundle);
   const inlineModuleScripts =
       [...this.document.getFeatures({
         kind: 'js-document',
         imported: false,
         externalPackages: true,
         excludeBackreferences: true,
       })].filter(({
                    isInline,
                    parsedDocument: {parsedAsSourceType}
                  }) => isInline && parsedAsSourceType === 'module');
   for (const inlineModuleScript of inlineModuleScripts) {
     const {code} = await es6Rewriter.rollup(
         this.document.parsedDocument.baseUrl,
         inlineModuleScript.parsedDocument.contents);
     // Second argument 'true' tells encodeString to escape the <script>
     // content.
     dom5.setTextContent(
         (inlineModuleScript.astNode as any).node,
         encodeString(`\n${code}\n`, true));
   }
 }
开发者ID:Polymer,项目名称:vulcanize,代码行数:31,代码来源:html-bundler.ts


示例4: _rollupInlineModuleScripts

 /**
  * Inlines the contents of external module scripts and rolls-up imported
  * modules into inline scripts.
  */
 private async _rollupInlineModuleScripts(ast: ASTNode) {
   this.document = await this._reanalyze(serialize(ast));
   rewriteObject(ast, this.document.parsedDocument.ast);
   dom5.removeFakeRootElements(ast);
   const es6Rewriter =
       new Es6Rewriter(this.bundler, this.manifest, this.assignedBundle);
   const inlineModuleScripts =
       [...this.document.getFeatures({
         kind: 'js-document',
         imported: false,
         externalPackages: true,
         excludeBackreferences: true,
       })].filter(({
                    isInline,
                    parsedDocument: {parsedAsSourceType}
                  }) => isInline && parsedAsSourceType === 'module');
   for (const inlineModuleScript of inlineModuleScripts) {
     const ast = clone(inlineModuleScript.parsedDocument.ast);
     const importResolutions =
         es6Rewriter.getEs6ImportResolutions(inlineModuleScript);
     es6Rewriter.rewriteEs6SourceUrlsToResolved(ast, importResolutions);
     const serializedCode = serializeEs6(ast).code;
     const {code} = await es6Rewriter.rollup(
         this.document.parsedDocument.baseUrl,
         serializedCode,
         inlineModuleScript);
     if (inlineModuleScript.astNode &&
         inlineModuleScript.astNode.language === 'html') {
       // Second argument 'true' tells encodeString to escape the <script>
       // content.
       dom5.setTextContent(
           inlineModuleScript.astNode.node, encodeString(`\n${code}\n`, true));
     }
   }
 }
开发者ID:Polymer,项目名称:tools,代码行数:39,代码来源:html-bundler.ts


示例5: _prepareBundleDocument

 /**
  * Generate a fresh document to bundle contents into.  If we're building
  * a bundle which is based on an existing file, we should load that file and
  * prepare it as the bundle document, otherwise we'll create a clean/empty
  * HTML document.
  */
 private async _prepareBundleDocument(): Promise<Document> {
   if (!this.assignedBundle.bundle.files.has(this.assignedBundle.url)) {
     return this._reanalyze('');
   }
   const analysis =
       await this.bundler.analyzer.analyze([this.assignedBundle.url]);
   const document = getAnalysisDocument(analysis, this.assignedBundle.url);
   const ast = clone(document.parsedDocument.ast);
   this._moveOrderedImperativesFromHeadIntoHiddenDiv(ast);
   this._moveUnhiddenHtmlImportsIntoHiddenDiv(ast);
   dom5.removeFakeRootElements(ast);
   return this._reanalyze(serialize(ast));
 }
开发者ID:Polymer,项目名称:vulcanize,代码行数:19,代码来源:html-bundler.ts


示例6: _transformIter

  protected async *
      _transformIter(files: AsyncIterable<File>): AsyncIterable<File> {
    for await (const file of files) {
      if (file.path !== this.filePath) {
        yield file;
        continue;
      }

      const contents = await getFileContents(file);
      const parsed = parse5.parse(contents, {locationInfo: true});
      const base = dom5.query(parsed, baseMatcher);
      if (!base || dom5.getAttribute(base, 'href') === this.newHref) {
        yield file;
        continue;
      }

      dom5.setAttribute(base, 'href', this.newHref);
      dom5.removeFakeRootElements(parsed);
      const updatedFile = file.clone();
      updatedFile.contents = new Buffer(parse5.serialize(parsed), 'utf-8');
      yield updatedFile;
    }
  }
开发者ID:chrisekelley,项目名称:polymer-build,代码行数:23,代码来源:base-tag-updater.ts


示例7: parse

export function parse(html: string, options?: ParserOptions): ASTNode {
  const ast = _parse(html, Object.assign({locationInfo: true}, options));
  dom5.removeFakeRootElements(ast);
  return ast;
}
开发者ID:MehdiRaash,项目名称:tools,代码行数:5,代码来源:parse5-utils.ts



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript dom5.serialize函数代码示例发布时间:2022-05-25
下一篇:
TypeScript dom5.removeAttribute函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap