-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
398 lines (377 loc) · 11.4 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
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
const mysql = require('mysql2');
const inquirer = require('inquirer');
const consoleTable = require('console.table')
// DB Connection
const connection = mysql.createConnection({
host: '127.0.0.1',
port: '3306',
user: 'user',
password: 'password',
database: 'employees_db'
})
// Check the connection
connection.connect(function (err) {
if (err) throw err;
options();
})
// List of options to choose
function options() {
inquirer.prompt({
name: 'action',
type: 'list',
message: 'You have accessed employee database. Please choose from the following options.',
choices: [
'View all employees',
'View all departments',
'View all roles',
'View employees by manager',
'View employees by department',
'View department budgets',
'Add an employee',
'Add a department',
'Add a role',
'Update employee manager',
'Delete a department',
'Delete a role',
'Delete an employee',
'EXIT'
]
}).then(function (answer) {
switch (answer.action) {
case 'View all employees':
viewEmployees();
break;
case 'View all departments':
viewDepartments();
break;
case 'View all roles':
viewRoles();
break;
case 'View employees by manager':
viewEmployeesByManager();
break;
case 'View employees by department':
viewEmployeesByDepartment();
break;
case 'View department budgets':
viewDepartmentBudget();
break;
case 'Add an employee':
addEmployee();
break;
case 'Add a department':
addDepartment();
break;
case 'Add a role':
addRole();
break;
case 'Update employee manager':
updateManager();
break;
case 'Delete a department':
deleteDepartment();
break;
case 'Delete a role':
deleteRole();
break;
case 'Delete an employee':
deleteEmployee();
break;
case 'EXIT':
exitApp();
break;
default:
break;
}
})
};
// Employees in the DB
function viewEmployees() {
var query = 'SELECT * FROM employee';
connection.query(query, function (err, res) {
if (err) throw err;
console.log(res.length + ' employees found!');
console.table('All Employees:', res);
options();
})
};
// Departments in the DB
function viewDepartments() {
var query = 'SELECT * FROM department';
connection.query(query, function (err, res) {
if (err) throw err;
console.table('All Departments:', res);
options();
})
};
// Roles in the DB
function viewRoles() {
var query = 'SELECT * FROM role';
connection.query(query, function (err, res) {
if (err) throw err;
console.table('All Roles:', res);
options();
})
};
// BONUS: View employees by manager
function viewEmployeesByManager() {
const sql = `SELECT employee.first_name,
employee.last_name,
employee.manager_id AS manager
FROM employee
LEFT JOIN role ON employee.manager_id = role.id
LEFT JOIN department ON role.department_id = department.id`;
connection.query(sql, (error, response) => {
if (error) throw error;
console.log('Employees by Manager:');
console.table(response);
options();
});
};
// BONUS: View employees by department
function viewEmployeesByDepartment() {
const sql = `SELECT employee.first_name,
employee.last_name,
department.name AS department
FROM employee
LEFT JOIN role ON employee.role_id = role.id
LEFT JOIN department ON role.department_id = department.id`;
connection.query(sql, (error, response) => {
if (error) throw error;
console.log('Employees by Department:');
console.table(response);
options();
});
};
// BONUS: View budget By Department
function viewDepartmentBudget() {
console.log('Budget By Department:');
const sql = `SELECT department.id AS id,
department.name AS name,
SUM(salary) AS budget
FROM role
INNER JOIN department ON role.id = department.id GROUP BY role.id`;
connection.query(sql, (error, response) => {
if (error) throw error;
console.table(response);
options();
});
};
// Add an employee to the DB
function addEmployee() {
connection.query('SELECT * FROM role', function (err, res) {
if (err) throw err;
inquirer.prompt([
{
name: 'first_name',
type: 'input',
message: "What is the employee's fist name? ",
},
{
name: 'last_name',
type: 'input',
message: "What is the employee's last name? "
},
{
name: 'manager_id',
type: 'input',
message: "What is the employee's manager's ID? "
},
{
name: 'role',
type: 'list',
choices: function () {
var roleArray = [];
for (let i = 0; i < res.length; i++) {
roleArray.push(res[i].title);
}
return roleArray;
},
message: "What is this employee's role? "
}
]).then(function (answer) {
let role_id;
for (let a = 0; a < res.length; a++) {
if (res[a].title == answer.role) {
role_id = res[a].id;
console.log(role_id)
}
}
connection.query(
'INSERT INTO employee SET ?',
{
first_name: answer.first_name,
last_name: answer.last_name,
manager_id: answer.manager_id,
role_id: role_id,
},
function (err) {
if (err) throw err;
console.log('Your employee has been added!');
viewEmployees();
})
})
})
};
// Add a department to the DB
function addDepartment() {
inquirer.prompt([
{
name: 'newDepartment',
type: 'input',
message: 'Which department would you like to add?'
}
]).then(function (answer) {
connection.query(
'INSERT INTO department SET ?',
{
name: answer.newDepartment
});
var query = 'SELECT * FROM department';
connection.query(query, function (err, res) {
if (err) throw err;
console.log('Your department has been added!');
console.table('All Departments:', res);
viewDepartments();
})
})
};
// Add a role to the DB
function addRole() {
connection.query('SELECT * FROM department', function (err, res) {
if (err) throw err;
inquirer.prompt([
{
name: 'new_role',
type: 'input',
message: "What new role would you like to add?"
},
{
name: 'salary',
type: 'input',
message: 'What is the salary of this role? (Enter a number)'
},
{
name: 'Department',
type: 'list',
choices: function () {
var deptArry = [];
for (let i = 0; i < res.length; i++) {
deptArry.push(res[i].name);
}
return deptArry;
},
}
]).then(function (answer) {
let department_id;
for (let a = 0; a < res.length; a++) {
if (res[a].name == answer.Department) {
department_id = res[a].id;
}
}
connection.query(
'INSERT INTO role SET ?',
{
title: answer.new_role,
salary: answer.salary,
department_id: department_id
},
function (err, res) {
if (err) throw err;
console.log('Your new role has been added!');
console.table('All Roles:', res);
viewRoles();
})
})
})
};
// BONUS: Update employee manager
function updateManager() {
inquirer.prompt([
{
type: "input",
message: "Enter the employee's ID you want to be updated",
name: "updateManager"
},
{
type: "input",
message: "Enter the new Manager ID for that employee",
name: "newManager"
}
]).then(function (res) {
const updateManager = res.updateManager;
const newManager = res.newManager;
const queryUpdate = `UPDATE employee SET manager_id = "${newManager}" WHERE id = "${updateManager}"`;
connection.query(queryUpdate, function (err, res) {
if (err) {
throw err;
}
console.table(res);
viewEmployees();
})
});
}
// BONUS: Delete a department in the DB
async function deleteDepartment() {
const answer = await inquirer.prompt([
{
name: "first",
type: "input",
message: "Enter the department name you want to remove: "
}
]);
connection.query('DELETE FROM department WHERE ?',
{
name: answer.first
},
function (err) {
if (err) throw err;
}
)
console.log('Department has been removed on the system!');
viewDepartments();
};
// BONUS: Delete a role in the DB
async function deleteRole() {
const answer = await inquirer.prompt([
{
name: "first",
type: "input",
message: "Enter the role ID you want to remove: "
}
]);
connection.query('DELETE FROM role WHERE ?',
{
id: answer.first
},
function (err) {
if (err) throw err;
}
)
console.log('Role has been removed on the system!');
viewRoles();
};
// BONUS: Delete an employee in the DB
async function deleteEmployee() {
const answer = await inquirer.prompt([
{
name: "first",
type: "input",
message: "Enter the employee ID you want to remove: "
}
]);
connection.query('DELETE FROM employee WHERE ?',
{
id: answer.first
},
function (err) {
if (err) throw err;
}
)
console.log('Employee has been removed on the system!');
viewEmployees();
};
// Exit the app
function exitApp() {
connection.end();
};