You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
773 B
35 lines
773 B
// Packages
|
|
const chalk = require('chalk');
|
|
|
|
module.exports = function(opts) {
|
|
return new Promise((resolve, reject) => {
|
|
opts.forEach(([, text], i) => {
|
|
console.log(`${chalk.gray('>')} [${chalk.bold(i + 1)}] ${text}`);
|
|
});
|
|
|
|
const ondata = v => {
|
|
const s = v.toString();
|
|
|
|
const cleanup = () => {
|
|
process.stdin.setRawMode(false);
|
|
process.stdin.removeListener('data', ondata);
|
|
};
|
|
|
|
if (s === '\u0003') {
|
|
cleanup();
|
|
reject(new Error('Aborted'));
|
|
return;
|
|
}
|
|
|
|
const n = Number(s);
|
|
if (opts[n - 1]) {
|
|
cleanup();
|
|
resolve(opts[n - 1][0]);
|
|
}
|
|
};
|
|
|
|
process.stdin.setRawMode(true);
|
|
process.stdin.resume();
|
|
process.stdin.on('data', ondata);
|
|
});
|
|
};
|
|
|