-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
255 lines (231 loc) · 5.74 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
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 OUTPUT_DIR = path.resolve(__dirname, "output");
const outputPath = path.join(OUTPUT_DIR, "team.html");
// Generate website
const render = require("./src/page-template.js");
//Array for team members
const teammates = [];
// TODO: Write Code to gather information about the development team members, and render the HTML file.
//MANAGER
const managerQ = () => {
return inquirer.prompt([
{
type: "input",
name: "name",
message: "What is the team manager's name?",
validate: nameInput => {
if(nameInput){
return true;
}else{
console.log("Please enter the Manager's name!")
return false;
}
}
},
{
type: "input",
name: "managerId",
message: "What is the team manager's id?",
validate: managerID => {
if(managerID){
return true;
}else{
console.log("Please enter the Manager's ID")
return false;
}
}
},
{
type: "input",
name: "email",
message: "What is the team manager's email?",
validate: email => {
if(email){
return true;
}else{
console.log("Please enter Manager's email")
return false;
}
}
},
{
type: "input",
name: "officeNumber",
message: "What is the team manager's office number?",
validate: officeNum => {
if(officeNum){
return true;
}else{
console.log("Please enter the Manager's office number!")
return false;
}
}
}
]).then(value =>{
const manager = new Manager(value.name, value.managerId, value.email, value.officeNumber);
teammates.push(manager);
employeeChoice();
})
}
// CHOOSE EMPLOYEE
const employeeChoice = () =>{
return inquirer.prompt([
{
type: "list",
name: "employeeRole",
message: "Which type of team member would you like to add?",
choices: [
"Engineer",
"Intern",
"Finish building the team"
]
}
]).then(userInput => {
switch (userInput.employeeRole) {
//switch statement
case "Engineer":
engineerQ();
break;
case "Intern":
internQ();
break;
case "Finish building the team":
// default
buildHtml();
break;
}
});
}
//ENGINEER QUESTIONS
const engineerQ = () =>{
return inquirer.prompt([
{
type: "input",
name: "name",
message: "What is your Engineer's name?",
validate: engineerName => {
if(engineerName){
return true;
} else {
console.log("Please enter the Enginner's name.")
return false;
}
}
},
{
type: "input",
name: "engineerID",
message: "What is your Engineer's ID?",
validate: enginID => {
if(enginID){
return true;
}else {
console.log("Please enter the Engineer's ID")
}
}
},
{
type: "input",
name: "email",
message: "What is your Engineer's email?",
validate: email =>{
if(email){
return true;
}else{
console.log("Please enter Engineer's email")
return false;
}
}
},
{
type: "input",
name: "githubUser",
message: "What is your Engineer's GitHub account?",
validate: github =>{
if(github){
return true;
}else{
console.log("Please enter Engineer's GitHub account.")
return false;
}
}
}
]).then(value =>{
const engineer = new Engineer(value.name, value.engineerID, value.email, value.githubUser);
teammates.push(engineer);
employeeChoice();
});
};
//INTERN QUESTION
const internQ = () =>{
return inquirer.prompt([
{
type: "input",
name: "name",
message: "What is your Intern's name?",
validate: name =>{
if(name){
return true;
}else{
console.log("Please enter the Intern's name")
return false;
}
}
},
{
type: "input",
name: "internID",
message: "What is your Intern's id?",
validate: idIntern => {
if(idIntern){
return true;
}else {
console.log("Please enter the Intern's ID !")
return false;
}
}
},
{
type: "input",
name: "email",
message: "What is your Intern's email address?",
validate: email =>{
if(email){
return true;
}else{
console.log("Please enter the Intern's email.")
return false;
}
}
},
{
type: "input",
name: "school",
message: "What is your Intern's school?",
validate: internSchool => {
if(internSchool){
return true;
}else{
console.log("Please enter the Intern's school.")
return false;
}
}
}
]).then(value =>{
const intern = new Intern(value.name, value.internID, value.email, value.school);
teammates.push(intern);
employeeChoice();
});
};
// function for building the html file
const buildHtml = () => {
console.log("Your Team is Created!")
fs.writeFileSync(outputPath, render(teammates), "UTF-8")
}
//INIT FUNCTION
managerQ();