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


TypeScript pad类代码示例

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


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

示例1: standardProgressBar

function standardProgressBar(label: string, total: number) {
  const pb = new MaybeProgressBar(
      `${pad(label, progressMessageWidth)} [:bar] :percent`,
      {total, width: progressBarWidth});
  // force the progress bar to start at 0%
  pb.render();
  return pb;
}
开发者ID:TimvdLippe,项目名称:tedium,代码行数:8,代码来源:tedium.ts

示例2: analyzeRepos

/**
 * Analyzes all of the HTML in 'repos/*' with hydrolysis.
 *
 * Returns a promise of the hydrolysis.Analyzer with all of the info loaded.
 */
async function analyzeRepos() {
  const dirs = fs.readdirSync('repos/');
  const htmlFiles: string[] = [];

  for (const dir of dirs) {
    for (const fn of fs.readdirSync(path.join('repos', dir))) {
      if (/index\.html|dependencies\.html/.test(fn) || !fn.endsWith('.html')) {
        continue;
      }
      // We want to ignore files with 'demo' in them, unless the element's
      // directory has the word 'demo' in it, in which case that's
      // the whole point of the element.
      if (!/\bdemo\b/.test(dir) && /demo/.test(fn)) {
        continue;
      }
      htmlFiles.push(path.join('repos', dir, fn));
    }
  }

  function filter(repo: string) { return !existsSync(repo); }

  // This code is conceptually simple, it's only complex due to ordering
  // and the progress bar. Basically we call analyzer.metadataTree on each
  // html file in sequence, then finally call analyzer.annotate() and return.
  const analyzer =
      await hydrolysis.Analyzer.analyze('repos/polymer/polymer.html', {filter});

  const progressBar = new ProgressBar(
      `:msg [:bar] :percent`,
      {total: htmlFiles.length + 1, width: progressBarWidth});

  for (const htmlFile of htmlFiles) {
    await analyzer.metadataTree(htmlFile);
    const msg = pad(
        `Analyzing ${htmlFile.slice(6)}`, progressMessageWidth, {strip: true});
    progressBar.tick({msg});
  }


  progressBar.tick(
      {msg: pad('Analyzing with hydrolysis...', progressMessageWidth)});
  analyzer.annotate();
  return analyzer;
}
开发者ID:BruceZu,项目名称:tedium,代码行数:49,代码来源:tedium.ts

示例3: analyzeRepos

/**
 * Analyzes all of the HTML in 'repos/*' with hydrolysis.
 *
 * Returns a promise of the hydrolysis.Analyzer with all of the info loaded.
 */
async function analyzeRepos() {
  const dirsToConsider: string[] = [];
  const htmlFiles: string[] = [];

  for (const dir of fs.readdirSync('repos/')) {
    dirsToConsider.push(path.join('repos', dir));
    for (const filename of fs.readdirSync(path.join('repos', dir))) {
      try {
        const stat = fs.statSync(path.join('repos', dir, filename));
        if (!stat.isDirectory()) {
          continue;
        }
      } catch (e) {
        continue;
      }
      if (filename.startsWith('.')) {
        continue;
      }
      const dirnamesToIgnore = new Set([
        'test',
        'util',
        'explainer',
        'src',
        'helpers',
        'site',
        'templates',
        'viewer',
        'demo',
        'patterns'
      ]);
      if (dirnamesToIgnore.has(path.basename(filename))) {
        continue;
      }
      dirsToConsider.push(path.join('repos', dir, filename));
    }
  }

  for (const dir of dirsToConsider) {
    for (const filename of fs.readdirSync(dir)) {
      if (/index\.html|dependencies\.html/.test(filename) ||
          !filename.endsWith('.html')) {
        continue;
      }
      // We want to ignore files with 'demo' in them, unless the element's
      // directory has the word 'demo' in it, in which case that's
      // the whole point of the element.
      if (!/\bdemo\b/.test(dir) && /demo/.test(filename)) {
        continue;
      }
      htmlFiles.push(path.join(dir, filename));
    }
  }

  function filter(repo: string) {
    return !existsSync(repo);
  }

  // This code is conceptually simple, it's only complex due to ordering
  // and the progress bar. Basically we call analyzer.metadataTree on each
  // html file in sequence, then finally call analyzer.annotate() and return.
  const analyzer =
      await hydrolysis.Analyzer.analyze('repos/polymer/polymer.html', {filter});


  const progressBar = new MaybeProgressBar(
      `:msg [:bar] :percent`,
      {total: htmlFiles.length + 1, width: progressBarWidth});

  for (const htmlFile of htmlFiles) {
    await analyzer.metadataTree(htmlFile);
    const msg = pad(
        `Analyzing ${htmlFile.slice(6)}`, progressMessageWidth, {strip: true});
    progressBar.tick({msg});
  }


  progressBar.tick(
      {msg: pad('Analyzing with hydrolysis...', progressMessageWidth)});
  analyzer.annotate();
  return analyzer;
}
开发者ID:TimvdLippe,项目名称:tedium,代码行数:86,代码来源:tedium.ts


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