-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
88 lines (78 loc) · 1.67 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
#!/usr/bin/env node
const program = require("commander");
const { prompt } = require("inquirer");
const {
addCustomer,
findCustomer,
findAllCustomer,
updateCustomer,
deleteCustomer,
} = require("./methods");
program.version("1.0.0").description("Customer management cli tool.");
const questions = [
{
type: "input",
name: "firstName",
message: "Customer's first name ?",
},
{
type: "input",
name: "lastName",
message: "Customer's last name ?",
},
{
type: "input",
name: "phone",
message: "Customer's phone number ?",
},
{
type: "input",
name: "email",
message: "Customer's email ?",
},
];
// program
// .command("add <firstName> <lastName> <phone> <email>")
// .alias("a")
// .description("Add a customer.")
// .action((firstName, lastName, phone, email) => {
// addCustomer({ firstName, lastName, phone, email });
// });
program
.command("add")
.alias("a")
.description("Add a customer.")
.action(async () => {
const answers = await prompt(questions);
addCustomer(answers);
});
program
.command("find <name>")
.alias("f")
.description("Find customers.")
.action((name) => {
findCustomer(name);
});
program
.command("list")
.alias("l")
.description("Find all customers.")
.action(() => {
findAllCustomer();
});
program
.command("update <id>")
.alias("u")
.description("Update customer.")
.action(async (id) => {
const answers = await prompt(questions);
updateCustomer(id, answers);
});
program
.command("delete <id>")
.alias("d")
.description("Delete customer")
.action((id) => {
deleteCustomer(id);
});
program.parse(process.argv);