-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
167 lines (134 loc) · 4.26 KB
/
index.jsx
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
import CommandLineArgs from 'command-line-args';
import CommandLineUsage from 'command-line-usage';
import AnsiEscape from 'ansi-escape-sequences';
import fs from 'fs';
import _ from 'lodash';
import path from 'path';
// const EnvironmentProduction = "production";
const EnvironmentDevelopment = "development";
class Config {
// config : {
// name : string,
// description : string,
// options : [ command-line-args-option ],
// note : string,
// aboutDescription : string or [ string ]
// }
constructor(config) {
this.config = config;
this.usage = CommandLineUsage(this.commandLineUsageOptions);
try {
this._values = CommandLineArgs(this.options);
} catch(error) {
this.error = error;
}
if (this.configFile) {
const configRelativePath = this.configFile;
try {
const configAbsPath = path.resolve(process.cwd(), configRelativePath);
let configFile = JSON.parse(fs.readFileSync(configAbsPath));
this._values = _.defaults(this._values, configFile);
} catch(error) {
this.error = new Error(`Reading config file '${configRelativePath}': ${error}`);
}
}
}
get environment() {
return this.config.environment ||
process.env.NODE_ENV ||
EnvironmentDevelopment;
}
get values() {
if (!this._values) {
return {}
}
return this._values;
}
get name() {
const { name } = this.config;
return name;
}
get description() {
const { description } = this.config;
return description;
}
get options() {
const defaultOptions = [
{ name: 'help', alias: 'h', type: Boolean, description: "Display this usage guide." },
{ name: 'config', alias: 'c', type: String, description: "Config file in JSON format." }
];
// { name: 'logLevel', alias: 'l', type: String, description: "Log level to send to Console: ERROR, WARNING, INFO, DEBUG, VERBOSE."},
// { name: 'logOutputFolder', alias: 'f', type: String, description: "Folder to store log outputs within."},
const configOptions = this.config.options;
if (!configOptions) {
return defaultOptions;
}
return defaultOptions.concat(configOptions);
}
get note() {
const { note } = this.config;
return note;
}
get aboutDescription() {
const { aboutDescription } = this.config;
return aboutDescription;
}
get commandLineUsageOptions() {
return [
{
header: this.name,
content: this.description
},
{
header: "Options",
optionList: this.options
},
{ // TODO: do not include if not specified
content: this.note
},
{ // TODO: do not include if not specified
header: "About",
content: this.aboutDescription
}
]
}
printUsage(message, exitProcess) {
if (_.isBoolean(message)) {
exitProcess = message;
message = undefined;
}
if (_.isString(message) && message.length > 0) {
console.log(" " + message)
} else if (_.isError(message)) {
console.log(AnsiEscape.format(" [red bold underline]{Error}[red bold]{:} " + message.message))
}
console.log(this.usage)
if (_.isBoolean(exitProcess) && exitProcess) {
process.exit()
}
}
get showHelp() {
const { help } = this.values;
return help;
}
get configFile() {
const { config } = this.values;
return config;
}
}
const parseOrExit = (config) => {
const configObject = new Config(config);
if (configObject.error) {
configObject.printUsage(configObject.error, true); // Will exit process
// return
}
if (configObject.showHelp) {
configObject.printUsage(true); // Will exit process
// return
}
return configObject;
}
export default {
Config,
parseOrExit
}