inquirer2
Version:
Lighter, faster alternative to inquirer. A collection of common interactive command line user interfaces.
183 lines (139 loc) • 3.8 kB
JavaScript
'use strict';
/**
* `rawlist` type prompt
*/
var util = require('util');
var Separator = require('../objects/separator');
var Paginator = require('../utils/paginator');
var observe = require('../utils/events');
var utils = require('../utils/');
var Base = require('./base');
/**
* Module exports
*/
module.exports = Prompt;
/**
* Constructor
*/
function Prompt() {
Base.apply(this, arguments);
if (!this.opt.choices) {
this.throwParamError('choices');
}
this.opt.validChoices = this.opt.choices.filter(Separator.exclude);
this.selected = 0;
this.rawDefault = 0;
utils.extend(this.opt, {
validate: function(index) {
return this.opt.choices.getChoice(index) != null;
}.bind(this)
});
var def = this.opt.default;
if (utils.isNumber(def) && def >= 0 && def < this.opt.choices.realLength) {
this.selected = this.rawDefault = def;
}
// Make sure no default is set (so it won't be printed)
this.opt.default = null;
this.paginator = new Paginator();
}
util.inherits(Prompt, Base);
/**
* Start the Inquiry session
* @param {Function} cb Callback when prompt is done
* @return {this}
*/
Prompt.prototype._run = function(cb) {
this.done = cb;
// Once user confirm (enter key)
var events = observe(this.rl);
var submit = events.line.map(this.filterInput.bind(this));
var validation = this.handleSubmitEvents(submit);
validation.success.forEach(this.onEnd.bind(this));
validation.error.forEach(this.onError.bind(this));
events.keypress.takeUntil(validation.success).forEach(this.onKeypress.bind(this));
// Init the prompt
this.render();
return this;
};
/**
* Render the prompt to screen
* @return {Prompt} self
*/
Prompt.prototype.render = function(error) {
// Render question
var cursor = 0;
var message = this.getQuestion();
if (this.status === 'answered') {
message += utils.chalk.cyan(this.opt.choices.getChoice(this.selected).name);
} else {
var choicesStr = renderChoices(this.opt.choices, this.selected);
message += this.paginator.paginate(choicesStr, this.selected, this.opt.pageSize);
message += '\n Answer: ';
}
message += this.rl.line;
if (error) {
message += '\n' + utils.chalk.red('>> ') + error;
cursor++;
}
this.screen.render(message, {
cursor: cursor
});
};
/**
* When user press `enter` key
*/
Prompt.prototype.filterInput = function(input) {
if (input == null || input === '') {
return this.rawDefault;
} else {
return input - 1;
}
};
Prompt.prototype.onEnd = function(state) {
this.status = 'answered';
this.selected = state.value;
var selectedChoice = this.opt.choices.getChoice(this.selected);
// Re-render prompt
this.render();
this.screen.done();
this.done(selectedChoice.value);
};
Prompt.prototype.onError = function() {
this.render('Please enter a valid index');
};
/**
* When user press a key
*/
Prompt.prototype.onKeypress = function() {
var index = this.rl.line.length ? Number(this.rl.line) - 1 : 0;
if (this.opt.choices.getChoice(index)) {
this.selected = index;
} else {
this.selected = undefined;
}
this.render();
};
/**
* Function for rendering list choices
* @param {Number} pointer Position of the pointer
* @return {String} Rendered content
*/
function renderChoices(choices, pointer) {
var output = '';
var separatorOffset = 0;
choices.forEach(function(choice, i) {
output += '\n ';
if (choice.type === 'separator') {
separatorOffset++;
output += ' ' + choice;
return;
}
var index = i - separatorOffset;
var display = (index + 1) + ') ' + choice.name;
if (index === pointer) {
display = utils.chalk.cyan(display);
}
output += display;
});
return output;
}