forked from 0xcyp/address-book-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
483 lines (441 loc) · 16.4 KB
/
index.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
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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
//Order of operations
var inquirer = require("inquirer");
//opening of program, next menu will stem from coice (search or create)
var idCreator = 0;
var addressBook = []; //will fill with user objects
// var searchResult = {
// first_name: 'jane',
// last_name: 'stay',
// home_address_ln1: 'she lives',
// id: 4,
// typeof_address: ["home"]
// }; //dummy search result
var mainMenuQuestions = [{
name: "MenuChoices", //static
message: "How can I help you? (choose an option with arrow keys + [enter])",
type: "list",
choices: [{
name: 'create new user',
value: 'create'
}, {
name: 'search user',
value: 'search'
}, {
name: 'exit address book',
value: 'exit'
}]
}];
var searchMenu = [{
name: 'search',
message: 'Search by name',
type: "input",
}];
var foundMenu = [{
name: 'found',
message: 'What would you like to do now?',
type: "list",
choices: [{
name: 'Return to Main Menu',
value: 'return'
},{
name: 'Edit This Contact',
value: 'edit'
},{
name: 'Delete this Contact',
value: 'delete'
}
]
}];
var delCheck = [{
name: 'sure',
message: 'Are you sure you want to delete this contact FOREVER?',
type: "confirm"
}]
function checkTrue(type, field) {
return function(answers) {
if (answers[type].indexOf(field) > -1) {
return true;
}
else {
return false;
}
}
}
function getNewEntryQuestions(defaultAnswers) {
if (!defaultAnswers) {
defaultAnswers = {};
}
var newEntryQuestions = [
{
name: 'first_name',
message: "FIRST",
default: defaultAnswers.first_name
}, {
name: 'last_name',
message: "LAST NAME",
default: defaultAnswers.last_name
}, {
name: 'birthday',
message: "BIRTHDAY",
default: defaultAnswers.birthday
}, {
name: 'typeof_address',
message: "ADDRESSTYPES",
type: "checkbox",
choices: [{
name: 'home'
}, {
name: 'work'
}, {
name: 'other'
}],
default: defaultAnswers.typeof_address
}, {
name: 'home_address_ln1',
message: "First line of the home address.",
default: defaultAnswers.home_address_ln1,
when: checkTrue("typeof_address", "home"),
},
{
name: 'home_address_ln2',
message: "Second line of the home address. (Optional)",
default: defaultAnswers.home_address_ln2,
when: checkTrue("typeof_address", "home")
},
{
name: 'home_address_city',
message: "City of home address",
default: defaultAnswers.home_address_city,
when: checkTrue("typeof_address", "home"),
},
{
name: 'home_address_province',
message: "Province of home address",
default: defaultAnswers.home_address_province,
when: checkTrue("typeof_address", "home")
},
{
name: 'work_address_ln1',
message: "First line of the work address.",
default: defaultAnswers.work_address_ln1,
when: checkTrue("typeof_address", "work")
}, {
name: 'work_address_ln2',
message: "Second line of the work address. (Optional)",
default: defaultAnswers.work_address_ln2,
when: checkTrue("typeof_address", "work")
},
{
name: 'work_address_city',
message: "City of home address",
default: defaultAnswers.work_address_city,
when: checkTrue("typeof_address", "work"),
}, {
name: 'work_address_province',
message: "Province of work address",
default: defaultAnswers.work_address_province,
when: checkTrue("typeof_address", "work")
},
{
name: 'other_address_ln1',
message: "First line of the other address.",
default: defaultAnswers.other_address_ln1,
when: checkTrue("typeof_address", "other")
}, {
name: 'other_address_ln2',
message: "Second line of the other address. (Optional)",
default: defaultAnswers.other_address_ln2,
when: checkTrue("typeof_address", "other")
},
{
name: 'other_address_city',
message: "City of other address",
default: defaultAnswers.other_address_city,
when: checkTrue("typeof_address", "other"),
}, {
name: 'other_address_province',
message: "Province of other address",
default: defaultAnswers.other_address_province,
when: checkTrue("typeof_address", "other")
}, {
name: 'typeof_phone',
message: "PHONETYPES",
type: "checkbox",
choices: [{
name: 'mobile'
}, {
name: 'home'
}, {
name: 'work'
}, {
name: 'alternate'
}],
default: defaultAnswers.typeof_phone
}, {
name: 'mobile_phone',
message: "Mobile phone number",
default: defaultAnswers.mobile_phone,
when: checkTrue("typeof_phone", "mobile")
}, {
name: 'home_phone',
message: "Home phone number",
default: defaultAnswers.home_phone,
when: checkTrue("typeof_phone", "home")
}, {
name: 'work_phone',
message: "Work phone number",
default: defaultAnswers.work_phone,
when: checkTrue("typeof_phone", "work")
}, {
name: 'alt_phone',
message: "Alternate phone number",
default: defaultAnswers.alt_phone,
when: checkTrue("typeof_phone", "alternate")
}, {
name: 'typeof_email',
message: "EMAILTYPES",
type: "checkbox",
choices: [{
name: 'home'
}, {
name: 'work'
}, {
name: 'other'
}],
default: defaultAnswers.typeof_email
}, {
name: 'home_email',
message: "Email (home)",
default: defaultAnswers.home,
when: checkTrue("typeof_email", "home")
}, {
name: 'work_email',
message: "Email (work)",
default: defaultAnswers.work,
when: checkTrue("typeof_email", "work")
}, {
name: 'other_email',
message: "Email (other)",
default: defaultAnswers.work,
when: checkTrue("typeof_email", "other")
},
];
return newEntryQuestions;
};
function searcher() {
inquirer.prompt(searchMenu, function(answers) {
var found = [];
addressBook.forEach(function(contact) { /// or empty gives everybody
if (contact.first_name === answers.search) {
found.push(contact)
}
else if (contact.last_name === answers.search) {
found.push(contact)
}
})
function matches(results) {
return [{
name: "match",
message: "Select someone to view, or make another choice.",
type: "list",
choices: function(answer) {
var allMatches = [];
allMatches = results.map(function(objEl) {
return {
name: objEl.first_name + " " + objEl.last_name,
value: objEl
}
})
allMatches.push({
name: "Return to Main Menu",
value: 'return'
}, {
name: "Try that search again.",
value: 'searchAgain'
})
return allMatches;
}
}]
}
// console.log(matches(found));
inquirer.prompt(matches(found), function(answers) {
if (answers.match === "return") {
mainMenu()
}
else if (answers.match === "searchAgain") {
console.log("Here we is.")
searcher()
}
else if (answers.match) {
console.log(answers.match);
displayCard(answers.match);
var matchId = answers.match.id;
var foundContact = answers.match;
inquirer.prompt(foundMenu, function(answers) {
if (answers.found === 'edit') {
inquirer.prompt(getNewEntryQuestions(foundContact), function(answers) {
addressBook = addressBook.filter(function(contact) {
if (contact.id !== matchId) { //so, if search result exists (has matching id), it's booted from the dataBase array and "new" (updated) pops to the end
return true;
}
})
answers.id = idCreator++;
addressBook.push(answers);
mainMenu();
console.log(answers)
})
} else if (answers.found === 'delete') {
inquirer.prompt(delCheck, function(answers) {
if(answers.sure === true){
addressBook = addressBook.filter(function(contact) {
console.log(matchId);
console.log(contact.id);
if (contact.id !== matchId) { //so, if search result exists (has matching id), it's booted from the dataBase array and "new" (updated) pops to the end
return true;
}
console.log(addressBook);
mainMenu();
});
} else {
displayCard(foundContact);
mainMenu();
}
});
} else {
mainMenu();
}
})
}
// searcher()
})
})
}
//searcher();
function editUser(answers) {
getNewEntryQuestions(answers);
console.log("WE GOOD!")
//mainMenu();
}
function displayCard(contact){
var Table = require('cli-table');
var table = new Table({chars: { 'top': '═' , 'top-mid': '╤' , 'top-left': '╔' , 'top-right': '╗'
, 'bottom': '═' , 'bottom-mid': '╧' , 'bottom-left': '╚' , 'bottom-right': '╝'
, 'left': '║' , 'left-mid': '╟' , 'mid': '─' , 'mid-mid': '┼'
, 'right': '║' , 'right-mid': '╢' , 'middle': '│' }});
table.push(['First Name', contact['first_name']]);
table.push(['Last Name', contact['last_name']]);
if(contact['birthday']){
table.push(['Birthday', contact['birthday']]);
}
if(contact['typeof_address'].length>0){
var homeAddressString = '';
var workAddressString = '';
var otherAddressString = '';
contact['typeof_address'].forEach(function(type){
switch(type){
case 'home':
if(contact['home_address_ln2'].length>0){
homeAddressString = 'home:\n'+contact['home_address_ln1']+', '+contact['home_address_ln2']+'\n'+contact['home_address_city']+', '+contact['home_address_province']+'\n';
}
else{
homeAddressString = 'home:\n'+contact['home_address_ln1']+'\n'+contact['home_address_city']+', '+contact['home_address_province']+'\n';
}
break;
case 'work':
if(contact['work_address_ln2'].length>0){
workAddressString = 'work:\n'+contact['work_address_ln1']+', '+contact['work_address_ln2']+'\n'+contact['work_address_city']+', '+contact['work_address_province']+'\n';
}
else{
workAddressString = 'work:\n'+contact['work_address_ln1']+'\n'+contact['work_address_city']+', '+contact['work_address_province']+'\n';
}
break;
case 'other':
if(contact['other_address_ln2'].length>0){
otherAddressString = 'other:\n'+contact['other_address_ln1']+', '+contact['other_address_ln2']+'\n'+contact['other_address_city']+', '+contact['other_address_province']+'\n';
}
else{
otherAddressString = 'other:\n'+contact['other_address_ln1']+'\n'+contact['other_address_city']+', '+contact['other_address_province']+'\n';
}
break;
}
});
table.push(['typeof_address',homeAddressString+workAddressString+otherAddressString]);
}
// if(contact['phoneNumbers'].length>0){
// var homePhone = '';
// var workPhone = '';
// var cellPhone = '';
// var otherPhone = '';
// contact['phoneNumbers'].forEach(function(type){
// switch(type){
// case 'home':
// homePhone = 'home: '+ contact['homePhone']+'\n';
// break;
// case 'work':
// workPhone = 'work: '+ contact['workPhone']+'\n';
// break;
// case 'cell':
// cellPhone = 'cell: '+ contact['cellPhone']+'\n';
// break;
// case 'other':
// otherPhone = 'other: '+ contact['otherPhone']+'\n';
// break;
// }
// });
// table.push(['Phone',homePhone+workPhone+cellPhone+otherPhone]);
// }
// if(contact['emailAddresses'].length>0){
// var personalEmail = '';
// var workEmail = '';
// var otherEmail = '';
// contact['emailAddresses'].forEach(function(type){
// switch(type){
// case 'personal':
// personalEmail = 'personal: '+ contact['personalEmail']+'\n';
// break;
// case 'work':
// workEmail = 'work: '+ contact['workEmail']+'\n';
// break;
// case 'other':
// otherEmail = 'other: '+ contact['otherEmail']+'\n';
// break;
// }
// });
// table.push(['Email',personalEmail+workEmail+otherEmail]);
// }
console.log(table.toString());
}
function mainMenu() {
// console.log(mainMenuQuestions);
function input() {
inquirer.prompt(mainMenuQuestions, function(answers) {
console.log(answers)
var user = {};
//console.log(answers);
if (answers.MenuChoices === 'search') {
searcher();
}
else if (answers.MenuChoices === 'create') {
// console.log(answers);
//console.log(newEntryQuestions);
inquirer.prompt(getNewEntryQuestions(), function(answers) {
answers.id = idCreator++;
user = answers;
// console.log(user);
addressBook.push(user);
console.log(addressBook)
input()
})
}
else if (answers.MenuChoices === 'exit') {
console.log("Youll be back");
// process.exit(0);
}
// console.log("you want to search");
//funciton searchEntries()
})
}
input()
}
mainMenu(); // must come after any variable that it uses has been defined
//delete with a filter method