wishthis/node_modules/inquirer/lib/objects/choice.js

38 lines
1 KiB
JavaScript
Raw Permalink Normal View History

2022-01-21 08:28:41 +00:00
'use strict';
/**
* Choice object
* Normalize input as choice object
* @constructor
* @param {Number|String|Object} val Choice value. If an object is passed, it should contains
* at least one of `value` or `name` property
*/
module.exports = class Choice {
constructor(val, answers) {
// Don't process Choice and Separator object
if (val instanceof Choice || val.type === 'separator') {
2022-06-08 10:36:39 +00:00
// eslint-disable-next-line no-constructor-return
2022-01-21 08:28:41 +00:00
return val;
}
2022-06-08 10:36:39 +00:00
if (typeof val === 'string' || typeof val === 'number') {
2022-01-21 08:28:41 +00:00
this.name = String(val);
this.value = val;
this.short = String(val);
} else {
2022-06-08 10:36:39 +00:00
Object.assign(this, val, {
2022-01-21 08:28:41 +00:00
name: val.name || val.value,
value: 'value' in val ? val.value : val.name,
2022-06-08 10:36:39 +00:00
short: val.short || val.name || val.value,
2022-01-21 08:28:41 +00:00
});
}
2022-06-08 10:36:39 +00:00
if (typeof val.disabled === 'function') {
2022-01-21 08:28:41 +00:00
this.disabled = val.disabled(answers);
} else {
this.disabled = val.disabled;
}
}
};