-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
187 lines (155 loc) · 4.28 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
const employeeList = [
{
name: 'Jan',
officeNum: 1,
phoneNum: '222-222-2222'
},
{
name: 'Juan',
officeNum: 304,
phoneNum: '489-789-8789'
},
{
name: 'Margie',
officeNum: 789,
phoneNum: '789-789-7897'
},
{
name: 'Sara',
officeNum: 32,
phoneNum: '222-789-4654'
},
{
name: 'Tyrell',
officeNum: 3,
phoneNum: '566-621-0452'
},
{
name: 'Tasha',
officeNum: 213,
phoneNum: '789-766-5675'
},
,
{
name: 'Ty',
officeNum: 211,
phoneNum: '789-766-7865'
},
{
name: 'Sarah',
officeNum: 345,
phoneNum: '222-789-5231'
}
];
//Functions
const inputCommand = prompt('Enter Command');
const commandList = ['print', 'verify', 'lookup', 'contains', 'update', 'add', 'delete'];
render('------------ OUTPUT --------------')
for (let i = 0; i < commandList.length; i++) {
if (inputCommand === commandList[0]) {
print();
}
else if (inputCommand === commandList[1]) {
verify();
}
else if (inputCommand === commandList[2]) {
lookup();
}
else if (inputCommand === commandList[3]) {
contains();
}
else if (inputCommand === commandList[4]) {
update();
}
else if (inputCommand === commandList[5]) {
addEmp();
}
else if (inputCommand === commandList[6]) {
deleteEmp();
}
};
//Print
function print() {
render(`Total Number of Employees: ${employeeList.length}`);
render(`-------------------------------------------------------`);
for (i = 0; i < employeeList.length; i++) {
render(`Name: ${employeeList[i].name}`);
render(`Office Number: ${employeeList[i].officeNum}`);
render(`Phone Number: ${employeeList[i].phoneNum}`);
render(`-------------------------------------------------------`);
}
}
//Verify
function verify() {
const inputName = prompt('Enter Employee Name').toLowerCase();
for (i = 0; i < employeeList.length; i++) {
if (inputName === employeeList[i].name.toLowerCase()) {
render(`True`);
} else {
render(`False`);
}
}
}
//Lookup
function lookup() {
const inputName = prompt('Enter Employee Name').toLowerCase();
for (i = 0; i < employeeList.length; i++) {
if (inputName === employeeList[i].name.toLowerCase()) {
render(`Name: ${employeeList[i].name}`);
render(`Office Number: ${employeeList[i].officeNum}`);
render(`Phone Number: ${employeeList[i].phoneNum}`);
} else {
render(`Employee Not Found`);
}
}
}
//Contains
function contains() {
const inputName = prompt('Enter Characters').toLowerCase();
for (i = 0; i < employeeList.length; i++) {
if (employeeList[i].name.toLowerCase().includes(inputName)) {
render(`Name: ${employeeList[i].name}`);
render(`Office Number: ${employeeList[i].officeNum}`);
render(`Phone Number: ${employeeList[i].phoneNum}`);
render(`-------------------------------------------------------`);
}
}
}
//Update
function update() {
const inputName = prompt('Enter Employee Name').toLowerCase();
for (i = 0; i < employeeList.length; i++) {
if (inputName === employeeList[i].name.toLowerCase()) {
const inputItem = prompt('Change Name, Office or Phone?').toLowerCase();
if (inputItem === 'name');
const newName = prompt('Enter New Name').toLowerCase();
employeeList[i][inputItem] = newName;
render(`name: ${employeeList[i].name}`);
render(`officeNum: ${employeeList[i].officeNum}`);
render(`phoneNum: ${employeeList[i].phoneNum}`);
}
}
}
//Add
function addEmp() {
const nameAdd = prompt('Enter Employee Name');
const officeAdd = prompt('Enter Office Number');
const phoneAdd = prompt('Enter Phone Number');
var employeeAdd = { name: nameAdd, officeNum: officeAdd, phoneNum: phoneAdd };
employeeList.push(employeeAdd);
render(`${nameAdd} has been added.`);
render(`-------------------------------------------------------`);
print();
}
//Delete
function deleteEmp() {
const nameDelete = prompt('Enter Employee Name').toLowerCase();
for (i = 0; i < employeeList.length; i++) {
if (nameDelete === employeeList[i].name.toLowerCase()) {
employeeList.splice(i, 1);
}
}
render(`${nameQuery} has been successfully removed from employee list!`);
render(`-------------------------------------------------------`);
print()
}