Skip to content

Commit 3e2e57b

Browse files
committedMay 23, 2018
feat: display emoji in selection list
1 parent bb1967d commit 3e2e57b

File tree

3 files changed

+26
-19
lines changed

3 files changed

+26
-19
lines changed
 

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"app-root-path": "^2.0.1",
2121
"inquirer": "^3.1.1",
2222
"shelljs": "^0.7.8",
23-
"word-wrap": "^1.2.3"
23+
"word-wrap": "^1.2.3",
24+
"pad-right": "^0.2.2"
2425
},
2526
"optionalDependencies": {
2627
"lerna": "^2.0.0-rc.5"

‎src/prompt/questions.js

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
1+
const pad = require('pad-right');
12
const types = require('../types').types;
23

34
const MAX_SUBJECT_LENGTH = 64;
45
const MIN_SUBJECT_LENGTH = 3;
56
const MIN_SUBJECT_LENGTH_ERROR_MESSAGE = `The subject must have at least ${MIN_SUBJECT_LENGTH} characters`;
67

8+
const typeToListItem = ({description, emoji, value}) => ({
9+
name: (emoji || '❔') + ' ' + pad(value + ':', 12, ' ') + description,
10+
value
11+
});
12+
713
const questions = [
814
{
915
choices: [
10-
types.test,
11-
types.feat,
12-
types.fix,
13-
types.chore,
14-
types.docs,
15-
types.refactor,
16-
types.style,
17-
types.ci,
18-
types.perf
16+
typeToListItem(types.test),
17+
typeToListItem(types.feat),
18+
typeToListItem(types.fix),
19+
typeToListItem(types.chore),
20+
typeToListItem(types.docs),
21+
typeToListItem(types.refactor),
22+
typeToListItem(types.style),
23+
typeToListItem(types.ci),
24+
typeToListItem(types.perf)
1925
],
2026
message: 'Select the type of change that you\'re committing:',
2127
name: 'type',

‎src/types.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
exports.types = {
22
chore: {
3-
name: 'Build process or auxiliary tool changes',
3+
description: 'Build process or auxiliary tool changes',
44
value: 'chore'
55
},
66
ci: {
7-
name: 'CI related changes',
7+
description: 'CI related changes',
88
value: 'ci'
99
},
1010
docs: {
11-
name: 'Documentation only changes',
11+
description: 'Documentation only changes',
1212
value: 'docs'
1313
},
1414
feat: {
15-
name: 'A new feature',
15+
description: 'A new feature',
1616
value: 'feat'
1717
},
1818
fix: {
19-
name: 'A bug fix',
19+
description: 'A bug fix',
2020
value: 'fix'
2121
},
2222
perf: {
23-
name: 'A code change that improves performance',
23+
description: 'A code change that improves performance',
2424
value: 'perf'
2525
},
2626
refactor: {
27-
name: 'A code change that neither fixes a bug or adds a feature',
27+
description: 'A code change that neither fixes a bug or adds a feature',
2828
value: 'refactor'
2929
},
3030
style: {
31+
description: 'Markup-only changes (white-space, formatting, missing semi-colons, etc)',
3132
emoji: '💄',
32-
name: 'Markup-only changes (white-space, formatting, missing semi-colons, etc)',
3333
value: 'style'
3434
},
3535
test: {
36-
name: 'Adding missing tests',
36+
description: 'Adding missing tests',
3737
value: 'test'
3838
}
3939
};

0 commit comments

Comments
 (0)
Please sign in to comment.