ticketlens 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -82,6 +82,18 @@ export function parseCommand(args) {
|
|
|
82
82
|
return { command: 'compliance', args: args.slice(1) };
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
if (first === 'login') {
|
|
86
|
+
return { command: 'login', args: args.slice(1) };
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
if (first === 'logout') {
|
|
90
|
+
return { command: 'logout', args: args.slice(1) };
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if (first === 'sync') {
|
|
94
|
+
return { command: 'sync', args: args.slice(1) };
|
|
95
|
+
}
|
|
96
|
+
|
|
85
97
|
// Anything that looks like a ticket key or any non-flag arg → fetch
|
|
86
98
|
return { command: 'fetch', args };
|
|
87
99
|
}
|
|
@@ -41,25 +41,30 @@ export async function promptSecret(label, { stream = process.stderr, existingVal
|
|
|
41
41
|
while (true) {
|
|
42
42
|
stream.write(` ${label} `);
|
|
43
43
|
const value = await new Promise(res => {
|
|
44
|
-
let buf
|
|
44
|
+
let buf = '';
|
|
45
|
+
let stars = 0; // visual asterisk count — may differ from buf.length after a paste
|
|
45
46
|
const stdin = process.stdin;
|
|
46
47
|
stdin.setRawMode(true);
|
|
47
48
|
stdin.resume();
|
|
48
49
|
stdin.setEncoding('utf8');
|
|
49
|
-
function onData(
|
|
50
|
-
if (
|
|
50
|
+
function onData(chunk) {
|
|
51
|
+
if (chunk === '\r' || chunk === '\n') {
|
|
51
52
|
stdin.setRawMode(false);
|
|
52
53
|
stdin.pause();
|
|
53
54
|
stdin.removeListener('data', onData);
|
|
54
55
|
stream.write('\n');
|
|
55
56
|
res(buf);
|
|
56
|
-
} else if (
|
|
57
|
-
if (buf.length > 0) {
|
|
58
|
-
|
|
57
|
+
} else if (chunk === '\x7f' || chunk === '\x08') {
|
|
58
|
+
if (buf.length > 0) {
|
|
59
|
+
buf = buf.slice(0, -1);
|
|
60
|
+
if (stars > 0) { stars--; stream.write('\b \b'); }
|
|
61
|
+
}
|
|
62
|
+
} else if (chunk === '\x03') {
|
|
59
63
|
process.exit(0);
|
|
60
64
|
} else {
|
|
61
|
-
buf
|
|
62
|
-
|
|
65
|
+
buf += chunk;
|
|
66
|
+
stars += chunk.length;
|
|
67
|
+
stream.write('*'.repeat(chunk.length));
|
|
63
68
|
}
|
|
64
69
|
}
|
|
65
70
|
stdin.on('data', onData);
|