-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
309 lines (283 loc) · 8.16 KB
/
server.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
const inquirer = require("inquirer");
const mysql = require("mysql2");
require("dotenv").config();
const db = mysql.createConnection({
host: "localhost",
user: "root",
password: "",
database: "staff_db",
});
db.connect((err) => {
if (err) throw err;
console.log("Connected to the database");
start();
});
function start() {
inquirer
.prompt([
{
type: "list",
message: "Which would you like to do today?",
name: "selection",
choices: [
"View all departments",
"View all roles",
"View all employees",
"Add a department",
"Add a role",
"Add an employee",
"Update an employee role",
],
},
])
.then((answers) => {
switch (answers.selection) {
case "View all departments":
viewAllDepartments();
break;
// Add more cases as needed
case "View all roles":
viewAllRoles();
// Add logic for viewing all roles
break;
case "View all employees":
viewAllEmployees();
// Add logic for viewing all employees
break;
case "Add a department":
addDepartment();
// Add logic for adding a department
break;
case "Add a role":
addRole();
// Add logic for adding a role
break;
case "Add an employee":
// Add logic for adding an employee
addEmployee();
break;
case "Update an employee role":
updateEmployeeRole();
// Add logic for updating an employee role
break;
}
});
}
//this is where we viewAllDepartments
function viewAllDepartments() {
const query = "SELECT * FROM department";
db.query(query, (err, res) => {
if (err) throw err;
console.table(res);
//app restart
start();
});
}
//function to viewAllRoles
function viewAllRoles() {
const query = "SELECT * FROM role";
db.query(query, (err, res) => {
if (err) throw err;
console.table(res);
//app restart
start();
});
}
//function that viewAllEmployees
function viewAllEmployees() {
const query =
"SELECT id, first_name, last_name, role_id, manager_id FROM employee";
db.query(query, (err, res) => {
if (err) throw err;
console.table(res);
//application restart
start();
});
}
//function to addDepartment
function addDepartment() {
inquirer
.prompt({
type: "input",
name: "name",
message: "What is the name of the new department?",
})
.then((answers) => {
console.log(answers.name);
const query = `INSERT INTO department (name) VALUES ("${answers.name}")`;
db.query(query, (err) => {
if (err) throw err;
console.log(`Added department ${answers.name} to the database`);
//application reset
start();
console.log(answers.name);
});
});
}
//function to addRole();
function addRole() {
const query = "SELECT * FROM department";
db.query(query, (err, res) => {
if (err) throw err;
inquirer
.prompt([
{
type: "input",
name: "title",
message: "Enter the title of the new role:",
},
{
type: "input",
name: "salary",
message: "Enter the salary of the role:",
},
{
type: "list",
name: "department",
message: "Enter the department for the new role:",
choices: res.map((department) => department.id),
},
])
.then((answers) => {
console.log(answers);
//TODO: Needs to be fixed. Does not like data to be passed
const query = `INSERT INTO role (title, salary, department_id) VALUES (?, ?, ?)`;
db.query(
query,
[answers.title, Number(answers.salary), answers.department],
(err) => {
if (err) throw err;
console.log(
`Added role ${answers.title} with salary ${answers.salary} to the ${answers.department} department in the database.`
);
start();
}
);
});
});
}
function addEmployee() {
// First get the list of the employees
db.query(
"SELECT id, first_name, last_name, role_id, manager_id FROM employee",
(err, res) => {
if (err) {
console.log(err);
return;
}
const roles = res.map(({ id, title }) => ({
name: title,
value: id,
}));
// Retrieving list of employees from the database to use as a manager
db.query(
'SELECT id, CONCAT(first_name, " ", last_name) AS name FROM employee',
(err, res) => {
if (err) {
console.log(err);
return;
}
const manager = res.map(({ id, name }) => ({
name,
value: id,
}));
// Prompt the user for input
inquirer
.prompt([
{
type: "input",
name: "firstName",
message: "Enter the employee's first name: ",
},
{
type: "input",
name: "lastName",
message: "Enter the employee's last name: ",
},
{
type: "list",
name: "roleId",
message: "Select the employee's role: ",
choices: roles,
},
{
type: "list",
name: "managerId",
message: "Select the employee's manager: ",
choices: [{ name: "None", value: null }, ...manager],
},
])
.then((answers) => {
// Apply the answers into the DB
const sql =
"INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES (?, ?, ?, ?)";
const values = [
answers.firstName,
answers.lastName,
answers.roleId,
answers.managerId,
];
db.query(sql, values, (err) => {
if (err) {
console.log(err);
}
console.log("Employee added successfully!");
start();
});
});
}
);
}
);
}
//last part to work on
function updateEmployeeRole() {
const queryEmployees =
"SELECT employee.id, employee.first_name, employee.last_name FROM employee LEFT JOIN role ON employee.role_id = role.id";
const queryRoles = "SELECT * FROM role";
db.query(queryEmployees, (err, resEmployee) => {
if (err) throw err;
db.query(queryRoles, (err, resRoles) => {
if (err) throw err;
inquirer
.prompt([
{
type: "list",
name: "employee",
message: "Select the employee to update:",
choices: resEmployee.map(
(employee) => ({name: `${employee.first_name} ${employee.last_name}`,value: employee.id}),
),
},
{
type: "list",
name: "role",
message: "Select the new role:",
choices: resRoles.map((role) => ({name:role.title,value: role.id} )),
},
])
.then((answers) => {
console.log(answers);
const employee = resEmployee.find(
(employee) =>
`${employee.first_name} ${employee.last_name}` ===
answers.employee
);
const selectedRole = resRoles.find(
(role) => role.title === answers.role
);
const role = resRoles.find((role) => role.title === answers.role);
const query = "UPDATE employee SET role_id = ? WHERE id = ?";
db.query(query, [answers.role, answers.employee], (err, res) => {
if (err) {
console.log(err);
throw err;
}
console.log(`Updated employee's role in the database!`);
// Since you're updating the database asynchronously, you should call `start()` inside the callback function
start();
});
});
});
});
}