-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
359 lines (330 loc) · 12.1 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
// TODO add interrupt key to prompt the user with a fixed set of questions (like a menu) https://github.com/lnquy065/inquirer-interrupted-prompt
// TODO use https://github.com/anc95/inquirer-file-tree-selection to pick and edit an old README generated with Better Readme
const inquirer = require("inquirer");
const randomColor = require('randomcolor');
const generateMarkdown = require("./utils/generateMarkdown");
// readme global configuration object
let readmeConfig = {
projectTitle: '',
user: {
username: 'N/A',
email: 'N/A',
},
badges: [],
sections: [],
tableOfContents: '',
questionsSection: '',
attribution: '',
};
// create licenses arr container to be filled with a fetch call to the github API
let licensesArr;
// init function - readmeConfig builder
async function init() {
getLicenses();
getConsent();
}
// getConsent from user
async function getConsent() {
const consent = {
type: 'confirm',
message: 'Would you like to create a README file?\n',
name: 'readmeConsent',
default: true,
}
await inquirer
.prompt(consent)
.then((answer) => {
if (answer.readmeConsent) {
getMainSections()
}
})
.catch((err) => console.error(err))
}
// get information for main sections
async function getMainSections() {
const mainSections = [
{
type: 'input',
message: `Enter the project title:\n`,
name: 'projectTitle',
validate(text) {
if (text.length < 3) {
return '❌ Must be at least 3 chars.';
}
return true;
},
},
{
type: 'input',
message: `Provide a brief introduction for the project (a more detailed description will be added later):\n`,
name: 'brief',
validate(text) {
if (text.length < 20) {
return '❌ Must be at least 20 chars.';
}
return true;
},
},
{
type: 'editor',
message: `Can you provide more details about the project for a thorough and in-depth description?\n`,
name: 'description',
validate(text) {
if (text.length < 50) {
return '❌ Must be at least 50 chars.';
}
return true;
},
},
{
type: 'list',
message: `Select a license for your project from the options listed below:`,
name: 'license',
choices: licensesArr.map((x) => x.name),
loop: false,
},
{
type: 'confirm',
message: 'Do you wish to include a "Got any questions?" section along with your contact details in the README?\n',
name: 'questions',
default: true,
},
{
type: 'input',
message: `Enter your GitHub username:\n`,
name: 'username',
validate(username) {
if (/^[0-9A-Za-z\-]{3,39}$/.test(username)) {
return true;
}
throw Error('❌ Please provide a valid username.');
},
when: (answer) => answer.questions === true
},
{
type: 'input',
message: `Input your email address:\n`,
name: 'email',
validate(email) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email)) {
return true;
}
throw Error('❌ Please provide a valid email.');
},
when: (answer) => answer.questions === true
},
{
type: 'confirm',
message: 'Would you like to include a table of contents in the README?\n',
name: 'tableOfContents',
default: true,
},
{
type: 'confirm',
message: 'Would you like to attribute the "Better Readme" program in your project?\n',
name: 'attribution',
default: true,
},
{
type: 'confirm',
message: 'Alrigth, I have all the essential details, do you wish to include any custom sections in your README?\n',
name: 'extraConsent',
default: true,
}
]
await inquirer
.prompt(mainSections)
.then((answers) => {
const { projectTitle, brief, description, license, username, email, tableOfContents, attribution, questions, extraConsent } = answers
readmeConfig.projectTitle = projectTitle
readmeConfig.sections.push(
{
sectionName: "Title",
bodyContent: projectTitle,
isTitle: true
},
{
sectionName: "Intro",
bodyContent: brief
},
{
sectionName: "Description",
bodyContent: description
},
{
sectionName: "License",
bodyContent: license,
licenseKey: licensesArr[licensesArr.map(function(l) {return l.name }).indexOf(license)].key,
isLicense: true
},
)
readmeConfig.questionsSection = questions
if (questions) {
readmeConfig.user.username = username
readmeConfig.user.email = email
}
readmeConfig.badges.push({
label: [license.replace(/ |-/gm, '_')],
color: randomColor().replace('#', '')
})
readmeConfig.tableOfContents = tableOfContents;
readmeConfig.attribution = attribution;
if (extraConsent) {
getExtraSections()
} else {
generateMarkdown(readmeConfig);
}
})
.catch((err) => console.error(err))
}
// get extra sections if any
async function getExtraSections() {
let needSection = true;
while (needSection) {
const extraSections = [
{
type: 'list',
message: 'Please select the section type:',
name: 'extraType',
choices: [
'Text section (Title + paragraph)',
'Image section (Title + image)',
'Badge section (1 custom Shield Badge to be attached on top of the Readme)'
],
loop: false,
},
{
type: 'input',
message: 'Please input the section title:\n',
name: 'extraTitle',
validate(text) {
if (text.length < 3) {
return '❌ Must be at least 3 chars.';
}
return true;
},
when: (answer) => answer.extraType.split(' ')[0] !== 'Badge'
},
{
type: 'list',
message: `Where do you want to add the section?\n`,
name: 'position',
choices: orderSelector(),
pageSize: 10,
loop: false,
when: (answer) => answer.extraType.split(' ')[0] !== 'Badge'
},
{
type: 'editor',
message: 'Add the body of the section (Markdown is allowed):\n',
name: 'extraBody',
validate(text) {
if (text.length < 20) {
return '❌ Must be at least 20 chars.';
}
return true;
},
when: (answer) => answer.extraType.split(' ')[0] === 'Text'
},
{
type: 'input',
message: 'Paste here the URL to the image, either an absolute or relative path:\n',
name: 'extraImage',
validate(text) {
if (text.length < 3) {
return '❌ Must be at least 3 chars.';
}
return true;
},
when: (answer) => answer.extraType.split(' ')[0] === 'Image'
},
{
type: 'input',
message: 'Please input the Shield Badge label (one or two strings separated by a comma):\n',
name: 'extraBadgeLabel',
validate(text) {
if (text.length < 3) {
return '❌ Must be at least 3 chars.';
}
return true;
},
when: (answer) => answer.extraType.split(' ')[0] === 'Badge'
},
{
type: 'chalk-pipe',
message: 'Paste here the color name or hexcode for the Shield Badge:\n',
name: 'extraBadgeColor',
default: 'e.g.: #ff3300 or green',
validate(text) {
if (text.length < 3) {
return '❌ Must be at least 3 chars.';
}
return true;
},
when: (answer) => answer.extraType.split(' ')[0] === 'Badge'
},
{
type: 'confirm',
message: 'Do you want to add another section to the README?\n',
name: 'needSection',
default: true
}
]
inquirer.registerPrompt('chalk-pipe', require('inquirer-chalk-pipe'));
await inquirer
.prompt(extraSections)
.then((answers) => {
const { extraType, extraTitle, position, extraBody, extraImage, extraBadgeLabel, extraBadgeColor } = answers
needSection = answers.needSection
let appendAtIndex
if (position) {
appendAtIndex = Number(readmeConfig.sections.map(x => x.sectionName).indexOf(position.split(' ')[1]));
}
switch (extraType.split(' ')[0]) {
case 'Text': pushExtraSection( {sectionName: extraTitle, bodyContent: extraBody}, appendAtIndex );
break;
case 'Image': pushExtraSection( {sectionName: extraTitle, bodyContent: extraImage, isMedia: true}, appendAtIndex );
break;
case 'Badge': readmeConfig.badges.push({ label: extraBadgeLabel.split(',').map(x => x.trim().replace(/ |-/gm,"_")), color: extraBadgeColor.replace('#', '')})
break;
}
})
.catch((err) => console.error(err))
}
generateMarkdown(readmeConfig);
}
// get position for the extra sections // TODO rewrite using https://github.com/adam-golab/inquirer-select-line?tab=readme-ov-file
function orderSelector() {
let sectionsArray = []
for (let i = 0; i < readmeConfig.sections.length; i++) {
sectionsArray.push(new inquirer.Separator(`>>${readmeConfig.sections[i].sectionName.toUpperCase()}<<`))
switch (i) {
case readmeConfig.sections.length - 1:
break;
default:
sectionsArray.push(`After ${readmeConfig.sections[i].sectionName} and before ${readmeConfig.sections[i+1].sectionName}`)
}
}
return sectionsArray
}
async function getLicenses() {
try {
const res = await fetch('https://api.github.com/licenses')
if (res.status === 200) {
licensesArr = await res.json();
} else {
console.log(`Error ${res.status}`);
}
}
catch {
(err) => console.error(err)
}
}
// launch the initialisation process
init();
// add the extra section in the position selected by the user
const pushExtraSection = (newSectionObj, index) => {
const head = readmeConfig.sections.slice(0, index + 1);
const tail = readmeConfig.sections.slice(index + 1);
readmeConfig.sections = [...head, newSectionObj, ...tail]
}