-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
264 lines (241 loc) · 7.6 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
// Packages for this application
const inquirer = require ("inquirer");
const generateHTML = require ("./src/generateHTML");
const fs = require ("fs");
const Employee = require("./lib/employee.js");
const Engineer = require("./lib/engineer.js");
const Manager = require("./lib/manager.js");
const Intern = require("./lib/intern.js");
// Variables declared
let companyStaff = [];
let companyName = " ";
// Initial function asks for company's name
function init () {
inquirer.prompt({
type: "input",
message: "What is the name of your company?",
name: "companyName",
validate: companyNameInput => {
if (companyNameInput) {
return true
} else {
console.log ("Please enter your company's name.")
}
}
})
.then(answers => {
companyName = answers.companyName;
staffInfo();
})
}
// Function allows user to add employees to the team from a list of choices.
function staffInfo() {
inquirer.prompt({
type:"list",
message: "What type of employee would you like to add to the team?",
choices: ["Manager", "Engineer", "Intern", "No more employees to add."],
name: "employeeRole",
})
.then(answers => {
switch (answers.employeeRole) {
case "Manager":
addManager();
break;
case "Engineer":
addEngineer();
break;
case "Intern":
addIntern();
break;
default: buildupHTML();
}
})
}
// Functions prompts questions about manager and adds employee to the company staff array.
function addManager() {
inquirer.prompt([
{
type:"input",
message: "What is the name of the team's manager?",
name: "managerName",
validate: employeeNameInput => {
if (employeeNameInput) {
return true
} else {
console.log ("Please enter the name of this employee.")
}
}
},
{
type:"input",
message: "What is the ID of this employee?",
name: "managerID",
validate: employeeIDInput => {
if (employeeIDInput) {
return true
} else {
console.log ("Please enter the ID of this employee.")
}
}
},
{
type:"input",
message: "What is his/her email address?",
name: "managerEmail",
validate: employeeEmailInput => {
if (employeeEmailInput) {
return true
} else {
console.log ("Please enter an email address.")
}
}
},
{
type:"input",
message: "What is the office number of this manager?",
name: "officeManager",
validate: employeeEmailInput => {
if (employeeEmailInput) {
return true
} else {
console.log ("Please enter the office number of this manager.")
}
}
},
])
.then(data => {
const manager = new Manager (data.managerName, data.managerID, data.managerEmail, data.officeManager);
companyStaff.push(manager);
staffInfo();
})
}
// Functions prompts questions about engineer and adds employee to the company staff array.
function addEngineer() {
inquirer.prompt([
{
type:"input",
message: "What is the name of this engineer?",
name: "engineerName",
validate: employeeNameInput => {
if (employeeNameInput) {
return true
} else {
console.log ("Please enter the name of this employee.")
}
}
},
{
type:"input",
message: "What is the ID of this employee?",
name: "engineerID",
validate: employeeIDInput => {
if (employeeIDInput) {
return true
} else {
console.log ("Please enter the ID of this employee.")
}
}
},
{
type:"input",
message: "What is his/her email address?",
name: "engineerEmail",
validate: employeeEmailInput => {
if (employeeEmailInput) {
return true
} else {
console.log ("Please enter an email address.")
}
}
},
{
type:"input",
message: "What is his/her gitHub account?",
name: "engineerGitHub",
validate: employeeGitHubInput => {
if (employeeGitHubInput) {
return true
} else {
console.log ("Please enter the GitHub.")
}
}
},
])
.then(data => {
const engineer = new Engineer (data.engineerName, data.engineerID, data.engineerEmail, data.engineerGitHub);
companyStaff.push(engineer);
staffInfo();
})
}
// Functions prompts questions about intern and adds employee to the company staff array.
function addIntern() {
inquirer.prompt([
{
type:"input",
message: "What is the name of this intern?",
name: "internName",
validate: employeeNameInput => {
if (employeeNameInput) {
return true
} else {
console.log ("Please enter the name of this intern.")
}
}
},
{
type:"input",
message: "What is the ID of this employee?",
name: "internID",
validate: employeeIDInput => {
if (employeeIDInput) {
return true
} else {
console.log ("Please enter the ID of this employee.")
}
}
},
{
type:"input",
message: "What is his/her email address?",
name: "internEmail",
validate: employeeEmailInput => {
if (employeeEmailInput) {
return true
} else {
console.log ("Please enter an email address.")
}
}
},
{
type:"input",
message: "What school does this intern attend to?",
name: "internSchool",
validate: employeeSchoolInput => {
if (employeeSchoolInput) {
return true
} else {
console.log ("Please enter a school.")
}
}
},
])
.then(data => {
const intern = new Intern(data.internName, data.internID, data.internEmail, data.internSchool);
companyStaff.push(intern);
staffInfo();
})
}
function buildupHTML () {
console.log(companyStaff);
fs.writeFile(`./dist/${companyName}-HTML.html`, generateHTML (companyStaff, companyName), "UTF-8", (err) => {
if (err)
console.log(err);
else {
console.log("File written successfully\n");
console.log("The written has the following contents:");
console.log(fs.readFileSync(`./dist/${companyName}-HTML.html`, "utf8"));
}
})
}
// Function call to initialize app.
init ();