當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。