-
Notifications
You must be signed in to change notification settings - Fork 4
/
server.js
234 lines (201 loc) · 5.29 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
//Dependencies found here
const inquirer = require("inquirer");
const mysql = require("mysql");
const cTable = require("console.table");
const db = require(".");
const connection = mysql.createConnection({
host: "localhost",
// Your port; if not 3306
port: 3306,
// Your username
user: "root",
// Your password
password: "Morpheus718",
database: "employee_info_db"
});
connection.connect(function(err) {
if (err) throw err;
console.log("connected as id " + connection.threadId);
startScreen();
// connection.end();//
});
//What the user will first see once logged into node
function startScreen() {
inquirer
.prompt({
type: "list",
choices: [
"Add department",
"Add role",
"Add employee",
"View departments",
"View roles",
"View employees",
"Update employee role",
"Quit"
],
message: "What would you like to do?",
name: "option"
})
.then(function(result) {
console.log("You entered: " + result.option);
switch (result.option) {
case "Add department":
addDepartment();
break;
case "Add role":
addRole();
break;
case "Add employee":
addEmployee();
break;
case "View departments":
viewDepartment();
break;
case "View roles":
viewRoles();
break;
case "View employees":
viewEmployees();
break;
case "Update employee role":
updateEmployee();
break;
default:
quit();
}
});
}
//All of the corresponding functions found below
function addDepartment() {
inquirer.prompt({
type: "input",
message: "What is the name of the department?",
name: "deptName"
}).then(function(answer){
connection.query("INSERT INTO department (name) VALUES (?)", [answer.deptName] , function(err, res) {
if (err) throw err;
console.table(res)
startScreen()
})
})
}
function addRole() {
inquirer
.prompt([
{
type: "input",
message: "What's the name of the role?",
name: "roleName"
},
{
type: "input",
message: "What is the salary for this role?",
name: "salaryTotal"
},
{
type: "input",
message: "What is the department id number?",
name: "deptID"
}
])
.then(function(answer) {
connection.query("INSERT INTO role (title, salary, department_id) VALUES (?, ?, ?)", [answer.roleName, answer.salaryTotal, answer.deptID], function(err, res) {
if (err) throw err;
console.table(res);
startScreen();
});
});
}
function addEmployee() {
inquirer
.prompt([
{
type: "input",
message: "What's the first name of the employee?",
name: "eeFirstName"
},
{
type: "input",
message: "What's the last name of the employee?",
name: "eeLastName"
},
{
type: "input",
message: "What is the employee's role id number?",
name: "roleID"
},
{
type: "input",
message: "What is the manager id number?",
name: "managerID"
}
])
.then(function(answer) {
connection.query("INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES (?, ?, ?, ?)", [answer.eeFirstName, answer.eeLastName, answer.roleID, answer.managerID], function(err, res) {
if (err) throw err;
console.table(res);
startScreen();
});
});
}
//Since we're using inquirer, we can pass the query into the method as an array
function updateEmployee() {
inquirer
.prompt([
{
type: "input",
message: "Which employee would you like to update?",
name: "eeUpdate"
},
{
type: "input",
message: "What do you want to update to?",
name: "updateRole"
}
])
.then(function(answer) {
// let query = `INSERT INTO department (name) VALUES ("${answer.deptName}")`
//let query = `'UPDATE employee SET role_id=${answer.updateRole} WHERE first_name= ${answer.eeUpdate}`;
//console.log(query);
connection.query('UPDATE employee SET role_id=? WHERE first_name= ?',[answer.updateRole, answer.eeUpdate],function(err, res) {
if (err) throw err;
console.table(res);
startScreen();
});
});
}
function viewDepartment() {
// select from the db
let query = "SELECT * FROM department";
connection.query(query, function(err, res) {
if (err) throw err;
console.table(res);
startScreen();
});
// show the result to the user (console.table)
}
function viewRoles() {
// select from the db
let query = "SELECT * FROM role";
connection.query(query, function(err, res) {
if (err) throw err;
console.table(res);
startScreen();
});
// show the result to the user (console.table)
}
function viewEmployees() {
// select from the db
let query = "SELECT * FROM employee";
connection.query(query, function(err, res) {
if (err) throw err;
console.table(res);
startScreen();
});
// show the result to the user (console.table)
}
function quit() {
connection.end();
process.exit();
}