-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·418 lines (342 loc) · 10.5 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
"format cjs";
var wrap = require('word-wrap');
var Log = require('log');
var editor = require('editor');
var temp = require('temp').track();
var fs = require('fs');
var log = new Log('info');
module.exports = {
trim: trim,
formatBody: formatBody,
lengthError: lengthError,
calculateOverflow: calculateOverflow,
validateLength: validateLength,
concat: concat,
formatHeader: formatHeader,
buildCommitMessage: buildCommitMessage,
// By default, we'll de-indent your commit template & will keep empty lines.
prompter: function(cz, commit) {
/**
* @function prompter
* Defines the questions asked, gather answers from user, formats commit message, executes git commit.
* Uses inquirer.js for Q&A - see docs for specifics.
* @param {Object} cz - an instance of inquirer.js. Executed when user runs 'git cz'.
* @param {Function} commit - callback. The argument is the message that will be passed to Git.
**/
cz.prompt([
{
type: 'list',
name: 'type',
message: 'Select the type of change that you\'re committing:',
choices: [
{
name: 'task: A new feature',
value: 'task'
}, {
name: 'tend: A bug fix',
value: 'tend'
}, {
name: 'text: A change to documentation or comments',
value: 'text'
}, {
name: 'tidy: A change that does not affect the meaning of the code (white-space, alignment, etc)',
value: 'tidy'
}, {
name: 'tune: A refactor that neither fixes a bug nor adds a feature',
value: 'tune'
}, {
name: 'test: A test(s)',
value: 'test'
}, {
name: 'tool: A change to the build process, auxiliary tools, libraries, etc',
value: 'tool'
}, {
name: 'trim: A change that removes a file, directory, function, code block, etc',
value: 'trim'
}]
}, {
type: 'input',
name: 'scope',
message: 'Denote the location of this change: ',
validate: function(scope) {
var answers = arguments[1];
return validateLength(scope, answers);
},
filter: function(scope) {
return trim(scope);
}
}, {
type: 'input',
name: 'subject',
message: 'Write a short, imperative tense description of the change: ',
validate: function(subject) {
var answers = arguments[1];
return validateLength(subject, answers);
},
filter: function(subject) {
return trim(subject);
}
}, {
type: 'input',
name: 'body',
message: 'Provide a longer description of the change. Use "|" to add a line break.\n',
filter: function(body) {
return trim(body);
}
}, {
type: 'confirm',
name: 'break',
message: 'Does this commit introduce a breaking change?'
}, {
type: 'input',
name: 'breakingChange',
message: 'Provide a longer description of the breaking changes. Use "|" to add a line breaks.\n',
filter: function(change) {
return trim(change);
},
when: function(answerObj) {
return (!!answerObj.break)
}
}, {
type: 'confirm',
name: 'close',
message: 'Does this commit close an issue?',
}, {
type: 'input',
name: 'issue',
message: 'Closes Issue #: ',
when: function(answerObj) {
return (!!answerObj.close)
},
filter: function(issue) {
return trim(issue);
}
}, {
type: 'confirm',
name: 'pair',
message: 'Did you pair with anyone?',
},{
type: 'input',
name: 'navs',
message: 'List the people you paired with: ',
when: function(answerObj) {
return (!!answerObj.pair);
},
filter: function(navs) {
return trim(navs);
}
}, {
type: 'list',
name: 'confirm',
message: function(answerObj) {
var commitMessage = buildCommitMessage(answerObj);
return 'Here is your commit message:\n\n' + commitMessage + '\n\n' + 'How would you like to proceed?';
},
choices: [
{ name: 'Commit', value: 'commit'},
{ name: 'Edit Message', value: 'edit'},
{ name: 'Cancel Commit', value: 'cancel'}
]
}
], function(answers) {
var commitMessage = buildCommitMessage(answers);
switch(answers.confirm) {
case 'commit':
commit(commitMessage);
break;
case 'cancel':
log.warning('Commit cancelled.');
break;
case 'edit':
temp.open(null, function(err, info) {
var error = !!err;
if (!error) {
fs.write(info.fd, commitMessage);
fs.close(info.fd, function(err) {
editor(info.path, function (code, sig) {
var success = 0;
if (code === success) {
var newCommitMessage = fs.readFileSync(info.path, { encoding: 'utf8' });
commit(newCommitMessage);
} else {
log.info('Editor returned error. Commit message was:\n' + commitMessage);
}
});
});
}
});
break;
default:
break;
}
});
}
}
function formatBody(input) {
/**
* @function formatBody
* Returns properly formatted body for commit message.
* @param {String} input
* @return {String} body
**/
// Default to empty string in case of undefined input
var bodyInput = input || '';
var statements;
var body = '';
var wrapOptions = {
trim: true,
newline: '\n',
indent:'',
width: 72
};
if (!!bodyInput) {
body += concat('\n', 2);
// Split the body into discrete chunks
statements = bodyInput.split('|');
statements.forEach(function(item) {
// Wrap then concatenate each chunk
body += wrap(item, wrapOptions);
body += concat('\n', 1);
});
}
return (!!body) ? body.slice(0,-1) : body;
}
function buildCommitMessage(answers) {
/**
* @function buildCommitMessage
* Returns properly formatted commit mesage.
* @param {Object} answers
* @return {String} commitMessage
**/
// Header Vars
var header = {
type: answers.type,
scope: answers.scope,
subject: answers.subject
};
var body = answers.body;
// Footer Vars
var footer = {
break: answers.break,
change: answers.breakingChange,
pair: answers.pair,
navs: answers.navs,
close: answers.close,
issue: answers.issue
};
var head;
var commitMessage = '';
commitMessage += formatHeader(header);
commitMessage += formatBody(body);
commitMessage += formatFooter(footer);
return commitMessage;
}
function formatFooter(footerObj) {
/**
* @function commitFooter
* @param {Object} footerObj
* @return {String} footer
**/
var breaks = footerObj.break;
var footer = '\n\n';
if (!!breaks) {
footer += 'BREAKING-CHANGE:';
footer += concat('\n', 2);
footer += footerObj.change;
footer += concat('\n', 2);
}
if (!!footerObj.close) {
footer += 'CLOSES: ' + footerObj.issue;
footer += concat('\n', 1);
}
if (!!footerObj.pair) {
footer += 'PAIRED-WITH: ' + footerObj.navs;
}
return footer;
}
function formatHeader(headerObj) {
/**
* @function formatHeader
* Returns a properly formatted commit header.
* @param {Object} headerObj
* @return {String} header
**/
var type = headerObj.type || '';
var scope = headerObj.scope || '';
var subject = headerObj.subject || '';
scope = (!!scope) ? (' ' + scope) : '';
subject = (!!subject) ? (': ' + subject) : '';
return type + scope + subject;
}
function concat(string, count) {
/**
* @function concat
* Returns a string consisting of <string> <count> times.
* @param {String} string
* @param {Number} count
* @return {String} target
**/
var out = '';
while (count) {
out += string;
count--;
}
return out;
}
function validateLength(subject, answerObj) {
/**
* @function validateLength
* Uses calculateOverflow() to determine if length of input is <= 69 chars.
* If so, returns true.
* If not, passes the number of chars overflow into lengthError() and returns the error message generated.
* @param {String} subject
* @param {Object} answerObj
* @returns {String | Boolean} error message or true
**/
var HEADER_LIMIT = 69;
var subjectLength = subject.length;
var typeLength = answerObj.type.length;
var scopeLength = (!!answerObj.scope) ? (answerObj.scope.length + 2) : 0; // +2 for the parentheses
var delimiterLength = 2; // +2 for ": "
// calculateOverflow will return how many characters beyond the HEADER_LIMIT or false
var overflow = calculateOverflow(subjectLength, typeLength, scopeLength, delimiterLength, HEADER_LIMIT);
return (!!overflow) ? lengthError(overflow) : true;
}
function calculateOverflow(subjectLength, typeLength, scopeLength, delimiterLength, LIMIT) {
/**
* @function calculateOverflow
* Used to validate the length of the complete, formatted commit header.
* Length is valid if it is <= the limit specified by LIMIT.
* @param {Number} subjectLength
* @param {Number} typeLength
* @param {Number} scopeLength
* @param {Number} delimiterLength
* @param {Number} LIMIT
* @returns {Number | Boolean} number of characters past 69 or false
**/
var charsRemainingForSubject = (LIMIT - (typeLength + scopeLength + delimiterLength));
var overflow = (subjectLength > charsRemainingForSubject);
var totalCharsOver = (subjectLength - charsRemainingForSubject);
var noOverflow = false;
return (overflow)? totalCharsOver : noOverflow;
}
function lengthError(overflowAmount) {
/**
* @function lengthError
* Only called when a commit header is longer than the specified LIMIT.
* Uses the amount of chars of overflow to created a properly formatted error message.
* @param {Number} overflowAmount
* @returns {String} formatted error message
**/
var plural = (overflowAmount > 1) ? 's' : '';
return 'Message was ' + overflowAmount + ' character' + plural + ' too long.';
}
function trim(input) {
/**
* @function trim
* Removes leading and trailing whitespace from input.
* @param {String} input
* @returns {String} input
**/
return input.trim();
}