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


TypeScript progress.tick函数代码示例

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


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

示例1: setInterval

var timer = setInterval(function () {
  bar.tick();
  if (bar.complete) {
    console.log('\ncomplete\n');
    clearInterval(timer);
  }
}, 100);
开发者ID:BogdanBe,项目名称:typedoc,代码行数:7,代码来源:node-progress-tests.ts

示例2: setInterval

const interruptTimer = setInterval(function () {
  interruptBar.tick();
  if (interruptBar.complete) {
    clearInterval(interruptTimer);
  } else if (interruptBar.curr === 5 || interruptBar.curr === 8) {
    interruptBar.interrupt('interrupt: current progress is ' + interruptBar.curr + '/' + interruptBar.total);
  }
}, 1000);
开发者ID:CNBoland,项目名称:DefinitelyTyped,代码行数:8,代码来源:progress-tests.ts

示例3: setInterval

var timer = setInterval(function () {
  bar.tick();
  if (bar.complete) {
    clearInterval(timer);
  } else if (bar.curr === 5) {
    bar.interrupt('this message appears above the progress bar\ncurrent progress is ' + bar.curr + '/' + bar.total);
  }
}, 1000);
开发者ID:Dru89,项目名称:DefinitelyTyped,代码行数:8,代码来源:progress-tests.ts

示例4: 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

示例5:

 output.urls.forEach((mapping:UrlMapping) => {
     this.renderDocument(output.createPageEvent(mapping));
     bar.tick();
 });
开发者ID:Flavorus,项目名称:typedoc,代码行数:4,代码来源:renderer.ts

示例6:

 }, state => {
     bar.tick(state.percentage);
 });
开发者ID:victorjacobs,项目名称:chullo-client,代码行数:3,代码来源:client.ts

示例7: clearInterval

 cp.on('exit', () => {
     bar.tick(100);
     clearInterval(cpInterval);
     cloneOnObjectsFetched();
 });
开发者ID:STALKER2010,项目名称:jerk,代码行数:5,代码来源:cli.ts

示例8: setInterval

 let cpInterval = setInterval(() => bar.tick(0), 100);
开发者ID:STALKER2010,项目名称:jerk,代码行数:1,代码来源:cli.ts

示例9: require

var ProgressBar = require('progress');


/**
 * Usage example from https://github.com/tj/node-progress
 */
var bar = new ProgressBar(':bar', { total: 10 });
var timer = setInterval(function () {
  bar.tick();
  if (bar.complete) {
    console.log('\ncomplete\n');
    clearInterval(timer);
  }
}, 100);


/**
 * Custom token example from https://github.com/tj/node-progress
 */
var bar = new ProgressBar(':current: :token1 :token2', { total: 3 });

bar.tick({
  'token1': "Hello",
  'token2': "World!\n"
});

bar.tick(2, {
  'token1': "Goodbye",
  'token2': "World!"
});
开发者ID:BogdanBe,项目名称:typedoc,代码行数:30,代码来源:node-progress-tests.ts


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