aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js
diff options
context:
space:
mode:
authorDanijel Andjelkovic <adanijel99@gmail.com>2022-03-01 21:54:41 +0100
committerDanijel Andjelkovic <adanijel99@gmail.com>2022-03-01 21:54:41 +0100
commit6c8128f9fd5a5d0be115806c35a21b3d683df8d6 (patch)
treef46c2f6b3b9b294ff32bd75c08ccdc9e7a8cc4ef /sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js
parent2400b84e95913665da6279114168148444b8f9ab (diff)
parent7d3640f824f46490b47bd95f1c5a16644f712068 (diff)
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into logo
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js110
1 files changed, 110 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js b/sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js
new file mode 100644
index 00000000..87f68b92
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/inquirer/lib/prompts/input.js
@@ -0,0 +1,110 @@
+'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;