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.
77 lines
1.3 KiB
77 lines
1.3 KiB
/**
|
|
* Sticky bottom bar user interface
|
|
*/
|
|
|
|
var util = require("util");
|
|
var through = require("through");
|
|
var Base = require("./baseUI");
|
|
var utils = require("../utils/utils");
|
|
|
|
|
|
/**
|
|
* Module exports
|
|
*/
|
|
|
|
module.exports = Prompt;
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
|
|
function Prompt( opt ) {
|
|
opt || (opt = {});
|
|
|
|
Base.apply( this, arguments );
|
|
|
|
this.log = through( this.writeLog.bind(this) );
|
|
this.bottomBar = opt.bottomBar || "";
|
|
this.render();
|
|
}
|
|
util.inherits( Prompt, Base );
|
|
|
|
|
|
/**
|
|
* Render the prompt to screen
|
|
* @return {Prompt} self
|
|
*/
|
|
|
|
Prompt.prototype.render = function() {
|
|
utils.writeMessage ( this, this.bottomBar );
|
|
|
|
return this;
|
|
};
|
|
|
|
|
|
/**
|
|
* Update the bottom bar content and rerender
|
|
* @param {String} bottomBar Bottom bar content
|
|
* @return {Prompt} self
|
|
*/
|
|
|
|
Prompt.prototype.updateBottomBar = function( bottomBar ) {
|
|
this.bottomBar = bottomBar;
|
|
return this.clean().render();
|
|
};
|
|
|
|
|
|
/**
|
|
* Rerender the prompt
|
|
* @return {Prompt} self
|
|
*/
|
|
|
|
Prompt.prototype.writeLog = function( data ) {
|
|
this.clean();
|
|
this.write.call( this, this.enforceLF(data.toString()) );
|
|
return this.render();
|
|
};
|
|
|
|
|
|
/**
|
|
* Make sure line end on a line feed
|
|
* @param {String} str Input string
|
|
* @return {String} The input string with a final line feed
|
|
*/
|
|
|
|
Prompt.prototype.enforceLF = function( str ) {
|
|
return str.match(/[\r\n]$/) ? str : str + "\n";
|
|
};
|
|
|