This repository was archived by the owner on Mar 11, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
125 lines (113 loc) · 3.79 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
const dedent = require('dedent');
const wrap = require('word-wrap');
const longest = require('longest');
const rightPad = require('right-pad');
const types = require('./types.json');
const maxLineWidth = 50;
const bodyLineWidth = 72;
const divider = '\n\n';
const length = longest(Object.keys(types)).length + 1;
// rightPad should be replaced with String::padEnd when available (node 8?)
const choices = Object.keys(types).map(key => ({
name: `${rightPad(key + ':', length)} ${types[key].description}`,
value: key
}));
module.exports = {
// cz is an instance of inquirer
// see: https://github.com/SBoudrias/Inquirer.js
prompter(cz, commit) {
console.log(dedent`
Line 1 will be cropped at ${maxLineWidth} characters.
All other lines will be wrapped after ${bodyLineWidth} characters.
`);
// Let's ask some questions of the user
// so that we can populate our commit
// template.
//
// See inquirer.js docs for specifics.
// You can also opt to use another input
// collection library if you prefer.
cz.prompt([
{
type: 'list',
name: 'type',
message: dedent`
Select the type of change that you're committing:
`,
choices: choices
}, {
type: 'input',
name: 'scope',
message: dedent`
Denote the scope of this change (seed, challenges, map, etc.):
`
}, {
type: 'input',
name: 'subject',
message: dedent`
Write a short, imperative tense description of the change (no issue numbers)\n E.g. Change loop challenge format:
`,
validate: function(input) {
const noIssueNumbers = /\s#?\d+\s?/g;
return !noIssueNumbers.test(input);
},
filter: function(input) {
return new Promise((resolve, reject) => {
resolve(input.replace(/\.*$/, ""));
});
}
}, {
type: 'input',
name: 'body',
message: dedent`
Give description of what changed and/or why (optional):
`
}, {
type: 'input',
name: 'breaking',
message: dedent`
List any breaking changes:
`
}, {
type: 'input',
name: 'issues',
message: dedent`
List any issue(s) closed by this change (e.g. 123, 124):
`
}
]).then(answers => {
const wrapOptions = {
trim: true,
newline: '\n',
indent: '',
width: bodyLineWidth
};
// parentheses are only needed when a scope is present
let scope = answers.scope.trim();
scope = scope ? '(' + answers.scope.trim() + ')' : '';
// Hard limit this subject line
const title = answers.subject.trim().slice(0, maxLineWidth);
const subject = title.charAt(0).toUpperCase() + title.substr(1);
const head = `${answers.type}${scope}: ${subject}`;
// Wrap these lines at 72 characters
const body = wrap(answers.body, wrapOptions);
// Auto-add closing keyword to commit message body
const issueNums = answers.issues.match(/(\d+)/g);
const issues = issueNums == null ?
null :
issueNums.map(function(x) { return "Closes #" + x; })
.reduce(function(acc, val) {
return acc + "\n" + val;
}, "");
// Apply breaking change prefix, removing it if already present
let breaking = answers.breaking.trim();
breaking = breaking ?
'BREAKING CHANGE: ' + breaking.replace(/^BREAKING CHANGE: /, '') :
'';
breaking = wrap(breaking, wrapOptions);
// if no breaking or issues filter them out
const footer = [ breaking, issues ].filter(Boolean).join(divider);
commit([ head, body, footer ].join(divider));
});
}
};