本文整理汇总了TypeScript中pad.default方法的典型用法代码示例。如果您正苦于以下问题:TypeScript pad.default方法的具体用法?TypeScript pad.default怎么用?TypeScript pad.default使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pad
的用法示例。
在下文中一共展示了pad.default方法的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;
}
示例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;
}
示例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;
}