This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
forked from KamiKillertO/inquirer-select-directory
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
562 lines (460 loc) · 14.5 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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
// @flow
/**
* `fs-selector` type prompt
*/
const rx = require('rx-lite');
const chalk = require('chalk');
const figures = require('figures');
const cliCursor = require('cli-cursor');
const Base = require('inquirer/lib/prompts/base');
const observe = require('inquirer/lib/utils/events');
const Paginator = require('inquirer/lib/utils/paginator');
const Choices = require('inquirer/lib/objects/choices');
const Separator = require('inquirer/lib/objects/separator');
const { filter, share, flatMap, map, take, takeUntil, tap } = require('rxjs/operators');
const rxjs = require('rxjs')
const path = require('path');
const fs = require('fs');
/**
* The "current directory" identifier.
*/
const CURRENT = '.';
/**
* The "previous directory" identifier.
*/
const BACK = '..';
/**
*
* @param {any} val
* @param {string} expectedType
* @param {any} fallbackVal
* @returns {any} `val` if it has the type `expectedType`. `fallbackVal` otherwise.
*/
const getIfHasExpectedType = (val /*: any */, expectedType /*: string */, fallbackVal /*: any */) =>
(typeof val === expectedType) ? val : fallbackVal;
class FSPrompt extends Base {
constructor(
questions /*: Array<any> */,
rl /*: readline$Interface */,
answers /*: Array<any> */
) {
super(questions, rl, answers);
const { options } = this.opt;
// validate mandatory parameters
if (typeof this.opt.basePath !== 'string') {
this.throwParamError('basePath');
}
this.currentPath = path.isAbsolute(this.opt.basePath)
? path.resolve(this.opt.basePath)
: path.resolve(process.cwd(), this.opt.basePath);
// checks if `currentPath` is a valid directory
if (fs.existsSync(this.currentPath)) {
if (!fs.lstatSync(this.currentPath).isDirectory()) {
throw new Error(`'${this.currentPath}' is not a directory`);
}
} else {
throw new Error(`No such directory: '${this.currentPath}'`);
}
const defaultIcons = {
currentDir: '\u{1F4C2}', // open file folder emoji
dir: '\u{1F4C1}', // file folder emoji
file: '\u{1F4C4}', // page facing up emoji
};
/* initialize options with default values */
this.opt.default = getIfHasExpectedType(this.opt.default, 'string', CURRENT);
this.opt.displayFiles = true;
this.opt.displayHidden = false;
this.opt.canSelectFile = true;
this.opt.icons = defaultIcons;
this.opt.shouldDisplayItem = undefined;
if (typeof options === 'object') {
this.opt.displayFiles = getIfHasExpectedType(options.displayFiles, 'boolean', this.opt.displayFiles);
this.opt.displayHidden = getIfHasExpectedType(options.displayHidden, 'boolean', this.opt.displayHidden);
this.opt.canSelectFile = getIfHasExpectedType(options.canSelectFile, 'boolean', this.opt.canSelectFile);
this.opt.shouldDisplayItem = getIfHasExpectedType(options.shouldDisplayItem, 'function', this.opt.shouldDisplayItem);
if (typeof options.icons === 'object') {
Object.assign(this.opt.icons, options.icons);
} else if (options.icons === false) {
this.opt.icons = false
}
}
this.root = path.parse(this.currentPath).root;
this.opt.choices = new Choices(this.createChoices(), this.answers);
const initialPointer = this.opt.choices.realChoices.findIndex(realChoice => realChoice.name === this.opt.default);
this.selected = (initialPointer >= 0) ? initialPointer : 0;
this.searchTerm = '';
this.paginator = new Paginator();
}
/**
* Start the Inquiry session
* @param {Function} cb Callback when prompt is done
* @returns {this}
*/
_run(cb /*: Function */) /*: this */ {
this.searchMode = false;
this.done = cb;
const alphaNumericRegex = /\w|\.|-/i;
const events = observe(this.rl);
const keyUps = events.keypress.pipe(
filter(evt => evt.key.name === 'up'),
share()
);
const keyDowns = events.keypress.pipe(
filter(evt => evt.key.name === 'down'),
share()
);
const keySlash = events.keypress.pipe(
filter(evt => evt.value === '/' && !this.searchMode),
share()
);
const keyMinus = events.keypress.pipe(
filter(evt => evt.value === '-' && !this.searchMode),
share()
);
const dotKey = events.keypress.pipe(
filter(evt => evt.value === '.' && !this.searchMode),
share()
);
const alphaNumeric = events.keypress.pipe(
filter(evt => evt.key.name === 'backspace' || alphaNumericRegex.test(evt.value)),
share()
);
const searchTerm = keySlash.pipe(
flatMap(() => {
this.searchMode = true;
this.searchTerm = '';
this.render();
const end$ = new rxjs.Subject(); // https://rxjs-dev.firebaseapp.com/guide/subject
const done$ = rxjs.merge(events.line, end$); // https://rxjs-dev.firebaseapp.com/api/index/function/merge
return alphaNumeric.pipe(
map((evt) => {
if (evt.key.name === 'backspace' && this.searchTerm.length) {
this.searchTerm = this.searchTerm.slice(0, -1);
} else if (evt.value) {
this.searchTerm += evt.value;
}
if (this.searchTerm === '') {
end$.next(true);
}
return this.searchTerm;
}),//</map>
takeUntil(done$),
tap({
complete: () => {
this.searchMode = false;
this.render();
return false;
}
})//</tap>
);
}),//</flatMap>
share()
);
const outcome = this.handleSubmit(events.line);
outcome.drill.forEach(this.handleDrill.bind(this));
outcome.back.forEach(this.handleBack.bind(this));
keyUps.pipe(
takeUntil(outcome.done),
).forEach(this.onUpKey.bind(this));
keyDowns.pipe(
takeUntil(outcome.done),
).forEach(this.onDownKey.bind(this));
keyMinus.pipe(
takeUntil(outcome.done),
).forEach(this.handleBack.bind(this));
dotKey.pipe(
takeUntil(outcome.done),
).forEach(this.onSubmit.bind(this));
events.keypress.pipe(
takeUntil(outcome.done),
).forEach(this.hideKeyPress.bind(this));
searchTerm.pipe(
takeUntil(outcome.done),
).forEach(this.onKeyPress.bind(this));
outcome.done.forEach(this.onSubmit.bind(this));
// Hiding the cursor while prompting
cliCursor.hide();
// Initial rendering of the questions.
this.render();
return this;
}
/**
* Render the prompt to screen
* @param {string} [selectedPath]
*/
render(selectedPath /*: ?string */) {
// Render question
let message = this.getQuestion();
// Render choices or answer depending on the state
if (this.status === 'answered') {
if (selectedPath) {
message += chalk.cyan(selectedPath);
} else {
return; // bypassing re-render
}
} else {
updateChoices(this.opt.choices, this.currentPath);
message += chalk.gray('\nCurrent directory: ') + chalk.gray.bold(path.resolve(this.opt.basePath, this.currentPath));
message += chalk.dim('\n');
const choicesStr = listRender(this.opt.choices, this.selected, this.opt.icons);
message += '\n' + this.paginator.paginate(choicesStr, this.selected, this.opt.pageSize);
if (this.searchMode) {
message += ('\nSearch: ' + this.searchTerm);
} else {
message += chalk.dim('\n(Use "/" key to search this directory)');
message += chalk.dim('\n(Use "-" key to navigate to the parent folder');
}
}
this.screen.render(message);
}
/**
* When user press `enter` key
* @param {rxjs.Observable} e
* @returns {{done, back, drill}}
*/
handleSubmit(e /*: rxjs.Observable */) /*: ({done:rxjs.Observable, back:rxjs.Observable, drill:rxjs.Observable}) */ {
const obx = e.pipe(
map(() => this.opt.choices.getChoice(this.selected).value),
share()
);
const done = obx.pipe(
filter((choiceValue) => {
const choice = this.opt.choices.getChoice(this.selected);//realmente necessário?
return choiceValue === CURRENT || (this.opt.canSelectFile && choice.isFile);
}),
take(1)
);
const back = obx.pipe(
filter(choiceValue => choiceValue === BACK),
takeUntil(done)
);
const drill = obx.pipe(
filter(choiceValue => choiceValue !== BACK && choiceValue !== CURRENT),
takeUntil(done)
);
return {
done,
back,
drill,
};
}
/**
* When user selects to drill
* into a folder (by selecting folder name)
*/
handleDrill() {
const choice = this.opt.choices.getChoice(this.selected);
if (!choice.isDirectory) return;
this.currentPath = path.join(this.currentPath, choice.value);
this.opt.choices = new Choices(this.createChoices(), this.answers);
this.selected = 0;
// Rerender prompt
this.render();
}
/**
* When user selects ".." to go back in directory tree
*/
handleBack() {
this.currentPath = path.dirname(this.currentPath);
this.opt.choices = new Choices(this.createChoices(), this.answers);
this.selected = 0;
// Rerender prompt
this.render();
}
/**
* When user selects "." (`CURRENT`) or a file
*/
onSubmit() {
const choice = this.opt.choices.getChoice(this.selected);
const selectedPath = path.resolve(this.opt.basePath, this.currentPath, choice.value);
this.status = 'answered';
// Rerender prompt
this.render(selectedPath);
this.screen.done();
cliCursor.show();
this.done({
isDirectory: choice.isDirectory,
isFile: choice.isFile,
path: selectedPath,
});
}
/**
* When user press a key
*/
hideKeyPress() {
if (!this.searchMode) {
this.render();
}
}
/**
* When an `up` key is released.
*/
onUpKey() {
const len = this.opt.choices.realLength;
this.selected = (this.selected > 0) ? this.selected - 1 : len - 1;
this.render();
}
/**
* When a `down` key is pressed.
*/
onDownKey() {
const len = this.opt.choices.realLength;
this.selected = (this.selected < len - 1) ? this.selected + 1 : 0;
this.render();
}
/**
* When the slash (`/`) key is pressed.
*/
onSlashKey( /* evt */ ) {
this.render();
}
/**
* When a key is pressed.
*/
onKeyPress( /* evt */ ) {
for (let idx = 0; idx < this.opt.choices.realLength; ++idx) {
let item = this.opt.choices.realChoices[idx].name.toLowerCase();
if (item.indexOf(this.searchTerm) === 0) {
this.selected = idx;
break;
}
}
this.render();
}
/**
* Helper to create new choices based
* on previous selection
* @param {string} [basePath=this.currentPath]
* @returns {Array<string>}
*/
createChoices(basePath /*: ?string */) /*: Array<string> */ {
basePath = basePath || this.currentPath;
const directoryContent = getDirectoryContent(
this.root,
basePath,
this.opt.displayHidden,
this.opt.displayFiles,
this.opt.shouldDisplayItem
);
if (directoryContent.length > 0) {
directoryContent.push(new Separator());
}
return directoryContent;
}
}
/**
* Function for rendering list choices
* @param {Choices} choices
* @param {number} pointerIdx Position of the pointer
* @param {{currentDir:string, dir:string, file:string}} [icons]
* @return {string} Rendered content
*/
function listRender(
choices /*: Choices */,
pointerIdx /*: number */ ,
icons /*: ?any */) /*: string */ {
let output = '';
let separatorOffset = 0;
choices.forEach((choice, idx) => {
if (choice.type === 'separator') {
separatorOffset++;
output += ' ' + choice + '\n';
return;
}
const isSelected = (idx - separatorOffset) === pointerIdx;
let line = isSelected ? figures.pointer + ' ' : ' ';
if (icons) {
if (choice.isDirectory) {
if (choice.name === CURRENT) {
line += icons.currentDir;
} else {
line += icons.dir;
}
} else if (choice.isFile) {
line += icons.file;
}
line += ' ';
}
line += choice.name;
if (isSelected) {
line = chalk.cyan(line);
}
output += line + ' \n';
});
return output.replace(/\n$/, '');
}
/**
* Function for getting list of folders in directory
* @param {string} basePath The path the folder to get a list of containing folders
* @param {string} rootPath Path to root directory
* @param {boolean} [includeHidden=false] Set to `true` if you want to get hidden files
* @param {boolean} [includeFiles=false] Set to `true` if you want to get files
* @param {function} [includeFiles=undefined] shouldDisplayItem
* @return {string[]} Array of folder names inside of `basePath`
*/
function getDirectoryContent(
rootPath /*: string */,
basePath /*: string */,
includeHidden /*: ?boolean */,
includeFiles /*: ?boolean */,
shouldDisplayItem /*: ?function */,
) /*: Array<string> */ {
const itemsToShow = fs
.readdirSync(basePath)
.filter((file) => {
try {
const fullPath = path.join(basePath, file);
const stats = fs.lstatSync(fullPath);
if (stats.isSymbolicLink()) {
return false;
}
const isDir = stats.isDirectory();
const isFile = stats.isFile() && includeFiles;
const isValidItem = (isDir || isFile) &&
shouldDisplayItem ? shouldDisplayItem(isDir, isFile, fullPath) : true;
if (includeHidden) {
return isValidItem;
}
const isNotDotFile = path.basename(file).indexOf('.') !== 0;
return isValidItem && isNotDotFile;
} catch (err) {
return false;
}
})
.sort();
if (shouldDisplayItem) {
if (basePath !== rootPath && shouldDisplayItem(true, false, path.format({dir: basePath, base: '..'}))) {
itemsToShow.unshift(BACK);
}
if (shouldDisplayItem(true, false, path.format({dir: basePath, base: '.'}))) {
itemsToShow.unshift(CURRENT);
}
} else {
itemsToShow.unshift(BACK, CURRENT);
}
return itemsToShow;
}
/**
* Attach filesystem metadata to `choices` elements
* @param {Choices} choices
* @param {string} basePath
*/
function updateChoices(
choices /*: Choices */,
basePath /*: string */) {
choices.forEach((choice, idx) => {
if (choice.type !== undefined) return;
try {
const stats = fs.lstatSync( path.join(basePath, choice.value) );
choice.isDirectory = stats.isDirectory();
choice.isFile = stats.isFile();
choices[idx] = choice;
} catch (err) {
// console.error(err);
}
});
}
/**
* Module exports
*/
module.exports = FSPrompt;