-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.js
152 lines (131 loc) · 4.01 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
var inq = require('inquirer'),
es = require('event-stream'),
template = require("lodash.template");
module.exports = {
/**
* The following method will act as a proxy to the inquirer
* prompt function. It will pass the questions object directly to
* inqurier's prompt function
* @param {*} questions
* @param {*} callback
*/
prompt: function(questions, callback) {
var prompted = false;
return es.map(function(file, cb) {
/**
* The following chainHandler was designed to be called recursively so as to allow
* users the ability to chain multple calls to inquirer together. It will stop
* calls to the chain handler when the chain function returns undefined.
* @param {objects} options
*/
var chainHandler = function( options ){
return new Promise( (resolve,reject)=>{
inq.prompt([options]).then( resp =>{
let opts = chainFunction( options, resp );
if( typeof opts === 'undefined'){
return resolve('response');
}else{
chainHandler( opts );
}
}).catch( err =>{
reject( 'Unexpected Error');
});
});
}
if (prompted === true) {
cb(null,file);
return;
}
if (!questions instanceof Array) {
questions = [questions];
}
if (typeof callback !== 'function') {
callback = function(){};
}
if( typeof questions.chainFunction === 'undefined' ){
inq.prompt(questions).then(function(res) {
callback(res);
cb(null, file);
});
prompted = true;
}else{
chainFunction = questions.chainFunction;
return chainHandler( questions ).then(function(res) {
if (res.val) {
cb(null, file);
}
}).catch( err => {
cb(null, file);
});
prompted = true;
}
});
},
confirm: function(options) {
var prompted = false;
var chainFunction;
return es.map(function(file, cb) {
if (prompted === true) {
cb(null,file);
return;
}
/**
* The following chainHandler was designed to be called recursively so as to allow
* users the ability to chain multple calls to inquirer together. It will stop
* calls to the chain handler when the chain function returns undefined.
* @param {objects} options
*/
var chainHandler = function( options ){
return new Promise( (resolve,reject)=>{
inq.prompt([options]).then( resp =>{
var opts = chainFunction( options, resp );
if( typeof opts === 'undefined'){
return resolve('response');
}else{
chainHandler( opts );
}
}).catch( err =>{
reject( 'Unexpected Error');
});
});
}
var opts = {
type: 'confirm',
name: 'val',
message: 'Are you sure?',
default: false
};
if (typeof options === 'string') {
opts.message = options;
}
if (typeof options !== 'object') {
options = {};
}
if( typeof options.templateOptions !== 'undefined'){
var compiled = template( options.message );
options.message = compiled( options.templateOptions);
}
opts.message = options.message || opts.message;
opts.default = options.default || opts.default;
if( typeof options.chainFunction === 'undefined'){
inq.prompt([opts]).then(function(res) {
if (res.val) {
cb(null, file);
}
});
prompted = true;
}else{
chainFunction = options.chainFunction;
return chainHandler( opts ).then(function(res) {
if (res.val) {
cb(null, file);
}
}).catch( err => {
cb(null, file);
});
prompted = true;
}
});
},
inq: inq
};