From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../node_modules/inquirer/lib/prompts/input.js | 110 --------------------- 1 file changed, 110 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js (limited to 'sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js') diff --git a/sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js b/sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js deleted file mode 100644 index 87f68b92..00000000 --- a/sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js +++ /dev/null @@ -1,110 +0,0 @@ -'use strict'; -/** - * `input` type prompt - */ - -const chalk = require('chalk'); -const { map, takeUntil } = require('rxjs/operators'); -const Base = require('./base'); -const observe = require('../utils/events'); - -class InputPrompt extends Base { - /** - * Start the Inquiry session - * @param {Function} cb Callback when prompt is done - * @return {this} - */ - - _run(cb) { - this.done = cb; - - // Once user confirm (enter key) - const events = observe(this.rl); - const submit = events.line.pipe(map(this.filterInput.bind(this))); - - const validation = this.handleSubmitEvents(submit); - validation.success.forEach(this.onEnd.bind(this)); - validation.error.forEach(this.onError.bind(this)); - - events.keypress - .pipe(takeUntil(validation.success)) - .forEach(this.onKeypress.bind(this)); - - // Init - this.render(); - - return this; - } - - /** - * Render the prompt to screen - * @return {InputPrompt} self - */ - - render(error) { - let bottomContent = ''; - let appendContent = ''; - let message = this.getQuestion(); - const { transformer } = this.opt; - const isFinal = this.status === 'answered'; - - if (isFinal) { - appendContent = this.answer; - } else { - appendContent = this.rl.line; - } - - if (transformer) { - message += transformer(appendContent, this.answers, { isFinal }); - } else { - message += isFinal ? chalk.cyan(appendContent) : appendContent; - } - - if (error) { - bottomContent = chalk.red('>> ') + error; - } - - this.screen.render(message, bottomContent); - } - - /** - * When user press `enter` key - */ - - filterInput(input) { - if (!input) { - return this.opt.default == null ? '' : this.opt.default; - } - - return input; - } - - onEnd(state) { - this.answer = state.value; - this.status = 'answered'; - - // Re-render prompt - this.render(); - - this.screen.done(); - this.done(state.value); - } - - onError({ value = '', isValid }) { - this.rl.line += value; - this.rl.cursor += value.length; - this.render(isValid); - } - - /** - * When user press a key - */ - - onKeypress() { - this.state = 'touched'; - - this.render(); - } -} - -module.exports = InputPrompt; -- cgit v1.2.3