mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
153 lines
3.1 KiB
153 lines
3.1 KiB
/**
|
|
* `password` type prompt
|
|
*/
|
|
|
|
var _ = require("lodash");
|
|
var util = require("util");
|
|
var chalk = require("chalk");
|
|
var Base = require("./base");
|
|
var utils = require("../utils/utils");
|
|
var observe = require("../utils/events");
|
|
|
|
/**
|
|
* Module exports
|
|
*/
|
|
|
|
module.exports = Prompt;
|
|
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
|
|
function Prompt() {
|
|
return Base.apply( this, arguments );
|
|
}
|
|
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;
|
|
|
|
var events = observe(this.rl);
|
|
|
|
// Once user confirm (enter key)
|
|
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
|
|
this.render();
|
|
this.rl.output.mute();
|
|
|
|
return this;
|
|
};
|
|
|
|
|
|
/**
|
|
* Render the prompt to screen
|
|
* @return {Prompt} self
|
|
*/
|
|
|
|
Prompt.prototype.render = function() {
|
|
var message = this.getQuestion();
|
|
utils.writeMessage( this, message );
|
|
|
|
return this;
|
|
};
|
|
|
|
|
|
/**
|
|
* When user press `enter` key
|
|
*/
|
|
|
|
Prompt.prototype.onSubmit = function( input ) {
|
|
var value = input;
|
|
if ( !value ) {
|
|
var value = this.opt.default != null ? this.opt.default : "";
|
|
}
|
|
|
|
this.rl.output.unmute();
|
|
this.write("\n"); // manually output the line return as the readline was muted
|
|
|
|
this.validate( value, function( isValid ) {
|
|
if ( isValid === true ) {
|
|
this.status = "answered";
|
|
|
|
// Re-render prompt
|
|
this.clean(1).render();
|
|
|
|
// Mask answer
|
|
var mask = new Array( value.toString().length + 1 ).join("*");
|
|
|
|
// Render answer
|
|
this.write( chalk.cyan(mask) + "\n" );
|
|
|
|
this.lineObs.dispose();
|
|
this.keypressObs.dispose();
|
|
this.done( value );
|
|
} else {
|
|
this.error( isValid ).clean().render();
|
|
this.rl.output.mute();
|
|
}
|
|
}.bind(this));
|
|
};
|
|
|
|
/**
|
|
* When user press `enter` key
|
|
*/
|
|
|
|
Prompt.prototype.filterInput = function( input ) {
|
|
if ( !input ) {
|
|
return this.opt.default != null ? this.opt.default : "";
|
|
}
|
|
return input;
|
|
};
|
|
|
|
Prompt.prototype.onEnd = function( state ) {
|
|
this.rl.output.unmute();
|
|
this.write("\n"); // manually output the line return as the readline was muted
|
|
|
|
this.status = "answered";
|
|
|
|
// Re-render prompt
|
|
this.clean(1).render();
|
|
|
|
// Mask answer
|
|
var mask = new Array( state.value.toString().length + 1 ).join("*");
|
|
|
|
// Render answer
|
|
this.write( chalk.cyan(mask) + "\n" );
|
|
|
|
this.done( state.value );
|
|
};
|
|
|
|
Prompt.prototype.onError = function( state ) {
|
|
this.rl.output.unmute();
|
|
this.write("\n"); // manually output the line return as the readline was muted
|
|
|
|
this.error( state.isValid ).clean().render();
|
|
this.rl.output.mute();
|
|
};
|
|
|
|
/**
|
|
* When user type
|
|
*/
|
|
|
|
Prompt.prototype.onKeypress = function() {
|
|
this.rl.output.unmute();
|
|
this.cacheCursorPos().clean().render();
|
|
var mask = new Array( this.rl.line.length + 1 ).join("*");
|
|
this.write(mask).restoreCursorPos();
|
|
this.rl.output.mute();
|
|
};
|
|
|