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.
44 lines
866 B
44 lines
866 B
/**
|
|
* Choice object
|
|
* Normalize input as choice object
|
|
*/
|
|
|
|
var _ = require("lodash");
|
|
|
|
/**
|
|
* Module exports
|
|
*/
|
|
|
|
module.exports = Choice;
|
|
|
|
|
|
/**
|
|
* Choice object
|
|
* @constructor
|
|
* @param {String|Object} val Choice value. If an object is passed, it should contains
|
|
* at least one of `value` or `name` property
|
|
*/
|
|
|
|
function Choice( val, answers ) {
|
|
|
|
// Don't process Choice and Separator object
|
|
if ( val instanceof Choice || val.type === "separator" ) {
|
|
return val;
|
|
}
|
|
|
|
if ( _.isString(val) ) {
|
|
this.name = val;
|
|
this.value = val;
|
|
} else {
|
|
_.extend( this, val, {
|
|
name: val.name || val.value,
|
|
value: val.hasOwnProperty("value") ? val.value : val.name
|
|
});
|
|
}
|
|
|
|
if ( _.isFunction(val.disabled) ) {
|
|
this.disabled = val.disabled( answers );
|
|
} else {
|
|
this.disabled = val.disabled;
|
|
}
|
|
}
|
|
|