-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
114 lines (105 loc) · 2.52 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
const inquirer = require("inquirer");
const Manager = require("./lib/Manager");
const Engineer = require("./lib/Engineer");
const Intern = require("./lib/Intern");
const path = require("path");
// const generateProfile = require("./generateProfile");
const fs = require("fs");
const team = [];
const render = require("./htmlRenderer");
const OUTPUT_DIR = path.resolve(__dirname, "output");
const outputPath = path.join(OUTPUT_DIR, "profiles.html");
const output = [];
const questions = [
{
type: "input",
message: "What is your full name?",
name: "name",
},
{
type: "list",
message: "What is your role?",
choices: ["Manager", "Engineer", "Intern"],
name: "role",
},
{
type: "input",
message: "What is your employee ID?",
name: "id",
},
{
type: "input",
message: "What is your email address?",
name: "email",
},
{
type: "input",
message: "What is your office number?",
name: "office",
when: (answers) => answers.role === "Manager",
},
{
type: "input",
message: "What is your GitHub link?",
name: "GitHub",
when: (answers) => answers.role === "Engineer",
},
{
type: "input",
message: "What school did you graduate from?",
name: "school",
when: (answers) => answers.role === "Intern",
},
{
type: "confirm",
name: "addEmployee",
message: "Would you like to add another employee to the team?",
},
];
function promptUser() {
inquirer
.prompt(questions)
.then((answers) => {
switch (answers.role) {
case "Manager":
team.push(
new Manager(answers.name, answers.id, answers.email, answers.office)
);
break;
case "Engineer":
team.push(
new Engineer(
answers.name,
answers.id,
answers.email,
answers.GitHub
)
);
break;
case "Intern":
team.push(
new Intern(answers.name, answers.id, answers.email, answers.school)
);
break;
default:
console.log("No such employee type.");
}
if (answers.addEmployee) {
promptUser();
} else {
fs.writeFile(outputPath, render(team), (err) => {
if (err) {
throw err;
}
console.log("Success!");
});
}
})
.catch((err) => {
if (err) {
console.log("Error: ", err);
}
});
}
promptUser();
` `