-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
266 lines (250 loc) · 8.64 KB
/
app.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
const Manager = require("./lib/Manager");
const Engineer = require("./lib/Engineer");
const Intern = require("./lib/Intern");
const inquirer = require("inquirer");
const path = require("path");
const fs = require("fs");
const emailValidator = require('email-validator');
const OUTPUT_DIR = path.resolve(__dirname, "output");
const outputPath = path.join(OUTPUT_DIR, "team.html");
const render = require("./lib/htmlRenderer");
const Employee = require("./lib/Employee");
let team = [];
let canAddManager = true;
// Write code to use inquirer to gather information about the development team members, and to create objects for each team member (using the correct classes as blueprints!)
const questions = {
Manager: [
{
type: "input",
name: "name",
message: "What is the manager's name?",
validate: (value) => {
if (value) {
return true
} else { return "Please enter manager's name." }
},
},
{
type: "input",
name: "id",
message: "What is the manager's id?",
validate: (value) => {
if (value) {
return true
} else { return "Please enter manager's id." }
},
},
{
type: "input",
name: "email",
message: "What is the manager's email address?",
validate: (value) => {
if (emailValidator.validate(value)) {
return true
} else { return 'Please enter a valid email address.' }
},
},
{
type: "input",
name: "officeNumber",
message: "What is the manager's office number?",
validate: (value) => {
if (value) {
return true
} else { return "Please enter manager's office number." }
},
},
{
type: "list",
name: "addNew",
message: "Do you want to add another employee",
choices: ["yes", "no"]
}
],
Engineer: [
{
type: "input",
name: "name",
message: "What is the engineer's name?",
validate: (value) => {
if (value) {
return true
} else { return "Please enter engineer's name." }
},
},
{
type: "input",
name: "id",
message: "What is the engineer's id?",
validate: (value) => {
if (value) {
return true
} else { return "Please enter engineer's id." }
},
},
{
type: "input",
name: "email",
message: "What is the engineer's email address?",
validate: (value) => {
if (emailValidator.validate(value)) {
return true
} else { return 'Please enter a valid email address.' }
},
},
{
type: "input",
name: "github",
message: "What is the engineer's GitHub username?",
validate: (value) => {
if (value) {
return true
} else { return "Please enter engineer's GitHub." }
},
},
{
type: "list",
name: "addNew",
message: "Do you want to add another employee",
choices: ["yes", "no"]
}
],
Intern: [
{
type: "input",
name: "name",
message: "What is the intern's name?",
validate: (value) => {
if (value) {
return true
} else { return "Please enter intern's name." }
},
},
{
type: "input",
name: "id",
message: "What is the intern's id?",
validate: (value) => {
if (value) {
return true
} else { return "Please enter intern's id." }
},
},
{
type: "input",
name: "email",
message: "What is the intern's email address?",
validate: (value) => {
if (emailValidator.validate(value)) {
return true
} else { return 'Please enter a valid email address.' }
},
},
{
type: "input",
name: "school",
message: "What school is the intern attending?",
validate: (value) => {
if (value) {
return true
} else { return "Please enter the name of school." }
},
},
{
type: "list",
name: "addNew",
message: "Do you want to add another employee",
choices: ["yes", "no"]
}
]
};
const selectMemberType = [
{
type: "list",
name: "memberType",
message: "Please choose the role for the employee",
choices: ["Manager", "Engineer", "Intern"],
}
];
function addNewMember() {
inquirer.prompt(selectMemberType)
.then(answer => {
// console.log(answer.memberType);
if (answer.memberType === "Manager") {
if (canAddManager) {
inquirer.prompt(questions.Manager)
.then(answer => {
//save employee info
const manager = new Manager
(
answer.name,
answer.id,
answer.email,
answer.officeNumber
);
//add info to team array if manager doesn't exist
team.push(manager);
canAddManager = false;
if (answer.addNew === "yes") {
addNewMember();
} else {
generate();
}
});
} else {
//only 1 manager
console.log("There is a manager already!")
addNewMember();
}
} else if (answer.memberType === "Engineer") {
inquirer.prompt(questions.Engineer)
.then(answer => {
//save ee info
const engineer = new Engineer
(
answer.name,
answer.id,
answer.email,
answer.github
);
//add info to team array
team.push(engineer);
if (answer.addNew === "yes") {
addNewMember();
} else {
generate();
};
});
} else if (answer.memberType === "Intern") {
inquirer.prompt(questions.Intern)
.then(answer => {
//save ee info
const intern = new Intern
(
answer.name,
answer.id,
answer.email,
answer.school
);
//add info to team array
team.push(intern);
if (answer.addNew === "yes") {
addNewMember();
} else {
generate();
};
});
};
});
};
addNewMember();
// After the user has input all employees desired, call the `render` function (required
// above) and pass in an array containing all employee objects; the `render` function will
// generate and return a block of HTML including templated divs for each employee!
// After you have your html, you're now ready to create an HTML file using the HTML
// returned from the `render` function. Now write it to a file named `team.html` in the
// `output` folder. You can use the variable `outputPath` above target this location.
function generate() {
fs.writeFileSync(outputPath, render(team), "utf-8");
process.exit(0);
}