aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/inquirer/lib/ui/prompt.js
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-03-01 20:05:50 +0100
committerNevena Bojovic <nenabojov@gmail.com>2022-03-01 20:05:50 +0100
commit291803c31f829fe0d32bb3207bc11def95a7408c (patch)
treec7d43107d79291b19d8c9eceefbe91c9f9a52acf /sandbox/testAppNevena/Front/node_modules/inquirer/lib/ui/prompt.js
parent1fa69862057db4db53cfda5be9c24b4228ef63f7 (diff)
Urađena test aplikacija. Povezan front i back.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/inquirer/lib/ui/prompt.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/inquirer/lib/ui/prompt.js150
1 files changed, 150 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/inquirer/lib/ui/prompt.js b/sandbox/testAppNevena/Front/node_modules/inquirer/lib/ui/prompt.js
new file mode 100644
index 00000000..d9383879
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/inquirer/lib/ui/prompt.js
@@ -0,0 +1,150 @@
+'use strict';
+const _ = {
+ isPlainObject: require('lodash/isPlainObject'),
+ clone: require('lodash/clone'),
+ isArray: require('lodash/isArray'),
+ get: require('lodash/get'),
+ set: require('lodash/set'),
+ isFunction: require('lodash/isFunction'),
+};
+const { defer, empty, from, of } = require('rxjs');
+const { concatMap, filter, publish, reduce } = require('rxjs/operators');
+const runAsync = require('run-async');
+const utils = require('../utils/utils');
+const Base = require('./baseUI');
+
+/**
+ * Base interface class other can inherits from
+ */
+
+class PromptUI extends Base {
+ constructor(prompts, opt) {
+ super(opt);
+ this.prompts = prompts;
+ }
+
+ run(questions, answers) {
+ // Keep global reference to the answers
+ if (_.isPlainObject(answers)) {
+ this.answers = _.clone(answers);
+ } else {
+ this.answers = {};
+ }
+
+ // Make sure questions is an array.
+ if (_.isPlainObject(questions)) {
+ // It's either an object of questions or a single question
+ questions = Object.values(questions).every(
+ (v) => _.isPlainObject(v) && v.name === undefined
+ )
+ ? Object.entries(questions).map(([name, question]) => ({ name, ...question }))
+ : [questions];
+ }
+
+ // Create an observable, unless we received one as parameter.
+ // Note: As this is a public interface, we cannot do an instanceof check as we won't
+ // be using the exact same object in memory.
+ const obs = _.isArray(questions) ? from(questions) : questions;
+
+ this.process = obs.pipe(
+ concatMap(this.processQuestion.bind(this)),
+ publish() // Creates a hot Observable. It prevents duplicating prompts.
+ );
+
+ this.process.connect();
+
+ return this.process
+ .pipe(
+ reduce((answers, answer) => {
+ _.set(answers, answer.name, answer.answer);
+ return answers;
+ }, this.answers)
+ )
+ .toPromise(Promise)
+ .then(this.onCompletion.bind(this), this.onError.bind(this));
+ }
+
+ /**
+ * Once all prompt are over
+ */
+
+ onCompletion() {
+ this.close();
+
+ return this.answers;
+ }
+
+ onError(error) {
+ this.close();
+ return Promise.reject(error);
+ }
+
+ processQuestion(question) {
+ question = _.clone(question);
+ return defer(() => {
+ const obs = of(question);
+
+ return obs.pipe(
+ concatMap(this.setDefaultType.bind(this)),
+ concatMap(this.filterIfRunnable.bind(this)),
+ concatMap(() =>
+ utils.fetchAsyncQuestionProperty(question, 'message', this.answers)
+ ),
+ concatMap(() =>
+ utils.fetchAsyncQuestionProperty(question, 'default', this.answers)
+ ),
+ concatMap(() =>
+ utils.fetchAsyncQuestionProperty(question, 'choices', this.answers)
+ ),
+ concatMap(this.fetchAnswer.bind(this))
+ );
+ });
+ }
+
+ fetchAnswer(question) {
+ const Prompt = this.prompts[question.type];
+ this.activePrompt = new Prompt(question, this.rl, this.answers);
+ return defer(() =>
+ from(this.activePrompt.run().then((answer) => ({ name: question.name, answer })))
+ );
+ }
+
+ setDefaultType(question) {
+ // Default type to input
+ if (!this.prompts[question.type]) {
+ question.type = 'input';
+ }
+
+ return defer(() => of(question));
+ }
+
+ filterIfRunnable(question) {
+ if (
+ question.askAnswered !== true &&
+ _.get(this.answers, question.name) !== undefined
+ ) {
+ return empty();
+ }
+
+ if (question.when === false) {
+ return empty();
+ }
+
+ if (!_.isFunction(question.when)) {
+ return of(question);
+ }
+
+ const { answers } = this;
+ return defer(() =>
+ from(
+ runAsync(question.when)(answers).then((shouldRun) => {
+ if (shouldRun) {
+ return question;
+ }
+ })
+ ).pipe(filter((val) => val != null))
+ );
+ }
+}
+
+module.exports = PromptUI;