mirror of
https://github.com/actions/labeler
synced 2026-05-13 22:01:12 +02:00
build
This commit is contained in:
137
node_modules/prompts/dist/elements/autocomplete.js
generated
vendored
137
node_modules/prompts/dist/elements/autocomplete.js
generated
vendored
@@ -9,13 +9,15 @@ const color = require('kleur');
|
||||
const Prompt = require('./prompt');
|
||||
|
||||
const _require = require('sisteransi'),
|
||||
erase = _require.erase,
|
||||
cursor = _require.cursor;
|
||||
|
||||
const _require2 = require('../util'),
|
||||
style = _require2.style,
|
||||
clear = _require2.clear,
|
||||
figures = _require2.figures,
|
||||
strip = _require2.strip;
|
||||
wrap = _require2.wrap,
|
||||
entriesToDisplay = _require2.entriesToDisplay;
|
||||
|
||||
const getVal = (arr, i) => arr[i] && (arr[i].value || arr[i].title || arr[i]);
|
||||
|
||||
@@ -50,9 +52,11 @@ class AutocompletePrompt extends Prompt {
|
||||
this.choices = opts.choices;
|
||||
this.initial = typeof opts.initial === 'number' ? opts.initial : getIndex(opts.choices, opts.initial);
|
||||
this.select = this.initial || opts.cursor || 0;
|
||||
this.fallback = opts.fallback || (opts.initial !== undefined ? `${figures.pointerSmall} ${getTitle(this.choices, this.initial)}` : `${figures.pointerSmall} ${opts.noMatches || 'no matches found'}`);
|
||||
this.suggestions = [[]];
|
||||
this.page = 0;
|
||||
this.i18n = {
|
||||
noMatches: opts.noMatches || 'no matches found'
|
||||
};
|
||||
this.fallback = opts.fallback || this.initial;
|
||||
this.suggestions = [];
|
||||
this.input = '';
|
||||
this.limit = opts.limit || 10;
|
||||
this.cursor = 0;
|
||||
@@ -65,15 +69,23 @@ class AutocompletePrompt extends Prompt {
|
||||
this.render();
|
||||
}
|
||||
|
||||
set fallback(fb) {
|
||||
this._fb = Number.isSafeInteger(parseInt(fb)) ? parseInt(fb) : fb;
|
||||
}
|
||||
|
||||
get fallback() {
|
||||
let choice;
|
||||
if (typeof this._fb === 'number') choice = this.choices[this._fb];else if (typeof this._fb === 'string') choice = {
|
||||
title: this._fb
|
||||
};
|
||||
return choice || this._fb || {
|
||||
title: this.i18n.noMatches
|
||||
};
|
||||
}
|
||||
|
||||
moveSelect(i) {
|
||||
this.select = i;
|
||||
|
||||
if (this.suggestions[this.page].length > 0) {
|
||||
this.value = getVal(this.suggestions[this.page], i);
|
||||
} else {
|
||||
this.value = this.initial !== undefined ? getVal(this.choices, this.initial) : null;
|
||||
}
|
||||
|
||||
if (this.suggestions.length > 0) this.value = getVal(this.suggestions, i);else this.value = this.fallback.value;
|
||||
this.fire();
|
||||
}
|
||||
|
||||
@@ -87,25 +99,10 @@ class AutocompletePrompt extends Prompt {
|
||||
if (_this.completing !== p) return;
|
||||
_this.suggestions = suggestions.map((s, i, arr) => ({
|
||||
title: getTitle(arr, i),
|
||||
value: getVal(arr, i)
|
||||
})).reduce((arr, sug) => {
|
||||
if (arr[arr.length - 1].length < _this.limit) arr[arr.length - 1].push(sug);else arr.push([sug]);
|
||||
return arr;
|
||||
}, [[]]);
|
||||
_this.isFallback = false;
|
||||
value: getVal(arr, i),
|
||||
description: s.description
|
||||
}));
|
||||
_this.completing = false;
|
||||
if (!_this.suggestions[_this.page]) _this.page = 0;
|
||||
|
||||
if (!_this.suggestions.length && _this.fallback) {
|
||||
const index = getIndex(_this.choices, _this.fallback);
|
||||
_this.suggestions = [[]];
|
||||
if (index !== undefined) _this.suggestions[0].push({
|
||||
title: getTitle(_this.choices, index),
|
||||
value: getVal(_this.choices, index)
|
||||
});
|
||||
_this.isFallback = true;
|
||||
}
|
||||
|
||||
const l = Math.max(suggestions.length - 1, 0);
|
||||
|
||||
_this.moveSelect(Math.min(l, _this.select));
|
||||
@@ -141,7 +138,6 @@ class AutocompletePrompt extends Prompt {
|
||||
}
|
||||
|
||||
_(c, key) {
|
||||
// TODO on ctrl+# go to page #
|
||||
let s1 = this.input.slice(0, this.cursor);
|
||||
let s2 = this.input.slice(this.cursor);
|
||||
this.input = `${s1}${c}${s2}`;
|
||||
@@ -175,7 +171,7 @@ class AutocompletePrompt extends Prompt {
|
||||
}
|
||||
|
||||
last() {
|
||||
this.moveSelect(this.suggestions[this.page].length - 1);
|
||||
this.moveSelect(this.suggestions.length - 1);
|
||||
this.render();
|
||||
}
|
||||
|
||||
@@ -186,14 +182,13 @@ class AutocompletePrompt extends Prompt {
|
||||
}
|
||||
|
||||
down() {
|
||||
if (this.select >= this.suggestions[this.page].length - 1) return this.bell();
|
||||
if (this.select >= this.suggestions.length - 1) return this.bell();
|
||||
this.moveSelect(this.select + 1);
|
||||
this.render();
|
||||
}
|
||||
|
||||
next() {
|
||||
if (this.select === this.suggestions[this.page].length - 1) {
|
||||
this.page = (this.page + 1) % this.suggestions.length;
|
||||
if (this.select === this.suggestions.length - 1) {
|
||||
this.moveSelect(0);
|
||||
} else this.moveSelect(this.select + 1);
|
||||
|
||||
@@ -201,16 +196,12 @@ class AutocompletePrompt extends Prompt {
|
||||
}
|
||||
|
||||
nextPage() {
|
||||
if (this.page >= this.suggestions.length - 1) return this.bell();
|
||||
this.page++;
|
||||
this.moveSelect(0);
|
||||
this.moveSelect(Math.min(this.select + this.limit, this.suggestions.length - 1));
|
||||
this.render();
|
||||
}
|
||||
|
||||
prevPage() {
|
||||
if (this.page <= 0) return this.bell();
|
||||
this.page--;
|
||||
this.moveSelect(0);
|
||||
this.moveSelect(Math.max(this.select - this.limit, 0));
|
||||
this.render();
|
||||
}
|
||||
|
||||
@@ -226,49 +217,43 @@ class AutocompletePrompt extends Prompt {
|
||||
this.render();
|
||||
}
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
super.render();
|
||||
if (this.lineCount) this.out.write(cursor.down(this.lineCount));
|
||||
let prompt = color.bold(`${style.symbol(this.done, this.aborted)} ${this.msg} `) + `${style.delimiter(this.completing)} `;
|
||||
let length = strip(prompt).length;
|
||||
renderOption(v, hovered, isStart, isEnd) {
|
||||
let desc;
|
||||
let prefix = isStart ? figures.arrowUp : isEnd ? figures.arrowDown : ' ';
|
||||
let title = hovered ? color.cyan().underline(v.title) : v.title;
|
||||
prefix = (hovered ? color.cyan(figures.pointer) + ' ' : ' ') + prefix;
|
||||
|
||||
if (this.done && this.suggestions[this.page][this.select]) {
|
||||
prompt += `${this.suggestions[this.page][this.select].title}`;
|
||||
} else {
|
||||
this.rendered = `${this.transform.render(this.input)}`;
|
||||
length += this.rendered.length;
|
||||
prompt += this.rendered;
|
||||
}
|
||||
if (v.description) {
|
||||
desc = ` - ${v.description}`;
|
||||
|
||||
if (!this.done) {
|
||||
this.lineCount = this.suggestions[this.page].length;
|
||||
let suggestions = this.suggestions[this.page].reduce((acc, item, i) => acc + `\n${i === this.select ? color.cyan(item.title) : item.title}`, '');
|
||||
|
||||
if (suggestions && !this.isFallback) {
|
||||
prompt += suggestions;
|
||||
|
||||
if (this.suggestions.length > 1) {
|
||||
this.lineCount++;
|
||||
prompt += color.blue(`\nPage ${this.page + 1}/${this.suggestions.length}`);
|
||||
}
|
||||
} else {
|
||||
const fallbackIndex = getIndex(this.choices, this.fallback);
|
||||
const fallbackTitle = fallbackIndex !== undefined ? getTitle(this.choices, fallbackIndex) : this.fallback;
|
||||
prompt += `\n${color.gray(fallbackTitle)}`;
|
||||
this.lineCount++;
|
||||
if (prefix.length + title.length + desc.length >= this.out.columns || v.description.split(/\r?\n/).length > 1) {
|
||||
desc = '\n' + wrap(v.description, {
|
||||
margin: 3,
|
||||
width: this.out.columns
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
this.out.write(this.clear + prompt);
|
||||
this.clear = clear(prompt);
|
||||
return prefix + ' ' + title + color.gray(desc || '');
|
||||
}
|
||||
|
||||
if (this.lineCount && !this.done) {
|
||||
let pos = cursor.up(this.lineCount);
|
||||
pos += cursor.left + cursor.to(length);
|
||||
pos += cursor.move(-this.rendered.length + this.cursor * this.scale);
|
||||
this.out.write(pos);
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);else this.out.write(clear(this.outputText));
|
||||
super.render();
|
||||
|
||||
let _entriesToDisplay = entriesToDisplay(this.select, this.choices.length, this.limit),
|
||||
startIndex = _entriesToDisplay.startIndex,
|
||||
endIndex = _entriesToDisplay.endIndex;
|
||||
|
||||
this.outputText = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(this.completing), this.done && this.suggestions[this.select] ? this.suggestions[this.select].title : this.rendered = this.transform.render(this.input)].join(' ');
|
||||
|
||||
if (!this.done) {
|
||||
const suggestions = this.suggestions.slice(startIndex, endIndex).map((item, i) => this.renderOption(item, this.select === i + startIndex, i === 0 && startIndex > 0, i + startIndex === endIndex - 1 && endIndex < this.choices.length)).join('\n');
|
||||
this.outputText += `\n` + (suggestions || color.gray(this.fallback.title));
|
||||
}
|
||||
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
15
node_modules/prompts/dist/elements/autocompleteMultiselect.js
generated
vendored
15
node_modules/prompts/dist/elements/autocompleteMultiselect.js
generated
vendored
@@ -137,13 +137,21 @@ class AutocompleteMultiselectPrompt extends MultiselectPrompt {
|
||||
}
|
||||
|
||||
renderInstructions() {
|
||||
return `
|
||||
if (this.instructions === undefined || this.instructions) {
|
||||
if (typeof this.instructions === 'string') {
|
||||
return this.instructions;
|
||||
}
|
||||
|
||||
return `
|
||||
Instructions:
|
||||
${figures.arrowUp}/${figures.arrowDown}: Highlight option
|
||||
${figures.arrowLeft}/${figures.arrowRight}/[space]: Toggle selection
|
||||
[a,b,c]/delete: Filter choices
|
||||
enter/return: Complete answer
|
||||
`;
|
||||
`;
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
renderCurrentInput() {
|
||||
@@ -159,8 +167,7 @@ Filtered results for: ${this.inputValue ? this.inputValue : color.gray('Enter so
|
||||
|
||||
renderDoneOrInstructions() {
|
||||
if (this.done) {
|
||||
const selected = this.value.filter(e => e.selected).map(v => v.title).join(', ');
|
||||
return selected;
|
||||
return this.value.filter(e => e.selected).map(v => v.title).join(', ');
|
||||
}
|
||||
|
||||
const output = [color.gray(this.hint), this.renderInstructions(), this.renderCurrentInput()];
|
||||
|
||||
8
node_modules/prompts/dist/elements/confirm.js
generated
vendored
8
node_modules/prompts/dist/elements/confirm.js
generated
vendored
@@ -5,7 +5,8 @@ const color = require('kleur');
|
||||
const Prompt = require('./prompt');
|
||||
|
||||
const _require = require('../util'),
|
||||
style = _require.style;
|
||||
style = _require.style,
|
||||
clear = _require.clear;
|
||||
|
||||
const _require2 = require('sisteransi'),
|
||||
erase = _require2.erase,
|
||||
@@ -77,9 +78,10 @@ class ConfirmPrompt extends Prompt {
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);
|
||||
if (this.firstRender) this.out.write(cursor.hide);else this.out.write(clear(this.outputText));
|
||||
super.render();
|
||||
this.out.write(erase.line + cursor.to(0) + [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(this.done), this.done ? this.value ? this.yesMsg : this.noMsg : color.gray(this.initialValue ? this.yesOption : this.noOption)].join(' '));
|
||||
this.outputText = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(this.done), this.done ? this.value ? this.yesMsg : this.noMsg : color.gray(this.initialValue ? this.yesOption : this.noOption)].join(' ');
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
52
node_modules/prompts/dist/elements/date.js
generated
vendored
52
node_modules/prompts/dist/elements/date.js
generated
vendored
@@ -11,8 +11,7 @@ const Prompt = require('./prompt');
|
||||
const _require = require('../util'),
|
||||
style = _require.style,
|
||||
clear = _require.clear,
|
||||
figures = _require.figures,
|
||||
strip = _require.strip;
|
||||
figures = _require.figures;
|
||||
|
||||
const _require2 = require('sisteransi'),
|
||||
erase = _require2.erase,
|
||||
@@ -56,20 +55,19 @@ const dfltLocales = {
|
||||
monthsShort: 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'.split(','),
|
||||
weekdays: 'Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday'.split(','),
|
||||
weekdaysShort: 'Sun,Mon,Tue,Wed,Thu,Fri,Sat'.split(',')
|
||||
/**
|
||||
* DatePrompt Base Element
|
||||
* @param {Object} opts Options
|
||||
* @param {String} opts.message Message
|
||||
* @param {Number} [opts.initial] Index of default value
|
||||
* @param {String} [opts.mask] The format mask
|
||||
* @param {object} [opts.locales] The date locales
|
||||
* @param {String} [opts.error] The error message shown on invalid value
|
||||
* @param {Function} [opts.validate] Function to validate the submitted value
|
||||
* @param {Stream} [opts.stdin] The Readable stream to listen to
|
||||
* @param {Stream} [opts.stdout] The Writable stream to write readline data to
|
||||
*/
|
||||
|
||||
};
|
||||
/**
|
||||
* DatePrompt Base Element
|
||||
* @param {Object} opts Options
|
||||
* @param {String} opts.message Message
|
||||
* @param {Number} [opts.initial] Index of default value
|
||||
* @param {String} [opts.mask] The format mask
|
||||
* @param {object} [opts.locales] The date locales
|
||||
* @param {String} [opts.error] The error message shown on invalid value
|
||||
* @param {Function} [opts.validate] Function to validate the submitted value
|
||||
* @param {Stream} [opts.stdin] The Readable stream to listen to
|
||||
* @param {Stream} [opts.stdout] The Writable stream to write readline data to
|
||||
*/
|
||||
|
||||
class DatePrompt extends Prompt {
|
||||
constructor(opts = {}) {
|
||||
@@ -231,28 +229,16 @@ class DatePrompt extends Prompt {
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);else this.out.write(erase.lines(1));
|
||||
super.render();
|
||||
let clear = erase.line + (this.lines ? erase.down(this.lines) : '') + cursor.to(0);
|
||||
this.lines = 0;
|
||||
let error = '';
|
||||
if (this.firstRender) this.out.write(cursor.hide);else this.out.write(clear(this.outputText));
|
||||
super.render(); // Print prompt
|
||||
|
||||
this.outputText = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(false), this.parts.reduce((arr, p, idx) => arr.concat(idx === this.cursor && !this.done ? color.cyan().underline(p.toString()) : p), []).join('')].join(' '); // Print error
|
||||
|
||||
if (this.error) {
|
||||
let lines = this.errorMsg.split('\n');
|
||||
error = lines.reduce((a, l, i) => a + `\n${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
this.lines = lines.length;
|
||||
} // Print prompt
|
||||
|
||||
|
||||
let prompt = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(false), this.parts.reduce((arr, p, idx) => arr.concat(idx === this.cursor && !this.done ? color.cyan().underline(p.toString()) : p), []).join('')].join(' ');
|
||||
let position = '';
|
||||
|
||||
if (this.lines) {
|
||||
position += cursor.up(this.lines);
|
||||
position += cursor.left + cursor.to(strip(prompt).length);
|
||||
this.outputText += this.errorMsg.split('\n').reduce((a, l, i) => a + `\n${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
}
|
||||
|
||||
this.out.write(clear + prompt + error + position);
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
110
node_modules/prompts/dist/elements/multiselect.js
generated
vendored
110
node_modules/prompts/dist/elements/multiselect.js
generated
vendored
@@ -10,7 +10,9 @@ const Prompt = require('./prompt');
|
||||
const _require2 = require('../util'),
|
||||
clear = _require2.clear,
|
||||
figures = _require2.figures,
|
||||
style = _require2.style;
|
||||
style = _require2.style,
|
||||
wrap = _require2.wrap,
|
||||
entriesToDisplay = _require2.entriesToDisplay;
|
||||
/**
|
||||
* MultiselectPrompt Base Element
|
||||
* @param {Object} opts Options
|
||||
@@ -20,6 +22,7 @@ const _require2 = require('../util'),
|
||||
* @param {String} [opts.warn] Hint shown for disabled choices
|
||||
* @param {Number} [opts.max] Max choices
|
||||
* @param {Number} [opts.cursor=0] Cursor start position
|
||||
* @param {Number} [opts.optionsPerPage=10] Max options to display at once
|
||||
* @param {Stream} [opts.stdin] The Readable stream to listen to
|
||||
* @param {Stream} [opts.stdout] The Writable stream to write readline data to
|
||||
*/
|
||||
@@ -36,6 +39,8 @@ class MultiselectPrompt extends Prompt {
|
||||
this.minSelected = opts.min;
|
||||
this.showMinError = false;
|
||||
this.maxChoices = opts.max;
|
||||
this.instructions = opts.instructions;
|
||||
this.optionsPerPage = opts.optionsPerPage || 10;
|
||||
this.value = opts.choices.map((ch, idx) => {
|
||||
if (typeof ch === 'string') ch = {
|
||||
title: ch,
|
||||
@@ -43,7 +48,8 @@ class MultiselectPrompt extends Prompt {
|
||||
};
|
||||
return {
|
||||
title: ch && (ch.title || ch.value || ch),
|
||||
value: ch && (ch.value || idx),
|
||||
description: ch && ch.description,
|
||||
value: ch && (ch.value === undefined ? idx : ch.value),
|
||||
selected: ch && ch.selected,
|
||||
disabled: ch && ch.disabled
|
||||
};
|
||||
@@ -150,57 +156,88 @@ class MultiselectPrompt extends Prompt {
|
||||
}
|
||||
}
|
||||
|
||||
toggleAll() {
|
||||
if (this.maxChoices !== undefined || this.value[this.cursor].disabled) {
|
||||
return this.bell();
|
||||
}
|
||||
|
||||
const newSelected = !this.value[this.cursor].selected;
|
||||
this.value.filter(v => !v.disabled).forEach(v => v.selected = newSelected);
|
||||
this.render();
|
||||
}
|
||||
|
||||
_(c, key) {
|
||||
if (c === ' ') {
|
||||
this.handleSpaceToggle();
|
||||
} else if (c === 'a') {
|
||||
this.toggleAll();
|
||||
} else {
|
||||
return this.bell();
|
||||
}
|
||||
}
|
||||
|
||||
renderInstructions() {
|
||||
return `
|
||||
Instructions:
|
||||
${figures.arrowUp}/${figures.arrowDown}: Highlight option
|
||||
${figures.arrowLeft}/${figures.arrowRight}/[space]: Toggle selection
|
||||
enter/return: Complete answer
|
||||
`;
|
||||
if (this.instructions === undefined || this.instructions) {
|
||||
if (typeof this.instructions === 'string') {
|
||||
return this.instructions;
|
||||
}
|
||||
|
||||
return '\nInstructions:\n' + ` ${figures.arrowUp}/${figures.arrowDown}: Highlight option\n` + ` ${figures.arrowLeft}/${figures.arrowRight}/[space]: Toggle selection\n` + (this.maxChoices === undefined ? ` a: Toggle all\n` : '') + ` enter/return: Complete answer`;
|
||||
}
|
||||
|
||||
return '';
|
||||
}
|
||||
|
||||
renderOption(cursor, v, i) {
|
||||
let title;
|
||||
if (v.disabled) title = cursor === i ? color.gray().underline(v.title) : color.strikethrough().gray(v.title);else title = cursor === i ? color.cyan().underline(v.title) : v.title;
|
||||
return (v.selected ? color.green(figures.radioOn) : figures.radioOff) + ' ' + title;
|
||||
renderOption(cursor, v, i, arrowIndicator) {
|
||||
const prefix = (v.selected ? color.green(figures.radioOn) : figures.radioOff) + ' ' + arrowIndicator + ' ';
|
||||
let title, desc;
|
||||
|
||||
if (v.disabled) {
|
||||
title = cursor === i ? color.gray().underline(v.title) : color.strikethrough().gray(v.title);
|
||||
} else {
|
||||
title = cursor === i ? color.cyan().underline(v.title) : v.title;
|
||||
|
||||
if (cursor === i && v.description) {
|
||||
desc = ` - ${v.description}`;
|
||||
|
||||
if (prefix.length + title.length + desc.length >= this.out.columns || v.description.split(/\r?\n/).length > 1) {
|
||||
desc = '\n' + wrap(v.description, {
|
||||
margin: prefix.length,
|
||||
width: this.out.columns
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return prefix + title + color.gray(desc || '');
|
||||
} // shared with autocompleteMultiselect
|
||||
|
||||
|
||||
paginateOptions(options) {
|
||||
const c = this.cursor;
|
||||
let styledOptions = options.map((v, i) => this.renderOption(c, v, i));
|
||||
const numOfOptionsToRender = 10; // if needed, can add an option to change this.
|
||||
|
||||
let scopedOptions = styledOptions;
|
||||
let hint = '';
|
||||
|
||||
if (styledOptions.length === 0) {
|
||||
if (options.length === 0) {
|
||||
return color.red('No matches for this query.');
|
||||
} else if (styledOptions.length > numOfOptionsToRender) {
|
||||
let startIndex = c - numOfOptionsToRender / 2;
|
||||
let endIndex = c + numOfOptionsToRender / 2;
|
||||
|
||||
if (startIndex < 0) {
|
||||
startIndex = 0;
|
||||
endIndex = numOfOptionsToRender;
|
||||
} else if (endIndex > options.length) {
|
||||
endIndex = options.length;
|
||||
startIndex = endIndex - numOfOptionsToRender;
|
||||
}
|
||||
|
||||
scopedOptions = styledOptions.slice(startIndex, endIndex);
|
||||
hint = color.dim('(Move up and down to reveal more choices)');
|
||||
}
|
||||
|
||||
return '\n' + scopedOptions.join('\n') + '\n' + hint;
|
||||
let _entriesToDisplay = entriesToDisplay(this.cursor, options.length, this.optionsPerPage),
|
||||
startIndex = _entriesToDisplay.startIndex,
|
||||
endIndex = _entriesToDisplay.endIndex;
|
||||
|
||||
let prefix,
|
||||
styledOptions = [];
|
||||
|
||||
for (let i = startIndex; i < endIndex; i++) {
|
||||
if (i === startIndex && startIndex > 0) {
|
||||
prefix = figures.arrowUp;
|
||||
} else if (i === endIndex - 1 && endIndex < options.length) {
|
||||
prefix = figures.arrowDown;
|
||||
} else {
|
||||
prefix = ' ';
|
||||
}
|
||||
|
||||
styledOptions.push(this.renderOption(this.cursor, options[i], i, prefix));
|
||||
}
|
||||
|
||||
return '\n' + styledOptions.join('\n');
|
||||
} // shared with autocomleteMultiselect
|
||||
|
||||
|
||||
@@ -214,8 +251,7 @@ Instructions:
|
||||
|
||||
renderDoneOrInstructions() {
|
||||
if (this.done) {
|
||||
const selected = this.value.filter(e => e.selected).map(v => v.title).join(', ');
|
||||
return selected;
|
||||
return this.value.filter(e => e.selected).map(v => v.title).join(', ');
|
||||
}
|
||||
|
||||
const output = [color.gray(this.hint), this.renderInstructions()];
|
||||
|
||||
46
node_modules/prompts/dist/elements/number.js
generated
vendored
46
node_modules/prompts/dist/elements/number.js
generated
vendored
@@ -14,9 +14,9 @@ const _require = require('sisteransi'),
|
||||
|
||||
const _require2 = require('../util'),
|
||||
style = _require2.style,
|
||||
clear = _require2.clear,
|
||||
figures = _require2.figures,
|
||||
strip = _require2.strip;
|
||||
clear = _require2.clear,
|
||||
lines = _require2.lines;
|
||||
|
||||
const isNumber = /[0-9]/;
|
||||
|
||||
@@ -159,6 +159,11 @@ class NumberPrompt extends Prompt {
|
||||
|
||||
up() {
|
||||
this.typed = ``;
|
||||
|
||||
if (this.value === '') {
|
||||
this.value = this.min - this.inc;
|
||||
}
|
||||
|
||||
if (this.value >= this.max) return this.bell();
|
||||
this.value += this.inc;
|
||||
this.color = `cyan`;
|
||||
@@ -168,6 +173,11 @@ class NumberPrompt extends Prompt {
|
||||
|
||||
down() {
|
||||
this.typed = ``;
|
||||
|
||||
if (this.value === '') {
|
||||
this.value = this.min + this.inc;
|
||||
}
|
||||
|
||||
if (this.value <= this.min) return this.bell();
|
||||
this.value -= this.inc;
|
||||
this.color = `cyan`;
|
||||
@@ -179,6 +189,11 @@ class NumberPrompt extends Prompt {
|
||||
let val = this.value.toString();
|
||||
if (val.length === 0) return this.bell();
|
||||
this.value = this.parse(val = val.slice(0, -1)) || ``;
|
||||
|
||||
if (this.value !== '' && this.value < this.min) {
|
||||
this.value = this.min;
|
||||
}
|
||||
|
||||
this.color = `cyan`;
|
||||
this.fire();
|
||||
this.render();
|
||||
@@ -208,27 +223,22 @@ class NumberPrompt extends Prompt {
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
|
||||
if (!this.firstRender) {
|
||||
if (this.outputError) this.out.write(cursor.down(lines(this.outputError) - 1) + clear(this.outputError));
|
||||
this.out.write(clear(this.outputText));
|
||||
}
|
||||
|
||||
super.render();
|
||||
let clear = erase.line + (this.lines ? erase.down(this.lines) : ``) + cursor.to(0);
|
||||
this.lines = 0;
|
||||
let error = ``;
|
||||
this.outputError = ''; // Print prompt
|
||||
|
||||
this.outputText = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(this.done), !this.done || !this.done && !this.placeholder ? color[this.color]().underline(this.rendered) : this.rendered].join(` `); // Print error
|
||||
|
||||
if (this.error) {
|
||||
let lines = this.errorMsg.split(`\n`);
|
||||
error += lines.reduce((a, l, i) => a + `\n${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
this.lines = lines.length;
|
||||
this.outputError += this.errorMsg.split(`\n`).reduce((a, l, i) => a + `\n${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
}
|
||||
|
||||
let underline = !this.done || !this.done && !this.placeholder;
|
||||
let prompt = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(this.done), underline ? color[this.color]().underline(this.rendered) : this.rendered].join(` `);
|
||||
let position = ``;
|
||||
|
||||
if (this.lines) {
|
||||
position += cursor.up(this.lines);
|
||||
position += cursor.left + cursor.to(strip(prompt).length);
|
||||
}
|
||||
|
||||
this.out.write(clear + prompt + error + position);
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText + cursor.save + this.outputError + cursor.restore);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
7
node_modules/prompts/dist/elements/prompt.js
generated
vendored
7
node_modules/prompts/dist/elements/prompt.js
generated
vendored
@@ -23,17 +23,18 @@ class Prompt extends EventEmitter {
|
||||
constructor(opts = {}) {
|
||||
super();
|
||||
this.firstRender = true;
|
||||
this.in = opts.in || process.stdin;
|
||||
this.out = opts.out || process.stdout;
|
||||
this.in = opts.stdin || process.stdin;
|
||||
this.out = opts.stdout || process.stdout;
|
||||
|
||||
this.onRender = (opts.onRender || (() => void 0)).bind(this);
|
||||
|
||||
const rl = readline.createInterface(this.in);
|
||||
readline.emitKeypressEvents(this.in, rl);
|
||||
if (this.in.isTTY) this.in.setRawMode(true);
|
||||
const isSelect = ['SelectPrompt', 'MultiselectPrompt'].indexOf(this.constructor.name) > -1;
|
||||
|
||||
const keypress = (str, key) => {
|
||||
let a = action(key);
|
||||
let a = action(key, isSelect);
|
||||
|
||||
if (a === false) {
|
||||
this._ && this._(str, key);
|
||||
|
||||
59
node_modules/prompts/dist/elements/select.js
generated
vendored
59
node_modules/prompts/dist/elements/select.js
generated
vendored
@@ -7,10 +7,11 @@ const Prompt = require('./prompt');
|
||||
const _require = require('../util'),
|
||||
style = _require.style,
|
||||
clear = _require.clear,
|
||||
figures = _require.figures;
|
||||
figures = _require.figures,
|
||||
wrap = _require.wrap,
|
||||
entriesToDisplay = _require.entriesToDisplay;
|
||||
|
||||
const _require2 = require('sisteransi'),
|
||||
erase = _require2.erase,
|
||||
cursor = _require2.cursor;
|
||||
/**
|
||||
* SelectPrompt Base Element
|
||||
@@ -21,6 +22,7 @@ const _require2 = require('sisteransi'),
|
||||
* @param {Number} [opts.initial] Index of default value
|
||||
* @param {Stream} [opts.stdin] The Readable stream to listen to
|
||||
* @param {Stream} [opts.stdout] The Writable stream to write readline data to
|
||||
* @param {Number} [opts.optionsPerPage=10] Max options to display at once
|
||||
*/
|
||||
|
||||
|
||||
@@ -38,11 +40,13 @@ class SelectPrompt extends Prompt {
|
||||
};
|
||||
return {
|
||||
title: ch && (ch.title || ch.value || ch),
|
||||
value: ch && (ch.value || idx),
|
||||
value: ch && (ch.value === undefined ? idx : ch.value),
|
||||
description: ch && ch.description,
|
||||
selected: ch && ch.selected,
|
||||
disabled: ch && ch.disabled
|
||||
};
|
||||
});
|
||||
this.optionsPerPage = opts.optionsPerPage || 10;
|
||||
this.value = (this.choices[this.cursor] || {}).value;
|
||||
this.clear = clear('');
|
||||
this.render();
|
||||
@@ -116,26 +120,57 @@ class SelectPrompt extends Prompt {
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);else this.out.write(erase.lines(this.choices.length + 1));
|
||||
super.render(); // Print prompt
|
||||
if (this.firstRender) this.out.write(cursor.hide);else this.out.write(clear(this.outputText));
|
||||
super.render();
|
||||
|
||||
this.out.write([style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(false), this.done ? this.selection.title : this.selection.disabled ? color.yellow(this.warn) : color.gray(this.hint)].join(' ')); // Print choices
|
||||
let _entriesToDisplay = entriesToDisplay(this.cursor, this.choices.length, this.optionsPerPage),
|
||||
startIndex = _entriesToDisplay.startIndex,
|
||||
endIndex = _entriesToDisplay.endIndex; // Print prompt
|
||||
|
||||
|
||||
this.outputText = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(false), this.done ? this.selection.title : this.selection.disabled ? color.yellow(this.warn) : color.gray(this.hint)].join(' '); // Print choices
|
||||
|
||||
if (!this.done) {
|
||||
this.out.write('\n' + this.choices.map((v, i) => {
|
||||
let title, prefix;
|
||||
this.outputText += '\n';
|
||||
|
||||
for (let i = startIndex; i < endIndex; i++) {
|
||||
let title,
|
||||
prefix,
|
||||
desc = '',
|
||||
v = this.choices[i]; // Determine whether to display "more choices" indicators
|
||||
|
||||
if (i === startIndex && startIndex > 0) {
|
||||
prefix = figures.arrowUp;
|
||||
} else if (i === endIndex - 1 && endIndex < this.choices.length) {
|
||||
prefix = figures.arrowDown;
|
||||
} else {
|
||||
prefix = ' ';
|
||||
}
|
||||
|
||||
if (v.disabled) {
|
||||
title = this.cursor === i ? color.gray().underline(v.title) : color.strikethrough().gray(v.title);
|
||||
prefix = this.cursor === i ? color.bold().gray(figures.pointer) + ' ' : ' ';
|
||||
prefix = (this.cursor === i ? color.bold().gray(figures.pointer) + ' ' : ' ') + prefix;
|
||||
} else {
|
||||
title = this.cursor === i ? color.cyan().underline(v.title) : v.title;
|
||||
prefix = this.cursor === i ? color.cyan(figures.pointer) + ' ' : ' ';
|
||||
prefix = (this.cursor === i ? color.cyan(figures.pointer) + ' ' : ' ') + prefix;
|
||||
|
||||
if (v.description && this.cursor === i) {
|
||||
desc = ` - ${v.description}`;
|
||||
|
||||
if (prefix.length + title.length + desc.length >= this.out.columns || v.description.split(/\r?\n/).length > 1) {
|
||||
desc = '\n' + wrap(v.description, {
|
||||
margin: 3,
|
||||
width: this.out.columns
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return `${prefix} ${title}`;
|
||||
}).join('\n'));
|
||||
this.outputText += `${prefix} ${title}${color.gray(desc)}\n`;
|
||||
}
|
||||
}
|
||||
|
||||
this.out.write(this.outputText);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
30
node_modules/prompts/dist/elements/text.js
generated
vendored
30
node_modules/prompts/dist/elements/text.js
generated
vendored
@@ -9,12 +9,13 @@ const color = require('kleur');
|
||||
const Prompt = require('./prompt');
|
||||
|
||||
const _require = require('sisteransi'),
|
||||
erase = _require.erase,
|
||||
cursor = _require.cursor;
|
||||
|
||||
const _require2 = require('../util'),
|
||||
style = _require2.style,
|
||||
clear = _require2.clear,
|
||||
strip = _require2.strip,
|
||||
lines = _require2.lines,
|
||||
figures = _require2.figures;
|
||||
/**
|
||||
* TextPrompt Base Element
|
||||
@@ -191,28 +192,21 @@ class TextPrompt extends Prompt {
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
|
||||
if (!this.firstRender) {
|
||||
if (this.outputError) this.out.write(cursor.down(lines(this.outputError) - 1) + clear(this.outputError));
|
||||
this.out.write(clear(this.outputText));
|
||||
}
|
||||
|
||||
super.render();
|
||||
let erase = (this.lines ? cursor.down(this.lines) : ``) + this.clear;
|
||||
this.lines = 0;
|
||||
let prompt = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(this.done), this.red ? color.red(this.rendered) : this.rendered].join(` `);
|
||||
let error = ``;
|
||||
this.outputError = '';
|
||||
this.outputText = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(this.done), this.red ? color.red(this.rendered) : this.rendered].join(` `);
|
||||
|
||||
if (this.error) {
|
||||
let lines = this.errorMsg.split(`\n`);
|
||||
error += lines.reduce((a, l, i) => a += `\n${i ? ' ' : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
this.lines = lines.length;
|
||||
this.outputError += this.errorMsg.split(`\n`).reduce((a, l, i) => a + `\n${i ? ' ' : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
}
|
||||
|
||||
let position = ``;
|
||||
|
||||
if (this.lines) {
|
||||
position += cursor.up(this.lines);
|
||||
position += cursor.left + cursor.to(strip(prompt).length);
|
||||
}
|
||||
|
||||
position += cursor.move(this.placeholder ? -this.initial.length * this.scale : -this.rendered.length + this.cursor * this.scale);
|
||||
this.out.write(erase + prompt + error + position);
|
||||
this.clear = clear(prompt + error);
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText + cursor.save + this.outputError + cursor.restore);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
5
node_modules/prompts/dist/elements/toggle.js
generated
vendored
5
node_modules/prompts/dist/elements/toggle.js
generated
vendored
@@ -109,9 +109,10 @@ class TogglePrompt extends Prompt {
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);
|
||||
if (this.firstRender) this.out.write(cursor.hide);else this.out.write(clear(this.outputText));
|
||||
super.render();
|
||||
this.out.write(erase.lines(this.first ? 1 : this.msg.split(/\n/g).length) + cursor.to(0) + [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(this.done), this.value ? this.inactive : color.cyan().underline(this.inactive), color.gray('/'), this.value ? color.cyan().underline(this.active) : this.active].join(' '));
|
||||
this.outputText = [style.symbol(this.done, this.aborted), color.bold(this.msg), style.delimiter(this.done), this.value ? this.inactive : color.cyan().underline(this.inactive), color.gray('/'), this.value ? color.cyan().underline(this.active) : this.active].join(' ');
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
27
node_modules/prompts/dist/index.js
generated
vendored
27
node_modules/prompts/dist/index.js
generated
vendored
@@ -1,6 +1,8 @@
|
||||
'use strict';
|
||||
|
||||
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
|
||||
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
||||
|
||||
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
||||
|
||||
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
|
||||
@@ -10,7 +12,7 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
|
||||
|
||||
const prompts = require('./prompts');
|
||||
|
||||
const passOn = ['suggest', 'format', 'onState', 'validate', 'onRender'];
|
||||
const passOn = ['suggest', 'format', 'onState', 'validate', 'onRender', 'type'];
|
||||
|
||||
const noop = () => {};
|
||||
/**
|
||||
@@ -34,11 +36,9 @@ function _prompt() {
|
||||
const answers = {};
|
||||
const override = prompt._override || {};
|
||||
questions = [].concat(questions);
|
||||
let answer, question, quit, name, type;
|
||||
let answer, question, quit, name, type, lastPrompt;
|
||||
|
||||
const getFormattedAnswer =
|
||||
/*#__PURE__*/
|
||||
function () {
|
||||
const getFormattedAnswer = /*#__PURE__*/function () {
|
||||
var _ref = _asyncToGenerator(function* (question, answer, skipValidation = false) {
|
||||
if (!skipValidation && question.validate && question.validate(answer) !== true) {
|
||||
return;
|
||||
@@ -63,13 +63,22 @@ function _prompt() {
|
||||
name = _question.name;
|
||||
type = _question.type;
|
||||
|
||||
// if property is a function, invoke it unless it's a special function
|
||||
// evaluate type first and skip if type is a falsy value
|
||||
if (typeof type === 'function') {
|
||||
type = yield type(answer, _objectSpread({}, answers), question);
|
||||
question['type'] = type;
|
||||
}
|
||||
|
||||
if (!type) continue; // if property is a function, invoke it unless it's a special function
|
||||
|
||||
for (let key in question) {
|
||||
if (passOn.includes(key)) continue;
|
||||
let value = question[key];
|
||||
question[key] = typeof value === 'function' ? yield value(answer, _objectSpread({}, answers), question) : value;
|
||||
question[key] = typeof value === 'function' ? yield value(answer, _objectSpread({}, answers), lastPrompt) : value;
|
||||
}
|
||||
|
||||
lastPrompt = question;
|
||||
|
||||
if (typeof question.message !== 'string') {
|
||||
throw new Error('prompt message is required');
|
||||
} // update vars in case they changed
|
||||
@@ -78,8 +87,6 @@ function _prompt() {
|
||||
var _question2 = question;
|
||||
name = _question2.name;
|
||||
type = _question2.type;
|
||||
// skip if type is a falsy value
|
||||
if (!type) continue;
|
||||
|
||||
if (prompts[type] === void 0) {
|
||||
throw new Error(`prompt type (${type}) is not defined`);
|
||||
|
||||
15
node_modules/prompts/dist/util/action.js
generated
vendored
15
node_modules/prompts/dist/util/action.js
generated
vendored
@@ -1,6 +1,8 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = key => {
|
||||
module.exports = (key, isSelect) => {
|
||||
if (key.meta) return;
|
||||
|
||||
if (key.ctrl) {
|
||||
if (key.name === 'a') return 'first';
|
||||
if (key.name === 'c') return 'abort';
|
||||
@@ -9,6 +11,11 @@ module.exports = key => {
|
||||
if (key.name === 'g') return 'reset';
|
||||
}
|
||||
|
||||
if (isSelect) {
|
||||
if (key.name === 'j') return 'down';
|
||||
if (key.name === 'k') return 'up';
|
||||
}
|
||||
|
||||
if (key.name === 'return') return 'submit';
|
||||
if (key.name === 'enter') return 'submit'; // ctrl + J
|
||||
|
||||
@@ -18,7 +25,11 @@ module.exports = key => {
|
||||
if (key.name === 'escape') return 'abort';
|
||||
if (key.name === 'tab') return 'next';
|
||||
if (key.name === 'pagedown') return 'nextPage';
|
||||
if (key.name === 'pageup') return 'prevPage';
|
||||
if (key.name === 'pageup') return 'prevPage'; // TODO create home() in prompt types (e.g. TextPrompt)
|
||||
|
||||
if (key.name === 'home') return 'home'; // TODO create end() in prompt types (e.g. TextPrompt)
|
||||
|
||||
if (key.name === 'end') return 'end';
|
||||
if (key.name === 'up') return 'up';
|
||||
if (key.name === 'down') return 'down';
|
||||
if (key.name === 'right') return 'right';
|
||||
|
||||
2
node_modules/prompts/dist/util/clear.js
generated
vendored
2
node_modules/prompts/dist/util/clear.js
generated
vendored
@@ -36,5 +36,5 @@ module.exports = function (prompt, perLine = process.stdout.columns) {
|
||||
}
|
||||
}
|
||||
|
||||
return (erase.line + cursor.prevLine()).repeat(rows - 1) + erase.line + cursor.to(0);
|
||||
return erase.lines(rows);
|
||||
};
|
||||
21
node_modules/prompts/dist/util/entriesToDisplay.js
generated
vendored
Normal file
21
node_modules/prompts/dist/util/entriesToDisplay.js
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
'use strict';
|
||||
/**
|
||||
* Determine what entries should be displayed on the screen, based on the
|
||||
* currently selected index and the maximum visible. Used in list-based
|
||||
* prompts like `select` and `multiselect`.
|
||||
*
|
||||
* @param {number} cursor the currently selected entry
|
||||
* @param {number} total the total entries available to display
|
||||
* @param {number} [maxVisible] the number of entries that can be displayed
|
||||
*/
|
||||
|
||||
module.exports = (cursor, total, maxVisible) => {
|
||||
maxVisible = maxVisible || total;
|
||||
let startIndex = Math.min(total - maxVisible, cursor - Math.floor(maxVisible / 2));
|
||||
if (startIndex < 0) startIndex = 0;
|
||||
let endIndex = Math.min(startIndex + maxVisible, total);
|
||||
return {
|
||||
startIndex,
|
||||
endIndex
|
||||
};
|
||||
};
|
||||
5
node_modules/prompts/dist/util/index.js
generated
vendored
5
node_modules/prompts/dist/util/index.js
generated
vendored
@@ -5,5 +5,8 @@ module.exports = {
|
||||
clear: require('./clear'),
|
||||
style: require('./style'),
|
||||
strip: require('./strip'),
|
||||
figures: require('./figures')
|
||||
figures: require('./figures'),
|
||||
lines: require('./lines'),
|
||||
wrap: require('./wrap'),
|
||||
entriesToDisplay: require('./entriesToDisplay')
|
||||
};
|
||||
9
node_modules/prompts/dist/util/lines.js
generated
vendored
Normal file
9
node_modules/prompts/dist/util/lines.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
const strip = require('./strip');
|
||||
|
||||
module.exports = function (msg, perLine = process.stdout.columns) {
|
||||
let lines = String(strip(msg) || '').split(/\r?\n/);
|
||||
if (!perLine) return lines.length;
|
||||
return lines.map(l => Math.ceil(l.length / perLine)).reduce((a, b) => a + b);
|
||||
};
|
||||
16
node_modules/prompts/dist/util/wrap.js
generated
vendored
Normal file
16
node_modules/prompts/dist/util/wrap.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
'use strict';
|
||||
/**
|
||||
* @param {string} msg The message to wrap
|
||||
* @param {object} [opts]
|
||||
* @param {number|string} [opts.margin] Left margin
|
||||
* @param {number} [opts.width] Maximum characters per line including the margin
|
||||
*/
|
||||
|
||||
module.exports = (msg, opts = {}) => {
|
||||
const tab = Number.isSafeInteger(parseInt(opts.margin)) ? new Array(parseInt(opts.margin)).fill(' ').join('') : opts.margin || '';
|
||||
const width = opts.width || process.stdout.columns;
|
||||
return (msg || '').split(/\r?\n/g).map(line => line.split(/\s+/g).reduce((arr, w) => {
|
||||
if (w.length + tab.length >= width || arr[arr.length - 1].length + w.length + 1 < width) arr[arr.length - 1] += ` ${w}`;else arr.push(`${tab}${w}`);
|
||||
return arr;
|
||||
}, [tab]).join('\n')).join('\n');
|
||||
};
|
||||
168
node_modules/prompts/lib/elements/autocomplete.js
generated
vendored
168
node_modules/prompts/lib/elements/autocomplete.js
generated
vendored
@@ -2,8 +2,8 @@
|
||||
|
||||
const color = require('kleur');
|
||||
const Prompt = require('./prompt');
|
||||
const { cursor } = require('sisteransi');
|
||||
const { style, clear, figures, strip } = require('../util');
|
||||
const { erase, cursor } = require('sisteransi');
|
||||
const { style, clear, figures, wrap, entriesToDisplay } = require('../util');
|
||||
|
||||
const getVal = (arr, i) => arr[i] && (arr[i].value || arr[i].title || arr[i]);
|
||||
const getTitle = (arr, i) => arr[i] && (arr[i].title || arr[i].value || arr[i]);
|
||||
@@ -37,13 +37,9 @@ class AutocompletePrompt extends Prompt {
|
||||
? opts.initial
|
||||
: getIndex(opts.choices, opts.initial);
|
||||
this.select = this.initial || opts.cursor || 0;
|
||||
this.fallback = opts.fallback || (
|
||||
opts.initial !== undefined ?
|
||||
`${figures.pointerSmall} ${getTitle(this.choices, this.initial)}` :
|
||||
`${figures.pointerSmall} ${opts.noMatches || 'no matches found'}`
|
||||
);
|
||||
this.suggestions = [[]];
|
||||
this.page = 0;
|
||||
this.i18n = { noMatches: opts.noMatches || 'no matches found' };
|
||||
this.fallback = opts.fallback || this.initial;
|
||||
this.suggestions = [];
|
||||
this.input = '';
|
||||
this.limit = opts.limit || 10;
|
||||
this.cursor = 0;
|
||||
@@ -56,15 +52,24 @@ class AutocompletePrompt extends Prompt {
|
||||
this.render();
|
||||
}
|
||||
|
||||
set fallback(fb) {
|
||||
this._fb = Number.isSafeInteger(parseInt(fb)) ? parseInt(fb) : fb;
|
||||
}
|
||||
|
||||
get fallback() {
|
||||
let choice;
|
||||
if (typeof this._fb === 'number')
|
||||
choice = this.choices[this._fb];
|
||||
else if (typeof this._fb === 'string')
|
||||
choice = { title: this._fb };
|
||||
return choice || this._fb || { title: this.i18n.noMatches };
|
||||
}
|
||||
|
||||
moveSelect(i) {
|
||||
this.select = i;
|
||||
if (this.suggestions[this.page].length > 0) {
|
||||
this.value = getVal(this.suggestions[this.page], i);
|
||||
} else {
|
||||
this.value = this.initial !== undefined
|
||||
? getVal(this.choices, this.initial)
|
||||
: null;
|
||||
}
|
||||
if (this.suggestions.length > 0)
|
||||
this.value = getVal(this.suggestions, i);
|
||||
else this.value = this.fallback.value;
|
||||
this.fire();
|
||||
}
|
||||
|
||||
@@ -74,26 +79,8 @@ class AutocompletePrompt extends Prompt {
|
||||
|
||||
if (this.completing !== p) return;
|
||||
this.suggestions = suggestions
|
||||
.map((s, i, arr) => ({title: getTitle(arr, i), value: getVal(arr, i)}))
|
||||
.reduce((arr, sug) => {
|
||||
if (arr[arr.length - 1].length < this.limit)
|
||||
arr[arr.length - 1].push(sug);
|
||||
else arr.push([sug]);
|
||||
return arr;
|
||||
}, [[]]);
|
||||
this.isFallback = false;
|
||||
.map((s, i, arr) => ({ title: getTitle(arr, i), value: getVal(arr, i), description: s.description }));
|
||||
this.completing = false;
|
||||
if (!this.suggestions[this.page])
|
||||
this.page = 0;
|
||||
|
||||
if (!this.suggestions.length && this.fallback) {
|
||||
const index = getIndex(this.choices, this.fallback);
|
||||
this.suggestions = [[]];
|
||||
if (index !== undefined)
|
||||
this.suggestions[0].push({ title: getTitle(this.choices, index), value: getVal(this.choices, index) });
|
||||
this.isFallback = true;
|
||||
}
|
||||
|
||||
const l = Math.max(suggestions.length - 1, 0);
|
||||
this.moveSelect(Math.min(l, this.select));
|
||||
|
||||
@@ -126,7 +113,7 @@ class AutocompletePrompt extends Prompt {
|
||||
this.close();
|
||||
}
|
||||
|
||||
_(c, key) { // TODO on ctrl+# go to page #
|
||||
_(c, key) {
|
||||
let s1 = this.input.slice(0, this.cursor);
|
||||
let s2 = this.input.slice(this.cursor);
|
||||
this.input = `${s1}${c}${s2}`;
|
||||
@@ -146,12 +133,12 @@ class AutocompletePrompt extends Prompt {
|
||||
}
|
||||
|
||||
deleteForward() {
|
||||
if(this.cursor*this.scale >= this.rendered.length) return this.bell();
|
||||
let s1 = this.input.slice(0, this.cursor);
|
||||
let s2 = this.input.slice(this.cursor+1);
|
||||
this.input = `${s1}${s2}`;
|
||||
this.complete(this.render);
|
||||
this.render();
|
||||
if(this.cursor*this.scale >= this.rendered.length) return this.bell();
|
||||
let s1 = this.input.slice(0, this.cursor);
|
||||
let s2 = this.input.slice(this.cursor+1);
|
||||
this.input = `${s1}${s2}`;
|
||||
this.complete(this.render);
|
||||
this.render();
|
||||
}
|
||||
|
||||
first() {
|
||||
@@ -160,7 +147,7 @@ class AutocompletePrompt extends Prompt {
|
||||
}
|
||||
|
||||
last() {
|
||||
this.moveSelect(this.suggestions[this.page].length - 1);
|
||||
this.moveSelect(this.suggestions.length - 1);
|
||||
this.render();
|
||||
}
|
||||
|
||||
@@ -171,32 +158,25 @@ class AutocompletePrompt extends Prompt {
|
||||
}
|
||||
|
||||
down() {
|
||||
if (this.select >= this.suggestions[this.page].length - 1) return this.bell();
|
||||
if (this.select >= this.suggestions.length - 1) return this.bell();
|
||||
this.moveSelect(this.select + 1);
|
||||
this.render();
|
||||
}
|
||||
|
||||
next() {
|
||||
if (this.select === this.suggestions[this.page].length - 1) {
|
||||
this.page = (this.page + 1) % this.suggestions.length;
|
||||
if (this.select === this.suggestions.length - 1) {
|
||||
this.moveSelect(0);
|
||||
} else this.moveSelect(this.select + 1);
|
||||
this.render();
|
||||
}
|
||||
|
||||
nextPage() {
|
||||
if (this.page >= this.suggestions.length - 1)
|
||||
return this.bell();
|
||||
this.page++;
|
||||
this.moveSelect(0);
|
||||
this.moveSelect(Math.min(this.select + this.limit, this.suggestions.length - 1));
|
||||
this.render();
|
||||
}
|
||||
|
||||
prevPage() {
|
||||
if (this.page <= 0)
|
||||
return this.bell();
|
||||
this.page--;
|
||||
this.moveSelect(0);
|
||||
this.moveSelect(Math.max(this.select - this.limit, 0));
|
||||
this.render();
|
||||
}
|
||||
|
||||
@@ -212,52 +192,50 @@ class AutocompletePrompt extends Prompt {
|
||||
this.render();
|
||||
}
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
super.render();
|
||||
if (this.lineCount) this.out.write(cursor.down(this.lineCount));
|
||||
|
||||
let prompt = color.bold(`${style.symbol(this.done, this.aborted)} ${this.msg} `)
|
||||
+ `${style.delimiter(this.completing)} `;
|
||||
let length = strip(prompt).length;
|
||||
|
||||
if (this.done && this.suggestions[this.page][this.select]) {
|
||||
prompt += `${this.suggestions[this.page][this.select].title}`;
|
||||
} else {
|
||||
this.rendered = `${this.transform.render(this.input)}`;
|
||||
length += this.rendered.length;
|
||||
prompt += this.rendered;
|
||||
}
|
||||
|
||||
if (!this.done) {
|
||||
this.lineCount = this.suggestions[this.page].length;
|
||||
let suggestions = this.suggestions[this.page].reduce((acc, item, i) =>
|
||||
acc + `\n${i === this.select ? color.cyan(item.title) : item.title}`, '');
|
||||
if (suggestions && !this.isFallback) {
|
||||
prompt += suggestions;
|
||||
if (this.suggestions.length > 1) {
|
||||
this.lineCount++;
|
||||
prompt += color.blue(`\nPage ${this.page+1}/${this.suggestions.length}`);
|
||||
}
|
||||
} else {
|
||||
const fallbackIndex = getIndex(this.choices, this.fallback);
|
||||
const fallbackTitle = fallbackIndex !== undefined
|
||||
? getTitle(this.choices, fallbackIndex)
|
||||
: this.fallback;
|
||||
prompt += `\n${color.gray(fallbackTitle)}`;
|
||||
this.lineCount++;
|
||||
renderOption(v, hovered, isStart, isEnd) {
|
||||
let desc;
|
||||
let prefix = isStart ? figures.arrowUp : isEnd ? figures.arrowDown : ' ';
|
||||
let title = hovered ? color.cyan().underline(v.title) : v.title;
|
||||
prefix = (hovered ? color.cyan(figures.pointer) + ' ' : ' ') + prefix;
|
||||
if (v.description) {
|
||||
desc = ` - ${v.description}`;
|
||||
if (prefix.length + title.length + desc.length >= this.out.columns
|
||||
|| v.description.split(/\r?\n/).length > 1) {
|
||||
desc = '\n' + wrap(v.description, { margin: 3, width: this.out.columns })
|
||||
}
|
||||
}
|
||||
return prefix + ' ' + title + color.gray(desc || '');
|
||||
}
|
||||
|
||||
this.out.write(this.clear + prompt);
|
||||
this.clear = clear(prompt);
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);
|
||||
else this.out.write(clear(this.outputText));
|
||||
super.render();
|
||||
|
||||
if (this.lineCount && !this.done) {
|
||||
let pos = cursor.up(this.lineCount);
|
||||
pos += cursor.left+cursor.to(length);
|
||||
pos += cursor.move(-this.rendered.length+this.cursor*this.scale);
|
||||
this.out.write(pos);
|
||||
let { startIndex, endIndex } = entriesToDisplay(this.select, this.choices.length, this.limit);
|
||||
|
||||
this.outputText = [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(this.completing),
|
||||
this.done && this.suggestions[this.select]
|
||||
? this.suggestions[this.select].title
|
||||
: this.rendered = this.transform.render(this.input)
|
||||
].join(' ');
|
||||
|
||||
if (!this.done) {
|
||||
const suggestions = this.suggestions
|
||||
.slice(startIndex, endIndex)
|
||||
.map((item, i) => this.renderOption(item,
|
||||
this.select === i + startIndex,
|
||||
i === 0 && startIndex > 0,
|
||||
i + startIndex === endIndex - 1 && endIndex < this.choices.length))
|
||||
.join('\n');
|
||||
this.outputText += `\n` + (suggestions || color.gray(this.fallback.title));
|
||||
}
|
||||
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
21
node_modules/prompts/lib/elements/autocompleteMultiselect.js
generated
vendored
21
node_modules/prompts/lib/elements/autocompleteMultiselect.js
generated
vendored
@@ -119,17 +119,23 @@ class AutocompleteMultiselectPrompt extends MultiselectPrompt {
|
||||
this.handleSpaceToggle();
|
||||
} else {
|
||||
this.handleInputChange(c);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
renderInstructions() {
|
||||
return `
|
||||
if (this.instructions === undefined || this.instructions) {
|
||||
if (typeof this.instructions === 'string') {
|
||||
return this.instructions;
|
||||
}
|
||||
return `
|
||||
Instructions:
|
||||
${figures.arrowUp}/${figures.arrowDown}: Highlight option
|
||||
${figures.arrowLeft}/${figures.arrowRight}/[space]: Toggle selection
|
||||
[a,b,c]/delete: Filter choices
|
||||
enter/return: Complete answer
|
||||
`
|
||||
`;
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
renderCurrentInput() {
|
||||
@@ -146,13 +152,12 @@ Filtered results for: ${this.inputValue ? this.inputValue : color.gray('Enter so
|
||||
|
||||
renderDoneOrInstructions() {
|
||||
if (this.done) {
|
||||
const selected = this.value
|
||||
return this.value
|
||||
.filter(e => e.selected)
|
||||
.map(v => v.title)
|
||||
.join(', ');
|
||||
return selected;
|
||||
}
|
||||
|
||||
|
||||
const output = [color.gray(this.hint), this.renderInstructions(), this.renderCurrentInput()];
|
||||
|
||||
if (this.filteredOptions.length && this.filteredOptions[this.cursor].disabled) {
|
||||
@@ -167,14 +172,14 @@ Filtered results for: ${this.inputValue ? this.inputValue : color.gray('Enter so
|
||||
super.render();
|
||||
|
||||
// print prompt
|
||||
|
||||
|
||||
let prompt = [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(false),
|
||||
this.renderDoneOrInstructions()
|
||||
].join(' ');
|
||||
|
||||
|
||||
if (this.showMinError) {
|
||||
prompt += color.red(`You must select a minimum of ${this.minSelected} choices.`);
|
||||
this.showMinError = false;
|
||||
|
||||
26
node_modules/prompts/lib/elements/confirm.js
generated
vendored
26
node_modules/prompts/lib/elements/confirm.js
generated
vendored
@@ -1,6 +1,6 @@
|
||||
const color = require('kleur');
|
||||
const Prompt = require('./prompt');
|
||||
const { style } = require('../util');
|
||||
const { style, clear } = require('../util');
|
||||
const { erase, cursor } = require('sisteransi');
|
||||
|
||||
/**
|
||||
@@ -67,20 +67,18 @@ class ConfirmPrompt extends Prompt {
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);
|
||||
else this.out.write(clear(this.outputText));
|
||||
super.render();
|
||||
|
||||
this.out.write(
|
||||
erase.line +
|
||||
cursor.to(0) +
|
||||
[
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(this.done),
|
||||
this.done
|
||||
? this.value ? this.yesMsg : this.noMsg
|
||||
: color.gray(this.initialValue ? this.yesOption : this.noOption)
|
||||
].join(' ')
|
||||
);
|
||||
|
||||
this.outputText = [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(this.done),
|
||||
this.done ? (this.value ? this.yesMsg : this.noMsg)
|
||||
: color.gray(this.initialValue ? this.yesOption : this.noOption)
|
||||
].join(' ');
|
||||
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
32
node_modules/prompts/lib/elements/date.js
generated
vendored
32
node_modules/prompts/lib/elements/date.js
generated
vendored
@@ -2,7 +2,7 @@
|
||||
|
||||
const color = require('kleur');
|
||||
const Prompt = require('./prompt');
|
||||
const { style, clear, figures, strip } = require('../util');
|
||||
const { style, clear, figures } = require('../util');
|
||||
const { erase, cursor } = require('sisteransi');
|
||||
const { DatePart, Meridiem, Day, Hours, Milliseconds, Minutes, Month, Seconds, Year } = require('../dateparts');
|
||||
|
||||
@@ -26,6 +26,7 @@ const dfltLocales = {
|
||||
weekdaysShort: 'Sun,Mon,Tue,Wed,Thu,Fri,Sat'.split(',')
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* DatePrompt Base Element
|
||||
* @param {Object} opts Options
|
||||
@@ -108,7 +109,7 @@ class DatePrompt extends Prompt {
|
||||
this.out.write('\n');
|
||||
this.close();
|
||||
}
|
||||
|
||||
|
||||
async validate() {
|
||||
let valid = await this.validator(this.value);
|
||||
if (typeof valid === 'string') {
|
||||
@@ -179,34 +180,25 @@ class DatePrompt extends Prompt {
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);
|
||||
else this.out.write(erase.lines(1));
|
||||
else this.out.write(clear(this.outputText));
|
||||
super.render();
|
||||
let clear = erase.line + (this.lines ? erase.down(this.lines) : '') + cursor.to(0);
|
||||
this.lines = 0;
|
||||
|
||||
let error = '';
|
||||
if (this.error) {
|
||||
let lines = this.errorMsg.split('\n');
|
||||
error = lines.reduce((a, l, i) => a + `\n${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
this.lines = lines.length;
|
||||
}
|
||||
|
||||
// Print prompt
|
||||
let prompt = [
|
||||
this.outputText = [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(false),
|
||||
this.parts.reduce((arr, p, idx) => arr.concat(idx === this.cursor && !this.done ? color.cyan().underline(p.toString()) : p), [])
|
||||
.join(''),
|
||||
.join('')
|
||||
].join(' ');
|
||||
|
||||
let position = '';
|
||||
if (this.lines) {
|
||||
position += cursor.up(this.lines);
|
||||
position += cursor.left+cursor.to(strip(prompt).length);
|
||||
|
||||
// Print error
|
||||
if (this.error) {
|
||||
this.outputText += this.errorMsg.split('\n').reduce(
|
||||
(a, l, i) => a + `\n${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
}
|
||||
|
||||
this.out.write(clear+prompt+error+position);
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
107
node_modules/prompts/lib/elements/multiselect.js
generated
vendored
107
node_modules/prompts/lib/elements/multiselect.js
generated
vendored
@@ -3,7 +3,7 @@
|
||||
const color = require('kleur');
|
||||
const { cursor } = require('sisteransi');
|
||||
const Prompt = require('./prompt');
|
||||
const { clear, figures, style } = require('../util');
|
||||
const { clear, figures, style, wrap, entriesToDisplay } = require('../util');
|
||||
|
||||
/**
|
||||
* MultiselectPrompt Base Element
|
||||
@@ -14,6 +14,7 @@ const { clear, figures, style } = require('../util');
|
||||
* @param {String} [opts.warn] Hint shown for disabled choices
|
||||
* @param {Number} [opts.max] Max choices
|
||||
* @param {Number} [opts.cursor=0] Cursor start position
|
||||
* @param {Number} [opts.optionsPerPage=10] Max options to display at once
|
||||
* @param {Stream} [opts.stdin] The Readable stream to listen to
|
||||
* @param {Stream} [opts.stdout] The Writable stream to write readline data to
|
||||
*/
|
||||
@@ -28,12 +29,15 @@ class MultiselectPrompt extends Prompt {
|
||||
this.minSelected = opts.min;
|
||||
this.showMinError = false;
|
||||
this.maxChoices = opts.max;
|
||||
this.value = opts.choices.map((ch, idx) => {
|
||||
this.instructions = opts.instructions;
|
||||
this.optionsPerPage = opts.optionsPerPage || 10;
|
||||
this.value = opts.choices.map((ch, idx) => {
|
||||
if (typeof ch === 'string')
|
||||
ch = {title: ch, value: idx};
|
||||
return {
|
||||
title: ch && (ch.title || ch.value || ch),
|
||||
value: ch && (ch.value || idx),
|
||||
description: ch && ch.description,
|
||||
value: ch && (ch.value === undefined ? idx : ch.value),
|
||||
selected: ch && ch.selected,
|
||||
disabled: ch && ch.disabled
|
||||
};
|
||||
@@ -136,54 +140,81 @@ class MultiselectPrompt extends Prompt {
|
||||
}
|
||||
}
|
||||
|
||||
toggleAll() {
|
||||
if (this.maxChoices !== undefined || this.value[this.cursor].disabled) {
|
||||
return this.bell();
|
||||
}
|
||||
|
||||
const newSelected = !this.value[this.cursor].selected;
|
||||
this.value.filter(v => !v.disabled).forEach(v => v.selected = newSelected);
|
||||
this.render();
|
||||
}
|
||||
|
||||
_(c, key) {
|
||||
if (c === ' ') {
|
||||
this.handleSpaceToggle();
|
||||
} else if (c === 'a') {
|
||||
this.toggleAll();
|
||||
} else {
|
||||
return this.bell();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
renderInstructions() {
|
||||
return `
|
||||
Instructions:
|
||||
${figures.arrowUp}/${figures.arrowDown}: Highlight option
|
||||
${figures.arrowLeft}/${figures.arrowRight}/[space]: Toggle selection
|
||||
enter/return: Complete answer
|
||||
`
|
||||
if (this.instructions === undefined || this.instructions) {
|
||||
if (typeof this.instructions === 'string') {
|
||||
return this.instructions;
|
||||
}
|
||||
return '\nInstructions:\n'
|
||||
+ ` ${figures.arrowUp}/${figures.arrowDown}: Highlight option\n`
|
||||
+ ` ${figures.arrowLeft}/${figures.arrowRight}/[space]: Toggle selection\n`
|
||||
+ (this.maxChoices === undefined ? ` a: Toggle all\n` : '')
|
||||
+ ` enter/return: Complete answer`;
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
renderOption(cursor, v, i) {
|
||||
let title;
|
||||
if (v.disabled) title = cursor === i ? color.gray().underline(v.title) : color.strikethrough().gray(v.title);
|
||||
else title = cursor === i ? color.cyan().underline(v.title) : v.title;
|
||||
return (v.selected ? color.green(figures.radioOn) : figures.radioOff) + ' ' + title
|
||||
renderOption(cursor, v, i, arrowIndicator) {
|
||||
const prefix = (v.selected ? color.green(figures.radioOn) : figures.radioOff) + ' ' + arrowIndicator + ' ';
|
||||
let title, desc;
|
||||
|
||||
if (v.disabled) {
|
||||
title = cursor === i ? color.gray().underline(v.title) : color.strikethrough().gray(v.title);
|
||||
} else {
|
||||
title = cursor === i ? color.cyan().underline(v.title) : v.title;
|
||||
if (cursor === i && v.description) {
|
||||
desc = ` - ${v.description}`;
|
||||
if (prefix.length + title.length + desc.length >= this.out.columns
|
||||
|| v.description.split(/\r?\n/).length > 1) {
|
||||
desc = '\n' + wrap(v.description, { margin: prefix.length, width: this.out.columns });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return prefix + title + color.gray(desc || '');
|
||||
}
|
||||
|
||||
// shared with autocompleteMultiselect
|
||||
paginateOptions(options) {
|
||||
const c = this.cursor;
|
||||
let styledOptions = options.map((v, i) => this.renderOption(c, v, i));
|
||||
const numOfOptionsToRender = 10; // if needed, can add an option to change this.
|
||||
|
||||
let scopedOptions = styledOptions;
|
||||
let hint = '';
|
||||
if (styledOptions.length === 0) {
|
||||
if (options.length === 0) {
|
||||
return color.red('No matches for this query.');
|
||||
} else if (styledOptions.length > numOfOptionsToRender) {
|
||||
let startIndex = c - (numOfOptionsToRender / 2);
|
||||
let endIndex = c + (numOfOptionsToRender / 2);
|
||||
if (startIndex < 0) {
|
||||
startIndex = 0;
|
||||
endIndex = numOfOptionsToRender;
|
||||
} else if (endIndex > options.length) {
|
||||
endIndex = options.length;
|
||||
startIndex = endIndex - numOfOptionsToRender;
|
||||
}
|
||||
scopedOptions = styledOptions.slice(startIndex, endIndex);
|
||||
hint = color.dim('(Move up and down to reveal more choices)');
|
||||
}
|
||||
return '\n' + scopedOptions.join('\n') + '\n' + hint;
|
||||
|
||||
let { startIndex, endIndex } = entriesToDisplay(this.cursor, options.length, this.optionsPerPage);
|
||||
let prefix, styledOptions = [];
|
||||
|
||||
for (let i = startIndex; i < endIndex; i++) {
|
||||
if (i === startIndex && startIndex > 0) {
|
||||
prefix = figures.arrowUp;
|
||||
} else if (i === endIndex - 1 && endIndex < options.length) {
|
||||
prefix = figures.arrowDown;
|
||||
} else {
|
||||
prefix = ' ';
|
||||
}
|
||||
styledOptions.push(this.renderOption(this.cursor, options[i], i, prefix));
|
||||
}
|
||||
|
||||
return '\n' + styledOptions.join('\n');
|
||||
}
|
||||
|
||||
// shared with autocomleteMultiselect
|
||||
@@ -196,13 +227,12 @@ Instructions:
|
||||
|
||||
renderDoneOrInstructions() {
|
||||
if (this.done) {
|
||||
const selected = this.value
|
||||
return this.value
|
||||
.filter(e => e.selected)
|
||||
.map(v => v.title)
|
||||
.join(', ');
|
||||
return selected;
|
||||
}
|
||||
|
||||
|
||||
const output = [color.gray(this.hint), this.renderInstructions()];
|
||||
|
||||
if (this.value[this.cursor].disabled) {
|
||||
@@ -217,7 +247,6 @@ Instructions:
|
||||
super.render();
|
||||
|
||||
// print prompt
|
||||
|
||||
let prompt = [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
|
||||
43
node_modules/prompts/lib/elements/number.js
generated
vendored
43
node_modules/prompts/lib/elements/number.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
const color = require('kleur');
|
||||
const Prompt = require('./prompt');
|
||||
const { cursor, erase } = require('sisteransi');
|
||||
const { style, clear, figures, strip } = require('../util');
|
||||
const { style, figures, clear, lines } = require('../util');
|
||||
|
||||
const isNumber = /[0-9]/;
|
||||
const isDef = any => any !== undefined;
|
||||
@@ -119,6 +119,9 @@ class NumberPrompt extends Prompt {
|
||||
|
||||
up() {
|
||||
this.typed = ``;
|
||||
if(this.value === '') {
|
||||
this.value = this.min - this.inc;
|
||||
}
|
||||
if (this.value >= this.max) return this.bell();
|
||||
this.value += this.inc;
|
||||
this.color = `cyan`;
|
||||
@@ -128,6 +131,9 @@ class NumberPrompt extends Prompt {
|
||||
|
||||
down() {
|
||||
this.typed = ``;
|
||||
if(this.value === '') {
|
||||
this.value = this.min + this.inc;
|
||||
}
|
||||
if (this.value <= this.min) return this.bell();
|
||||
this.value -= this.inc;
|
||||
this.color = `cyan`;
|
||||
@@ -139,6 +145,9 @@ class NumberPrompt extends Prompt {
|
||||
let val = this.value.toString();
|
||||
if (val.length === 0) return this.bell();
|
||||
this.value = this.parse((val = val.slice(0, -1))) || ``;
|
||||
if (this.value !== '' && this.value < this.min) {
|
||||
this.value = this.min;
|
||||
}
|
||||
this.color = `cyan`;
|
||||
this.fire();
|
||||
this.render();
|
||||
@@ -170,32 +179,30 @@ class NumberPrompt extends Prompt {
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
super.render();
|
||||
let clear = erase.line + (this.lines ? erase.down(this.lines) : ``) + cursor.to(0);
|
||||
this.lines = 0;
|
||||
|
||||
let error = ``;
|
||||
if (this.error) {
|
||||
let lines = this.errorMsg.split(`\n`);
|
||||
error += lines.reduce((a, l, i) => a + `\n${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
this.lines = lines.length;
|
||||
if (!this.firstRender) {
|
||||
if (this.outputError)
|
||||
this.out.write(cursor.down(lines(this.outputError) - 1) + clear(this.outputError));
|
||||
this.out.write(clear(this.outputText));
|
||||
}
|
||||
super.render();
|
||||
this.outputError = '';
|
||||
|
||||
let underline = !this.done || (!this.done && !this.placeholder);
|
||||
let prompt = [
|
||||
// Print prompt
|
||||
this.outputText = [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(this.done),
|
||||
underline ? color[this.color]().underline(this.rendered) : this.rendered
|
||||
!this.done || (!this.done && !this.placeholder)
|
||||
? color[this.color]().underline(this.rendered) : this.rendered
|
||||
].join(` `);
|
||||
|
||||
let position = ``;
|
||||
if (this.lines) {
|
||||
position += cursor.up(this.lines);
|
||||
position += cursor.left+cursor.to(strip(prompt).length);
|
||||
// Print error
|
||||
if (this.error) {
|
||||
this.outputError += this.errorMsg.split(`\n`)
|
||||
.reduce((a, l, i) => a + `\n${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
}
|
||||
|
||||
this.out.write(clear+prompt+error+position);
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText + cursor.save + this.outputError + cursor.restore);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
9
node_modules/prompts/lib/elements/prompt.js
generated
vendored
9
node_modules/prompts/lib/elements/prompt.js
generated
vendored
@@ -16,17 +16,16 @@ class Prompt extends EventEmitter {
|
||||
super();
|
||||
|
||||
this.firstRender = true;
|
||||
this.in = opts.in || process.stdin;
|
||||
this.out = opts.out || process.stdout;
|
||||
this.in = opts.stdin || process.stdin;
|
||||
this.out = opts.stdout || process.stdout;
|
||||
this.onRender = (opts.onRender || (() => void 0)).bind(this);
|
||||
|
||||
const rl = readline.createInterface(this.in);
|
||||
readline.emitKeypressEvents(this.in, rl);
|
||||
|
||||
if (this.in.isTTY) this.in.setRawMode(true);
|
||||
|
||||
const isSelect = [ 'SelectPrompt', 'MultiselectPrompt' ].indexOf(this.constructor.name) > -1;
|
||||
const keypress = (str, key) => {
|
||||
let a = action(key);
|
||||
let a = action(key, isSelect);
|
||||
if (a === false) {
|
||||
this._ && this._(str, key);
|
||||
} else if (typeof this[a] === 'function') {
|
||||
|
||||
77
node_modules/prompts/lib/elements/select.js
generated
vendored
77
node_modules/prompts/lib/elements/select.js
generated
vendored
@@ -2,8 +2,8 @@
|
||||
|
||||
const color = require('kleur');
|
||||
const Prompt = require('./prompt');
|
||||
const { style, clear, figures } = require('../util');
|
||||
const { erase, cursor } = require('sisteransi');
|
||||
const { style, clear, figures, wrap, entriesToDisplay } = require('../util');
|
||||
const { cursor } = require('sisteransi');
|
||||
|
||||
/**
|
||||
* SelectPrompt Base Element
|
||||
@@ -14,6 +14,7 @@ const { erase, cursor } = require('sisteransi');
|
||||
* @param {Number} [opts.initial] Index of default value
|
||||
* @param {Stream} [opts.stdin] The Readable stream to listen to
|
||||
* @param {Stream} [opts.stdout] The Writable stream to write readline data to
|
||||
* @param {Number} [opts.optionsPerPage=10] Max options to display at once
|
||||
*/
|
||||
class SelectPrompt extends Prompt {
|
||||
constructor(opts={}) {
|
||||
@@ -22,16 +23,18 @@ class SelectPrompt extends Prompt {
|
||||
this.hint = opts.hint || '- Use arrow-keys. Return to submit.';
|
||||
this.warn = opts.warn || '- This option is disabled';
|
||||
this.cursor = opts.initial || 0;
|
||||
this.choices = opts.choices.map((ch, idx) => {
|
||||
this.choices = opts.choices.map((ch, idx) => {
|
||||
if (typeof ch === 'string')
|
||||
ch = {title: ch, value: idx};
|
||||
return {
|
||||
title: ch && (ch.title || ch.value || ch),
|
||||
value: ch && (ch.value || idx),
|
||||
value: ch && (ch.value === undefined ? idx : ch.value),
|
||||
description: ch && ch.description,
|
||||
selected: ch && ch.selected,
|
||||
disabled: ch && ch.disabled
|
||||
};
|
||||
});
|
||||
this.optionsPerPage = opts.optionsPerPage || 10;
|
||||
this.value = (this.choices[this.cursor] || {}).value;
|
||||
this.clear = clear('');
|
||||
this.render();
|
||||
@@ -107,37 +110,55 @@ class SelectPrompt extends Prompt {
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);
|
||||
else this.out.write(erase.lines(this.choices.length + 1));
|
||||
else this.out.write(clear(this.outputText));
|
||||
super.render();
|
||||
|
||||
let { startIndex, endIndex } = entriesToDisplay(this.cursor, this.choices.length, this.optionsPerPage);
|
||||
|
||||
// Print prompt
|
||||
this.out.write([
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(false),
|
||||
this.done ? this.selection.title : this.selection.disabled
|
||||
? color.yellow(this.warn) : color.gray(this.hint)
|
||||
].join(' '));
|
||||
this.outputText = [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(false),
|
||||
this.done ? this.selection.title : this.selection.disabled
|
||||
? color.yellow(this.warn) : color.gray(this.hint)
|
||||
].join(' ');
|
||||
|
||||
// Print choices
|
||||
if (!this.done) {
|
||||
this.out.write(
|
||||
'\n' +
|
||||
this.choices
|
||||
.map((v, i) => {
|
||||
let title, prefix;
|
||||
if (v.disabled) {
|
||||
title = this.cursor === i ? color.gray().underline(v.title) : color.strikethrough().gray(v.title);
|
||||
prefix = this.cursor === i ? color.bold().gray(figures.pointer) + ' ' : ' ';
|
||||
} else {
|
||||
title = this.cursor === i ? color.cyan().underline(v.title) : v.title;
|
||||
prefix = this.cursor === i ? color.cyan(figures.pointer) + ' ' : ' ';
|
||||
}
|
||||
return `${prefix} ${title}`;
|
||||
})
|
||||
.join('\n')
|
||||
);
|
||||
this.outputText += '\n';
|
||||
for (let i = startIndex; i < endIndex; i++) {
|
||||
let title, prefix, desc = '', v = this.choices[i];
|
||||
|
||||
// Determine whether to display "more choices" indicators
|
||||
if (i === startIndex && startIndex > 0) {
|
||||
prefix = figures.arrowUp;
|
||||
} else if (i === endIndex - 1 && endIndex < this.choices.length) {
|
||||
prefix = figures.arrowDown;
|
||||
} else {
|
||||
prefix = ' ';
|
||||
}
|
||||
|
||||
if (v.disabled) {
|
||||
title = this.cursor === i ? color.gray().underline(v.title) : color.strikethrough().gray(v.title);
|
||||
prefix = (this.cursor === i ? color.bold().gray(figures.pointer) + ' ' : ' ') + prefix;
|
||||
} else {
|
||||
title = this.cursor === i ? color.cyan().underline(v.title) : v.title;
|
||||
prefix = (this.cursor === i ? color.cyan(figures.pointer) + ' ' : ' ') + prefix;
|
||||
if (v.description && this.cursor === i) {
|
||||
desc = ` - ${v.description}`;
|
||||
if (prefix.length + title.length + desc.length >= this.out.columns
|
||||
|| v.description.split(/\r?\n/).length > 1) {
|
||||
desc = '\n' + wrap(v.description, { margin: 3, width: this.out.columns });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.outputText += `${prefix} ${title}${color.gray(desc)}\n`;
|
||||
}
|
||||
}
|
||||
|
||||
this.out.write(this.outputText);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
33
node_modules/prompts/lib/elements/text.js
generated
vendored
33
node_modules/prompts/lib/elements/text.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
const color = require('kleur');
|
||||
const Prompt = require('./prompt');
|
||||
const { cursor } = require('sisteransi');
|
||||
const { style, clear, strip, figures } = require('../util');
|
||||
const { erase, cursor } = require('sisteransi');
|
||||
const { style, clear, lines, figures } = require('../util');
|
||||
|
||||
/**
|
||||
* TextPrompt Base Element
|
||||
@@ -154,36 +154,27 @@ class TextPrompt extends Prompt {
|
||||
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (!this.firstRender) {
|
||||
if (this.outputError)
|
||||
this.out.write(cursor.down(lines(this.outputError) - 1) + clear(this.outputError));
|
||||
this.out.write(clear(this.outputText));
|
||||
}
|
||||
super.render();
|
||||
let erase = (this.lines ? cursor.down(this.lines) : ``)+this.clear;
|
||||
this.lines = 0;
|
||||
this.outputError = '';
|
||||
|
||||
let prompt = [
|
||||
this.outputText = [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(this.done),
|
||||
this.red ? color.red(this.rendered) : this.rendered
|
||||
].join(` `);
|
||||
|
||||
let error = ``;
|
||||
if (this.error) {
|
||||
let lines = this.errorMsg.split(`\n`);
|
||||
error += lines.reduce((a, l, i) => a += `\n${i ? ' ' : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
this.lines = lines.length;
|
||||
this.outputError += this.errorMsg.split(`\n`)
|
||||
.reduce((a, l, i) => a + `\n${i ? ' ' : figures.pointerSmall} ${color.red().italic(l)}`, ``);
|
||||
}
|
||||
|
||||
let position = ``;
|
||||
if (this.lines) {
|
||||
position += cursor.up(this.lines);
|
||||
position += cursor.left+cursor.to(strip(prompt).length);
|
||||
}
|
||||
position += cursor.move(this.placeholder ?
|
||||
-this.initial.length*this.scale :
|
||||
-this.rendered.length+this.cursor*this.scale
|
||||
);
|
||||
|
||||
this.out.write(erase+prompt+error+position);
|
||||
this.clear = clear(prompt+error);
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText + cursor.save + this.outputError + cursor.restore);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
22
node_modules/prompts/lib/elements/toggle.js
generated
vendored
22
node_modules/prompts/lib/elements/toggle.js
generated
vendored
@@ -95,19 +95,19 @@ class TogglePrompt extends Prompt {
|
||||
render() {
|
||||
if (this.closed) return;
|
||||
if (this.firstRender) this.out.write(cursor.hide);
|
||||
else this.out.write(clear(this.outputText));
|
||||
super.render();
|
||||
|
||||
this.out.write(
|
||||
erase.lines(this.first ? 1 : this.msg.split(/\n/g).length) +
|
||||
cursor.to(0) + [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(this.done),
|
||||
this.value ? this.inactive : color.cyan().underline(this.inactive),
|
||||
color.gray('/'),
|
||||
this.value ? color.cyan().underline(this.active) : this.active
|
||||
].join(' ')
|
||||
);
|
||||
this.outputText = [
|
||||
style.symbol(this.done, this.aborted),
|
||||
color.bold(this.msg),
|
||||
style.delimiter(this.done),
|
||||
this.value ? this.inactive : color.cyan().underline(this.inactive),
|
||||
color.gray('/'),
|
||||
this.value ? color.cyan().underline(this.active) : this.active
|
||||
].join(' ');
|
||||
|
||||
this.out.write(erase.line + cursor.to(0) + this.outputText);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
18
node_modules/prompts/lib/index.js
generated
vendored
18
node_modules/prompts/lib/index.js
generated
vendored
@@ -2,7 +2,7 @@
|
||||
|
||||
const prompts = require('./prompts');
|
||||
|
||||
const passOn = ['suggest', 'format', 'onState', 'validate', 'onRender'];
|
||||
const passOn = ['suggest', 'format', 'onState', 'validate', 'onRender', 'type'];
|
||||
const noop = () => {};
|
||||
|
||||
/**
|
||||
@@ -16,7 +16,7 @@ async function prompt(questions=[], { onSubmit=noop, onCancel=noop }={}) {
|
||||
const answers = {};
|
||||
const override = prompt._override || {};
|
||||
questions = [].concat(questions);
|
||||
let answer, question, quit, name, type;
|
||||
let answer, question, quit, name, type, lastPrompt;
|
||||
|
||||
const getFormattedAnswer = async (question, answer, skipValidation = false) => {
|
||||
if (!skipValidation && question.validate && question.validate(answer) !== true) {
|
||||
@@ -28,13 +28,22 @@ async function prompt(questions=[], { onSubmit=noop, onCancel=noop }={}) {
|
||||
for (question of questions) {
|
||||
({ name, type } = question);
|
||||
|
||||
// evaluate type first and skip if type is a falsy value
|
||||
if (typeof type === 'function') {
|
||||
type = await type(answer, { ...answers }, question)
|
||||
question['type'] = type
|
||||
}
|
||||
if (!type) continue;
|
||||
|
||||
// if property is a function, invoke it unless it's a special function
|
||||
for (let key in question) {
|
||||
if (passOn.includes(key)) continue;
|
||||
let value = question[key];
|
||||
question[key] = typeof value === 'function' ? await value(answer, { ...answers }, question) : value;
|
||||
question[key] = typeof value === 'function' ? await value(answer, { ...answers }, lastPrompt) : value;
|
||||
}
|
||||
|
||||
lastPrompt = question;
|
||||
|
||||
if (typeof question.message !== 'string') {
|
||||
throw new Error('prompt message is required');
|
||||
}
|
||||
@@ -42,9 +51,6 @@ async function prompt(questions=[], { onSubmit=noop, onCancel=noop }={}) {
|
||||
// update vars in case they changed
|
||||
({ name, type } = question);
|
||||
|
||||
// skip if type is a falsy value
|
||||
if (!type) continue;
|
||||
|
||||
if (prompts[type] === void 0) {
|
||||
throw new Error(`prompt type (${type}) is not defined`);
|
||||
}
|
||||
|
||||
13
node_modules/prompts/lib/util/action.js
generated
vendored
13
node_modules/prompts/lib/util/action.js
generated
vendored
@@ -1,6 +1,8 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = key => {
|
||||
module.exports = (key, isSelect) => {
|
||||
if (key.meta) return;
|
||||
|
||||
if (key.ctrl) {
|
||||
if (key.name === 'a') return 'first';
|
||||
if (key.name === 'c') return 'abort';
|
||||
@@ -8,6 +10,11 @@ module.exports = key => {
|
||||
if (key.name === 'e') return 'last';
|
||||
if (key.name === 'g') return 'reset';
|
||||
}
|
||||
|
||||
if (isSelect) {
|
||||
if (key.name === 'j') return 'down';
|
||||
if (key.name === 'k') return 'up';
|
||||
}
|
||||
|
||||
if (key.name === 'return') return 'submit';
|
||||
if (key.name === 'enter') return 'submit'; // ctrl + J
|
||||
@@ -18,6 +25,10 @@ module.exports = key => {
|
||||
if (key.name === 'tab') return 'next';
|
||||
if (key.name === 'pagedown') return 'nextPage';
|
||||
if (key.name === 'pageup') return 'prevPage';
|
||||
// TODO create home() in prompt types (e.g. TextPrompt)
|
||||
if (key.name === 'home') return 'home';
|
||||
// TODO create end() in prompt types (e.g. TextPrompt)
|
||||
if (key.name === 'end') return 'end';
|
||||
|
||||
if (key.name === 'up') return 'up';
|
||||
if (key.name === 'down') return 'down';
|
||||
|
||||
2
node_modules/prompts/lib/util/clear.js
generated
vendored
2
node_modules/prompts/lib/util/clear.js
generated
vendored
@@ -14,5 +14,5 @@ module.exports = function(prompt, perLine = process.stdout.columns) {
|
||||
rows += 1 + Math.floor(Math.max(width(line) - 1, 0) / perLine);
|
||||
}
|
||||
|
||||
return (erase.line + cursor.prevLine()).repeat(rows - 1) + erase.line + cursor.to(0);
|
||||
return erase.lines(rows);
|
||||
};
|
||||
|
||||
21
node_modules/prompts/lib/util/entriesToDisplay.js
generated
vendored
Normal file
21
node_modules/prompts/lib/util/entriesToDisplay.js
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Determine what entries should be displayed on the screen, based on the
|
||||
* currently selected index and the maximum visible. Used in list-based
|
||||
* prompts like `select` and `multiselect`.
|
||||
*
|
||||
* @param {number} cursor the currently selected entry
|
||||
* @param {number} total the total entries available to display
|
||||
* @param {number} [maxVisible] the number of entries that can be displayed
|
||||
*/
|
||||
module.exports = (cursor, total, maxVisible) => {
|
||||
maxVisible = maxVisible || total;
|
||||
|
||||
let startIndex = Math.min(total- maxVisible, cursor - Math.floor(maxVisible / 2));
|
||||
if (startIndex < 0) startIndex = 0;
|
||||
|
||||
let endIndex = Math.min(startIndex + maxVisible, total);
|
||||
|
||||
return { startIndex, endIndex };
|
||||
};
|
||||
5
node_modules/prompts/lib/util/index.js
generated
vendored
5
node_modules/prompts/lib/util/index.js
generated
vendored
@@ -5,5 +5,8 @@ module.exports = {
|
||||
clear: require('./clear'),
|
||||
style: require('./style'),
|
||||
strip: require('./strip'),
|
||||
figures: require('./figures')
|
||||
figures: require('./figures'),
|
||||
lines: require('./lines'),
|
||||
wrap: require('./wrap'),
|
||||
entriesToDisplay: require('./entriesToDisplay')
|
||||
};
|
||||
|
||||
11
node_modules/prompts/lib/util/lines.js
generated
vendored
Normal file
11
node_modules/prompts/lib/util/lines.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
const strip = require('./strip');
|
||||
|
||||
module.exports = function (msg, perLine = process.stdout.columns) {
|
||||
let lines = String(strip(msg) || '').split(/\r?\n/);
|
||||
|
||||
if (!perLine) return lines.length;
|
||||
return lines.map(l => Math.ceil(l.length / perLine))
|
||||
.reduce((a, b) => a + b);
|
||||
};
|
||||
27
node_modules/prompts/lib/util/wrap.js
generated
vendored
Normal file
27
node_modules/prompts/lib/util/wrap.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @param {string} msg The message to wrap
|
||||
* @param {object} [opts]
|
||||
* @param {number|string} [opts.margin] Left margin
|
||||
* @param {number} [opts.width] Maximum characters per line including the margin
|
||||
*/
|
||||
module.exports = (msg, opts = {}) => {
|
||||
const tab = Number.isSafeInteger(parseInt(opts.margin))
|
||||
? new Array(parseInt(opts.margin)).fill(' ').join('')
|
||||
: (opts.margin || '');
|
||||
|
||||
const width = opts.width || process.stdout.columns;
|
||||
|
||||
return (msg || '').split(/\r?\n/g)
|
||||
.map(line => line
|
||||
.split(/\s+/g)
|
||||
.reduce((arr, w) => {
|
||||
if (w.length + tab.length >= width || arr[arr.length - 1].length + w.length + 1 < width)
|
||||
arr[arr.length - 1] += ` ${w}`;
|
||||
else arr.push(`${tab}${w}`);
|
||||
return arr;
|
||||
}, [ tab ])
|
||||
.join('\n'))
|
||||
.join('\n');
|
||||
};
|
||||
46
node_modules/prompts/package.json
generated
vendored
46
node_modules/prompts/package.json
generated
vendored
@@ -1,33 +1,27 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"prompts@2.1.0",
|
||||
"/Users/pjquirk/Source/GitHub/actions/labeler"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "prompts@2.1.0",
|
||||
"_id": "prompts@2.1.0",
|
||||
"_from": "prompts@^2.0.1",
|
||||
"_id": "prompts@2.3.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg==",
|
||||
"_integrity": "sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==",
|
||||
"_location": "/prompts",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "prompts@2.1.0",
|
||||
"raw": "prompts@^2.0.1",
|
||||
"name": "prompts",
|
||||
"escapedName": "prompts",
|
||||
"rawSpec": "2.1.0",
|
||||
"rawSpec": "^2.0.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.1.0"
|
||||
"fetchSpec": "^2.0.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/jest/jest-cli"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/prompts/-/prompts-2.1.0.tgz",
|
||||
"_spec": "2.1.0",
|
||||
"_where": "/Users/pjquirk/Source/GitHub/actions/labeler",
|
||||
"_resolved": "https://registry.npmjs.org/prompts/-/prompts-2.3.2.tgz",
|
||||
"_shasum": "480572d89ecf39566d2bd3fe2c9fccb7c4c0b068",
|
||||
"_spec": "prompts@^2.0.1",
|
||||
"_where": "/Users/dakale/dev/GitHub/actions/labeler/node_modules/jest/node_modules/jest-cli",
|
||||
"author": {
|
||||
"name": "Terkel Gjervig",
|
||||
"email": "terkel@terkel.com",
|
||||
@@ -36,18 +30,20 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/terkelg/prompts/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"kleur": "^3.0.2",
|
||||
"sisteransi": "^1.0.0"
|
||||
"kleur": "^3.0.3",
|
||||
"sisteransi": "^1.0.4"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Lightweight, beautiful and user-friendly prompts",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.2.3",
|
||||
"@babel/core": "^7.3.3",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
|
||||
"@babel/preset-env": "^7.3.4",
|
||||
"@babel/cli": "^7.8.4",
|
||||
"@babel/core": "^7.8.7",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
|
||||
"@babel/preset-env": "^7.8.7",
|
||||
"tap-spec": "^5.0.0",
|
||||
"tape": "^4.10.1"
|
||||
"tape": "^4.13.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 6"
|
||||
@@ -85,5 +81,5 @@
|
||||
"start": "node lib/index.js",
|
||||
"test": "tape test/*.js | tap-spec"
|
||||
},
|
||||
"version": "2.1.0"
|
||||
"version": "2.3.2"
|
||||
}
|
||||
|
||||
86
node_modules/prompts/readme.md
generated
vendored
86
node_modules/prompts/readme.md
generated
vendored
@@ -33,7 +33,7 @@
|
||||
* **Promised**: uses promises and `async`/`await`. No callback hell.
|
||||
* **Flexible**: all prompts are independent and can be used on their own.
|
||||
* **Testable**: provides a way to submit answers programmatically.
|
||||
* **Unified**: consistent experience across all prompts.
|
||||
* **Unified**: consistent experience across all [prompts](#-types).
|
||||
|
||||
|
||||

|
||||
@@ -78,7 +78,7 @@ const prompts = require('prompts');
|
||||
|
||||
### Single Prompt
|
||||
|
||||
Prompt with a single prompt object. Returns object with the response.
|
||||
Prompt with a single prompt object. Returns an object with the response.
|
||||
|
||||
```js
|
||||
const prompts = require('prompts');
|
||||
@@ -96,7 +96,7 @@ const prompts = require('prompts');
|
||||
|
||||
### Prompt Chain
|
||||
|
||||
Prompt with a list of prompt objects. Returns object with response.
|
||||
Prompt with a list of prompt objects. Returns an object with the responses.
|
||||
Make sure to give each prompt a unique `name` property to prevent overwriting values.
|
||||
|
||||
```js
|
||||
@@ -191,7 +191,7 @@ Return `true` to quit the prompt chain and return all collected responses so far
|
||||
```js
|
||||
(async () => {
|
||||
const questions = [{ ... }];
|
||||
const onSubmit = (prompt, response) => console.log(`Thanks I got ${response} from ${prompt.name}`);
|
||||
const onSubmit = (prompt, answer) => console.log(`Thanks I got ${answer} from ${prompt.name}`);
|
||||
const response = await prompts(questions, { onSubmit });
|
||||
})();
|
||||
```
|
||||
@@ -415,7 +415,7 @@ Type: `Function`
|
||||
|
||||
Callback for when the state of the current prompt changes.
|
||||
The function signature is `(state)` where `state` is an object with a snapshot of the current state.
|
||||
The state object have two properties `value` and `aborted`. E.g `{ value: 'This is ', aborted: false }`
|
||||
The state object has two properties `value` and `aborted`. E.g `{ value: 'This is ', aborted: false }`
|
||||
|
||||
|
||||

|
||||
@@ -423,6 +423,21 @@ The state object have two properties `value` and `aborted`. E.g `{ value: 'This
|
||||
|
||||
## ❯ Types
|
||||
|
||||
* [text](#textmessage-initial-style)
|
||||
* [password](#passwordmessage-initial)
|
||||
* [invisible](#invisiblemessage-initial)
|
||||
* [number](#numbermessage-initial-max-min-style)
|
||||
* [confirm](#confirmmessage-initial)
|
||||
* [list](#listmessage-initial)
|
||||
* [toggle](#togglemessage-initial-active-inactive)
|
||||
* [select](#selectmessage-choices-initial-hint-warn)
|
||||
* [multiselect](#multiselectmessage-choices-initial-max-hint-warn)
|
||||
* [autocompleteMultiselect](#multiselectmessage-choices-initial-max-hint-warn)
|
||||
* [autocomplete](#autocompletemessage-choices-initial-suggest-limit-style)
|
||||
* [date](#datemessage-initial-warn)
|
||||
|
||||
***
|
||||
|
||||
### text(message, [initial], [style])
|
||||
> Text prompt for free text input.
|
||||
|
||||
@@ -448,8 +463,11 @@ Hit <kbd>tab</kbd> to autocomplete to `initial` value when provided.
|
||||
| format | `function` | Receive user input. The returned value will be added to the response object |
|
||||
| validate | `function` | Receive user input. Should return `true` if the value is valid, and an error message `String` otherwise. If `false` is returned, a default error message is shown |
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two propetires: `value` and `aborted` |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### password(message, [initial])
|
||||
> Password prompt with masked input.
|
||||
@@ -475,8 +493,11 @@ This prompt is a similar to a prompt of type `'text'` with `style` set to `'pass
|
||||
| format | `function` | Receive user input. The returned value will be added to the response object |
|
||||
| validate | `function` | Receive user input. Should return `true` if the value is valid, and an error message `String` otherwise. If `false` is returned, a default error message is shown |
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two propetires: `value` and `aborted` |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### invisible(message, [initial])
|
||||
> Prompts user for invisible text input.
|
||||
@@ -503,8 +524,11 @@ This prompt is a similar to a prompt of type `'text'` with style set to `'invisi
|
||||
| format | `function` | Receive user input. The returned value will be added to the response object |
|
||||
| validate | `function` | Receive user input. Should return `true` if the value is valid, and an error message `String` otherwise. If `false` is returned, a default error message is shown |
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two propetires: `value` and `aborted` |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### number(message, initial, [max], [min], [style])
|
||||
> Prompts user for number input.
|
||||
@@ -540,7 +564,11 @@ You can type in numbers and use <kbd>up</kbd>/<kbd>down</kbd> to increase/decrea
|
||||
| increment | `number` | Increment step when using <kbd>arrow</kbd> keys. Defaults to `1` |
|
||||
| style | `string` | Render style (`default`, `password`, `invisible`, `emoji`). Defaults to `default` |
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two propetires: `value` and `aborted` |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### confirm(message, [initial])
|
||||
> Classic yes/no prompt.
|
||||
@@ -569,6 +597,10 @@ Hit <kbd>y</kbd> or <kbd>n</kbd> to confirm/reject.
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### list(message, [initial])
|
||||
> List prompt that return an array.
|
||||
|
||||
@@ -595,8 +627,11 @@ string separated by `separator`.
|
||||
| format | `function` | Receive user input. The returned value will be added to the response object |
|
||||
| separator | `string` | String separator. Will trim all white-spaces from start and end of string. Defaults to `','` |
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two propetires: `value` and `aborted` |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### toggle(message, [initial], [active], [inactive])
|
||||
> Interactive toggle/switch prompt.
|
||||
@@ -626,7 +661,11 @@ Use tab or <kbd>arrow keys</kbd>/<kbd>tab</kbd>/<kbd>space</kbd> to switch betwe
|
||||
| active | `string` | Text for `active` state. Defaults to `'on'` |
|
||||
| inactive | `string` | Text for `inactive` state. Defaults to `'off'` |
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two propetires: `value` and `aborted` |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### select(message, choices, [initial], [hint], [warn])
|
||||
> Interactive select prompt.
|
||||
@@ -642,7 +681,7 @@ Use <kbd>up</kbd>/<kbd>down</kbd> to navigate. Use <kbd>tab</kbd> to cycle the l
|
||||
name: 'value',
|
||||
message: 'Pick a color',
|
||||
choices: [
|
||||
{ title: 'Red', value: '#ff0000' },
|
||||
{ title: 'Red', description: 'This option has a description', value: '#ff0000' },
|
||||
{ title: 'Green', value: '#00ff00', disabled: true },
|
||||
{ title: 'Blue', value: '#0000ff' }
|
||||
],
|
||||
@@ -658,10 +697,14 @@ Use <kbd>up</kbd>/<kbd>down</kbd> to navigate. Use <kbd>tab</kbd> to cycle the l
|
||||
| format | `function` | Receive user input. The returned value will be added to the response object |
|
||||
| hint | `string` | Hint to display to the user |
|
||||
| warn | `string` | Message to display when selecting a disabled option |
|
||||
| choices | `Array` | Array of strings or choices objects `[{ title, value, disabled }, ...]`. The choice's index in the array will be used as its value if it is not specified. |
|
||||
| choices | `Array` | Array of strings or choices objects `[{ title, description, value, disabled }, ...]`. The choice's index in the array will be used as its value if it is not specified. |
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### multiselect(message, choices, [initial], [max], [hint], [warn])
|
||||
### autocompleteMultiselect(same)
|
||||
> Interactive multi-select prompt.
|
||||
@@ -693,7 +736,9 @@ By default this prompt returns an `array` containing the **values** of the selec
|
||||
| ----- | :--: | ----------- |
|
||||
| message | `string` | Prompt message to display |
|
||||
| format | `function` | Receive user input. The returned value will be added to the response object |
|
||||
| instructions | `string` or `boolean` | Prompt instructions to display |
|
||||
| choices | `Array` | Array of strings or choices objects `[{ title, value, disabled }, ...]`. The choice's index in the array will be used as its value if it is not specified. |
|
||||
| optionsPerPage | `number` | Number of options displayed per page (default: 10) |
|
||||
| min | `number` | Min select - will display error |
|
||||
| max | `number` | Max select |
|
||||
| hint | `string` | Hint to display to the user |
|
||||
@@ -704,6 +749,9 @@ By default this prompt returns an `array` containing the **values** of the selec
|
||||
This is one of the few prompts that don't take a initial value.
|
||||
If you want to predefine selected values, give the choice object an `selected` property of `true`.
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### autocomplete(message, choices, [initial], [suggest], [limit], [style])
|
||||
> Interactive auto complete prompt.
|
||||
@@ -742,9 +790,9 @@ You can overwrite how choices are being filtered by passing your own suggest fun
|
||||
| limit | `number` | Max number of results to show. Defaults to `10` |
|
||||
| style | `string` | Render style (`default`, `password`, `invisible`, `emoji`). Defaults to `'default'` |
|
||||
| initial | `string \| number` | Default initial value |
|
||||
| fallback | `function` | Fallback message when no match is found. Defaults to `initial` value if provided |
|
||||
| fallback | `string` | Fallback message when no match is found. Defaults to `initial` value if provided |
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two propetires: `value` and `aborted` |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
Example on what a `suggest` function might look like:
|
||||
```js
|
||||
@@ -752,6 +800,9 @@ const suggestByTitle = (input, choices) =>
|
||||
Promise.resolve(choices.filter(i => i.title.slice(0, input.length) === input))
|
||||
```
|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
### date(message, [initial], [warn])
|
||||
> Interactive date prompt.
|
||||
@@ -780,7 +831,7 @@ Use <kbd>left</kbd>/<kbd>right</kbd>/<kbd>tab</kbd> to navigate. Use <kbd>up</kb
|
||||
| mask | `string` | The format mask of the date. See below for more information.<br />Default: `YYYY-MM-DD HH:mm:ss` |
|
||||
| validate | `function` | Receive user input. Should return `true` if the value is valid, and an error message `String` otherwise. If `false` is returned, a default error message is shown |
|
||||
| onRender | `function` | On render callback. Keyword `this` refers to the current prompt |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two propetires: `value` and `aborted` |
|
||||
| onState | `function` | On state change callback. Function signature is an `object` with two properties: `value` and `aborted` |
|
||||
|
||||
Default locales:
|
||||
|
||||
@@ -808,6 +859,9 @@ Default locales:
|
||||
|
||||

|
||||
|
||||
**↑ back to:** [Prompt types](#-types)
|
||||
|
||||
***
|
||||
|
||||
## ❯ Credit
|
||||
Many of the prompts are based on the work of [derhuerst](https://github.com/derhuerst).
|
||||
|
||||
Reference in New Issue
Block a user