-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcommands.js
More file actions
126 lines (112 loc) · 3.2 KB
/
commands.js
File metadata and controls
126 lines (112 loc) · 3.2 KB
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
#!/usr/bin/env node
const program = require('commander')
const {prompt} = require('inquirer')
const packageJson = require('./package.json');
let allColors = "blue, black, red, green, orange, violet"
const {
getCommands,
addCommands,
removeCommands,
logout,
signInIfUserExists,
getUserInfo,
successLog,
errorLog,
processingLog,
login,
checkIfLoginValid
} = require('./app')
const questions = [
{
type: 'input',
name: "command",
message: "Enter the command..."
},
{
type: 'input',
name: "description",
message: "Enter what does this command do..."
},
{
type: 'list',
name: "color",
message: "What color you want your command to be associated with...",
choices: ['Blue', 'Red', 'Green', 'Black', 'Violet', 'Orange'],
}
]
const removeQuestion = {
name: 'docID',
type: 'input',
message: 'Please enter the ID of the command you want to delete.',
}
program
.command('login')
.description('Login into your Andronix account.')
.action(() => login())
program
.command('logout')
.description('Logout of your Andronix account.')
.action(() => logout())
program
.command('info')
.description('Get some basic info about the current signed in user.')
.action(() => getUserInfo())
program
.command('hello')
.description('Nothing fancy...Just a sweet little hello! 🖐')
.action(async () => {
processingLog("Hello! Andronix Commands seems to be working okay.")
})
program
.version(packageJson.version)
.description('Andronix Commands CLI')
program
.command('remove')
.alias('r')
.description("Remove a command")
.action(async () => {
try {
await signInIfUserExists()
let isLoginValid = await checkIfLoginValid()
if (isLoginValid)
prompt(removeQuestion).then(docID => removeCommands(docID))
} catch (e) {
errorLog("Please login in before listing commands with 'acommands login'.")
}
})
program
.command('list')
.alias('l')
.option('-c, --color [value]', `Filter with colors | ${allColors}`)
.description(`Get all the commands or filter with -c [${allColors}]`)
.action(async (args) => {
try {
await signInIfUserExists()
let isLoginValid = await checkIfLoginValid()
if (isLoginValid)
getCommands(args.color)
} catch (e) {
errorLog("Please login in before listing commands with 'acommands login'.")
}
})
program
.command('add')
.alias('a')
.description('Add commands')
.action(async () => {
try {
await signInIfUserExists()
let isLoginValid = await checkIfLoginValid()
if (isLoginValid)
prompt(questions).then(answers => addCommands(answers))
} catch (e) {
errorLog("Please login in before listing commands with 'acommands login'.")
}
})
program.parse(process.argv)
let NO_COMMAND_SPECIFIED = program.args.length === 0;
// Handle it however you like
if (NO_COMMAND_SPECIFIED) {
// e.g. display usage
program.help();
}