-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
466 lines (434 loc) · 12.4 KB
/
server.js
File metadata and controls
466 lines (434 loc) · 12.4 KB
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
const inquirer = require("inquirer");
const mysql = require("mysql");
const cTable = require("console.table");
const util = require("util");
const connection = mysql.createConnection({
host: "localhost",
port: 3306,
user: "root",
password: "password",
database: "employees_db",
});
connection.connect(function (err) {
if (err) throw err;
console.log("connected as id " + connection.threadId);
runTracker();
});
connection.query = util.promisify(connection.query);
function runTracker() {
inquirer
.prompt([
{
type: "list",
name: "selection",
message: "What would you like to do?",
choices: [
"Add a new Department",
"Add a new Role",
"Add a new Employee",
"View All Departments",
"View All Roles",
"View All Employees",
"Delete a Department",
"Delete a Role",
"Delete an Employee",
"Update Employee Role",
"Exit",
],
},
])
.then(({ selection }) => {
switch (selection) {
case "Add a new Department":
addDepartment();
break;
case "Add a new Role":
addRole();
break;
case "Add a new Employee":
addEmployee();
break;
case "View All Departments":
viewDepartments();
break;
case "View All Roles":
viewRoles();
break;
case "View All Employees":
viewEmployees();
break;
case "Delete a Department":
deleteDepartment();
break;
case "Delete a Role":
deleteRole();
break;
case "Delete an Employee":
deleteEmployee();
break;
case "Update Employee Role":
updateEmployeeRole();
break;
case "Exit":
exit();
default:
console.log("Hope you have a wonderful day!");
}
});
}
// Add Department Section
const addDepartment = () => {
console.log("add department here");
inquirer
.prompt({
name: "department",
message: "What Department would you like to add?",
type: "input",
})
.then(({ department }) => {
connection.query(
`INSERT INTO department SET ?`,
{
name: department,
},
(err) => {
if (err) throw err;
console.log(`New Department: ${department} was added!`);
viewDepartments();
}
);
});
};
// Add Role Section
function addRole() {
connection.query("SELECT * FROM department", (err, res) => {
if (err) throw err;
inquirer
.prompt([
{
name: "title",
type: "input",
message: "What is the role's title?",
},
{
name: "salary",
type: "input",
message: "What is the role's salary?",
},
{
name: "deptName",
type: "list",
message: "What department does this role belong to?",
choices: function () {
let choiceArray = [];
for (let i = 0; i < res.length; i++) {
choiceArray.push({ name: res[i].name, value: res[i].id });
}
return choiceArray;
},
},
])
.then((userInput) => {
connection.query(
"INSERT INTO role SET ?",
{
title: userInput.title,
salary: userInput.salary,
department_id: userInput.deptName,
},
function (err, res) {
if (err) throw err;
runTracker();
}
);
});
});
}
// Add Employee Section
const addEmployee = () => {
console.log("Adding a new employee.");
let addNewEmployee = {};
connection.query("SELECT * FROM role", (err, res) => {
if (err) throw err;
console.log(res);
const departmentChoices = res.map((row) => ({
value: row.id,
name: row.name,
}));
return inquirer
.prompt([
{
type: "input",
name: "first_name",
message: "What is the employee's first name?",
},
{
type: "input",
name: "last_name",
message: "What is the employee's last name?",
},
{
type: "list",
name: "allRoles",
message: "What is the employee's role?",
choices: function () {
let rolesArray = [];
for (let i = 0; i < res.length; i++) {
rolesArray.push(res[i].title);
}
return rolesArray;
},
},
{
type: "list",
name: "whichDepartment",
message: "What department is the employee in?",
choices: departmentChoices,
},
])
.then((response) => {
{
addNewEmployee.first_name = response.first_name;
addNewEmployee.last_name = response.last_name;
connection.query(
`SELECT * FROM role WHERE title = ?`,
response.allRoles,
(err, res) => {
if (err) throw err;
addNewEmployee.role_id = res[0].id;
}
);
connection.query("SELECT * FROM employee", (err, res) => {
if (err) throw err;
inquirer
.prompt([
{
type: "list",
name: "manager_name",
message: "Who is the employee's manager?",
choices: function () {
let managerArray = [];
for (let i = 0; i < res.length; i++) {
managerArray.push(res[i].first_name);
}
return managerArray;
},
},
])
.then(
(response) => {
connection.query(
"SELECT id FROM employee WHERE first_name = ?",
response.manager_name,
(err, res) => {
if (err) throw err;
addNewEmployee.manager_id = res[0].id;
connection.query(
"INSERT INTO employee SET ?",
addNewEmployee,
(err, res) => {
if (err) throw err;
runTracker();
}
);
}
);
},
function (err, res) {
if (err) throw err;
console.log("New employee added!");
}
);
runTracker();
});
}
})
.catch((err) => {
console.log(err);
});
});
};
// View Department Section
viewDepartments = () => {
console.log("View all departments.");
connection.query(`SELECT * FROM department`, (err, res) => {
if (err) throw err;
console.table(res);
console.log("-----------------");
runTracker();
});
};
// View Role Section
viewRoles = () => {
console.log("View all roles.");
connection.query(`SELECT * FROM role`, (err, res) => {
if (err) throw err;
console.table(res);
console.log("-----------------");
runTracker();
});
};
// View Employee Section
const viewEmployees = () => {
connection.query("select * from employee;", (err, res) => {
console.table(res);
console.log("-----------------");
runTracker();
});
};
// Delete a Department Section
function deleteDepartment() {
connection.query("SELECT * FROM department", function (err, results) {
if (err) throw err;
inquirer
.prompt([
{
name: "removeDept",
type: "list",
choices: function () {
let choiceArray = [];
for (var i = 0; i < results.length; i++) {
choiceArray.push(results[i].name);
}
return choiceArray;
},
message: "Which department would you like to remove?",
},
])
.then(function (answer) {
let query = "DELETE FROM department WHERE name = ?;";
connection.query(query, answer.removeDept, function (err, res) {
if (err) throw err;
console.log("Department successfully deleted");
runTracker();
});
});
});
}
// Delete a Role Section
function deleteRole() {
connection.query("SELECT * FROM role", function (err, results) {
if (err) throw err;
inquirer
.prompt([
{
name: "removeRole",
type: "list",
choices: function () {
let choiceArray = [];
for (var i = 0; i < results.length; i++) {
choiceArray.push(results[i].title);
}
return choiceArray;
},
message: "Which role would you like to remove?",
},
])
.then(function (answer) {
let query = "DELETE FROM role WHERE title = ?;";
connection.query(query, answer.removeRole, function (err, res) {
if (err) throw err;
console.log("Role successfully deleted");
runTracker();
});
});
});
}
// Delete an Employee Section
function deleteEmployee() {
connection.query("SELECT * FROM employee", function (err, results) {
if (err) throw err;
inquirer
.prompt([
{
name: "removeEmployee",
type: "list",
choices: function () {
let choiceArray = [];
for (var i = 0; i < results.length; i++) {
choiceArray.push(results[i].first_name);
}
return choiceArray;
},
message: "Which employee would you like to remove?",
},
])
.then(function (answer) {
let query = "DELETE FROM employee WHERE first_name = ?;";
connection.query(query, answer.removeEmployee, function (err, res) {
if (err) throw err;
console.log("Employee successfully deleted");
runTracker();
});
});
});
}
// Update Employee Role Section
function updateEmployeeRole() {
let newRole = {};
connection.query(
"SELECT employee.id, employee.first_name, employee.last_name, role.title, role.salary, department.name AS department, e2.first_name AS manager FROM employee LEFT JOIN employee AS e2 ON e2.id = employee.manager_id JOIN role ON employee.role_id = role.id JOIN department ON role.department_id = department.id ORDER BY employee.id",
(err, res) => {
if (err) throw err;
inquirer
.prompt([
{
name: "updateEmployee",
type: "list",
message: "Which employee would you like to update?",
choices: function () {
let choiceArray = [];
for (var i = 0; i < res.length; i++) {
choiceArray.push(res[i].first_name);
}
return choiceArray;
},
},
])
.then(function (userInput) {
newRole.first_name = userInput.updateEmployee;
connection.query("SELECT * FROM role", (err, res) => {
if (err) throw err;
inquirer
.prompt([
{
name: "updateRole",
type: "list",
message:
"What would you like you to change their role title to?",
choices: function () {
let choiceArray = [];
for (var i = 0; i < res.length; i++) {
choiceArray.push(res[i].title);
}
return choiceArray;
},
},
])
.then(function (userInput) {
connection.query(
"SELECT * FROM role WHERE title = ?",
userInput.updateRole,
(err, res) => {
if (err) throw err;
newRole.role_id = res[0].id;
connection.query(
"UPDATE employee SET role_id = ? WHERE first_name = ?",
[newRole.role_id, newRole.first_name],
(err, res) => {
if (err) throw err;
runTracker();
}
);
}
);
});
});
});
}
);
}
// Exit/Quit Section
function exit() {
connection.end();
}