-
-
Notifications
You must be signed in to change notification settings - Fork 190
/
index.js
executable file
·72 lines (65 loc) · 2.39 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
#!/usr/bin/env node
// Makes the script crash on unhandled rejections instead of silently
// ignoring them. In the future, promise rejections that are not handled will
// terminate the Node.js process with a non-zero exit code.
process.on('unhandledRejection', err => {
handleError(`UNHANDLED ERROR`, err);
});
const ora = require('ora');
const Table = require('cli-table3');
const JsonOutput = require('./utils/JsonOutput.js');
const cli = require('./utils/cli.js');
const init = require('./utils/init.js');
const theEnd = require('./utils/theEnd.js');
const handleError = require('cli-handle-error');
const getStates = require('./utils/getStates.js');
const getCountry = require('./utils/getCountry.js');
const getCountryChart = require('./utils/getCountryChart.js');
const getBar = require('./utils/getBar.js');
const getWorldwide = require('./utils/getWorldwide.js');
const getCountries = require('./utils/getCountries.js');
const {
style,
single,
colored,
singleStates,
coloredStates,
borderless
} = require('./utils/table.js');
// Cli.
const [input] = cli.input;
const xcolor = cli.flags.xcolor;
const sortBy = cli.flags.sort;
const reverse = cli.flags.reverse;
const limit = Math.abs(cli.flags.limit);
const chart = cli.flags.chart;
const log = cli.flags.log;
const bar = cli.flags.bar;
const minimal = cli.flags.minimal;
const json = cli.flags.json;
const options = { sortBy, limit, reverse, minimal, chart, log, json, bar };
(async () => {
// Init.
await init(minimal || json);
const spinner = ora({ text: '' });
input === 'help' && (await cli.showHelp(0));
const states = input === 'states' ? true : false;
const country = states ? '' : input;
// Table
const head = xcolor ? single : colored;
const headStates = xcolor ? singleStates : coloredStates;
const border = minimal ? borderless : {};
const OutputFormat = json ? JsonOutput : Table;
const output = !states
? new OutputFormat({ head, style, chars: border })
: new OutputFormat({ head: headStates, style, chars: border });
// Display data.
spinner.start();
const lastUpdated = await getWorldwide(output, states, json);
await getCountry(spinner, output, states, country, options);
await getStates(spinner, output, states, options);
await getCountries(spinner, output, states, country, options);
await getCountryChart(spinner, country, options);
await getBar(spinner, country, states, options);
theEnd(lastUpdated, states, minimal || json);
})();