StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
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.
119 lines
2.1 KiB
119 lines
2.1 KiB
'use strict';
|
|
|
|
/**
|
|
* `password` type prompt
|
|
*/
|
|
|
|
var util = require('util');
|
|
var observe = require('../utils/events');
|
|
var utils = require('../utils/');
|
|
var Base = require('./base');
|
|
|
|
function mask(input) {
|
|
input = String(input);
|
|
if (input.length === 0) {
|
|
return '';
|
|
}
|
|
return new Array(input.length + 1).join('*');
|
|
}
|
|
|
|
/**
|
|
* 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();
|
|
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Render the prompt to screen
|
|
* @return {Prompt} self
|
|
*/
|
|
|
|
Prompt.prototype.render = function(error) {
|
|
var cursor = 0;
|
|
var message = this.getQuestion();
|
|
|
|
if (this.status === 'answered') {
|
|
message += utils.chalk.cyan(mask(this.answer));
|
|
} else {
|
|
message += mask(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) {
|
|
return this.opt.default != null ? this.opt.default : '';
|
|
}
|
|
return input;
|
|
};
|
|
|
|
Prompt.prototype.onEnd = function(state) {
|
|
this.status = 'answered';
|
|
this.answer = state.value;
|
|
|
|
// Re-render prompt
|
|
this.render();
|
|
|
|
this.screen.done();
|
|
this.done(state.value);
|
|
};
|
|
|
|
Prompt.prototype.onError = function(state) {
|
|
this.render(state.isValid);
|
|
this.rl.output.unmute();
|
|
};
|
|
|
|
/**
|
|
* When user type
|
|
*/
|
|
|
|
Prompt.prototype.onKeypress = function() {
|
|
this.render();
|
|
};
|
|
|