Skip to content

Commit e2e70fd

Browse files
authoredMay 23, 2018
Merge pull request #10 from streamich/feat-improve
Feat improve
2 parents f5771fb + c134004 commit e2e70fd

File tree

5 files changed

+88
-40
lines changed

5 files changed

+88
-40
lines changed
 

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
.idea/
66
node_modules/
77
npm-debug.log
8-
yarn.lock
8+
yarn.lock
9+
.vscode/

‎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/defaults.js

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
const types = {
2+
chore: {
3+
description: 'Build process or auxiliary tool changes',
4+
emoji: '👻',
5+
value: 'chore'
6+
},
7+
ci: {
8+
description: 'CI related changes',
9+
emoji: '🤖',
10+
value: 'ci'
11+
},
12+
docs: {
13+
description: 'Documentation only changes',
14+
emoji: '✍️',
15+
value: 'docs'
16+
},
17+
feat: {
18+
description: 'A new feature',
19+
emoji: '🎸',
20+
value: 'feat'
21+
},
22+
fix: {
23+
description: 'A bug fix',
24+
emoji: '🐛',
25+
value: 'fix'
26+
},
27+
perf: {
28+
description: 'A code change that improves performance',
29+
emoji: '🔥',
30+
value: 'perf'
31+
},
32+
refactor: {
33+
description: 'A code change that neither fixes a bug or adds a feature',
34+
emoji: '👌',
35+
value: 'refactor'
36+
},
37+
style: {
38+
description: 'Markup-only changes (white-space, formatting, missing semi-colons, etc)',
39+
emoji: '💄',
40+
value: 'style'
41+
},
42+
test: {
43+
description: 'Adding missing tests',
44+
emoji: '💍',
45+
value: 'test'
46+
}
47+
};
48+
49+
const list = [
50+
'test',
51+
'feat',
52+
'fix',
53+
'chore',
54+
'docs',
55+
'refactor',
56+
'style',
57+
'ci',
58+
'perf'
59+
];
60+
61+
module.exports = {
62+
list,
63+
maxMessageLength: 50,
64+
minMessageLength: 3,
65+
types
66+
};

‎src/index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ const fs = require('fs');
22
const inquirer = require('inquirer');
33
const wrap = require('word-wrap');
44
const appRoot = require('app-root-path');
5+
const defaults = require('./defaults');
56
const {
67
makePackagesQuestion,
78
questions
@@ -47,7 +48,9 @@ module.exports = {
4748
width: MAX_LINE_WIDTH
4849
};
4950

50-
const head = answers.type + ': ' + answers.subject;
51+
const emoji = defaults.types[answers.type].emoji;
52+
const emojiPrefix = emoji ? emoji + ' ' : '';
53+
const head = answers.type + ': ' + emojiPrefix + answers.subject;
5154
const affectsLine = makeAffectsLine(answers);
5255

5356
// Wrap these lines at MAX_LINE_WIDTH character

‎src/prompt/questions.js

+14-37
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,18 @@
1-
const MAX_SUBJECT_LENGTH = 50;
2-
const MIN_SUBJECT_LENGTH = 3;
1+
const pad = require('pad-right');
2+
const defaults = require('../defaults');
3+
4+
const MAX_SUBJECT_LENGTH = defaults.maxMessageLength;
5+
const MIN_SUBJECT_LENGTH = defaults.minMessageLength;
36
const MIN_SUBJECT_LENGTH_ERROR_MESSAGE = `The subject must have at least ${MIN_SUBJECT_LENGTH} characters`;
47

8+
const typeToListItem = ({description, emoji, value}) => ({
9+
name: (emoji || '❔') + ' ' + pad(value + ':', 12, ' ') + description,
10+
value
11+
});
12+
513
const questions = [
614
{
7-
choices: [
8-
{
9-
name: 'feat: A new feature',
10-
value: 'feat'
11-
},
12-
{
13-
name: 'fix: A bug fix',
14-
value: 'fix'
15-
},
16-
{
17-
name: 'docs: Documentation only changes',
18-
value: 'docs'
19-
},
20-
{
21-
name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)',
22-
value: 'style'
23-
},
24-
{
25-
name: 'refactor: A code change that neither fixes a bug or adds a feature',
26-
value: 'refactor'
27-
},
28-
{
29-
name: 'perf: A code change that improves performance',
30-
value: 'perf'
31-
},
32-
{
33-
name: 'test: Adding missing tests',
34-
value: 'test'
35-
},
36-
{
37-
name: 'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation',
38-
value: 'chore'
39-
}
40-
],
15+
choices: defaults.list.map((type) => typeToListItem(defaults.types[type])),
4116
message: 'Select the type of change that you\'re committing:',
4217
name: 'type',
4318
type: 'list'
@@ -54,7 +29,9 @@ const questions = [
5429
return subject;
5530
},
5631
leadingLabel: (answers) => `${answers.type}:`,
57-
maxLength: MAX_SUBJECT_LENGTH,
32+
33+
// Minus 3 chars are for emoji + space.
34+
maxLength: MAX_SUBJECT_LENGTH - 3,
5835
message: 'Write a short, imperative mood description of the change:',
5936
name: 'subject',
6037
type: 'limitedInput',

0 commit comments

Comments
 (0)
Please sign in to comment.