forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsert-challenge.ts
44 lines (37 loc) · 1.43 KB
/
insert-challenge.ts
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
import ObjectID from 'bson-objectid';
import { prompt } from 'inquirer';
import { getTemplate } from './helpers/get-challenge-template';
import { newChallengePrompts } from './helpers/new-challenge-prompts';
import { getProjectPath } from './helpers/get-project-info';
import { getMetaData, updateMetaData } from './helpers/project-metadata';
import { createChallengeFile } from './utils';
import { getChallengeOrderFromMeta } from './helpers/get-challenge-order';
const insertChallenge = async () => {
const path = getProjectPath();
const options = await newChallengePrompts();
const challenges = getChallengeOrderFromMeta();
const challengeAfter = await prompt<{ id: string }>({
name: 'id',
message: 'Which challenge should come AFTER this new one?',
type: 'list',
choices: challenges.map(({ id, title }) => ({
name: title,
value: id
}))
});
const indexToInsert = challenges.findIndex(
({ id }) => id === challengeAfter.id
);
const template = getTemplate(options.challengeType);
const challengeId = new ObjectID();
const challengeText = template({ ...options, challengeId });
createChallengeFile(options.dashedName, challengeText, path);
const meta = getMetaData();
meta.challengeOrder.splice(indexToInsert, 0, {
// eslint-disable-next-line @typescript-eslint/no-base-to-string
id: challengeId.toString(),
title: options.title
});
updateMetaData(meta);
};
void insertChallenge();