-
Notifications
You must be signed in to change notification settings - Fork 0
/
inquirer.js
193 lines (160 loc) · 4.41 KB
/
inquirer.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
const inquirer = require('inquirer');
const preguntas = [
{
type: 'list',
name: 'opcion',
message: '¿Qué desea hacer?',
choices: [
{
value: '1',
name: `${'1.'} Insertar habitación`
},
{
value: '2',
name: `${'2.'} Registrar un cliente en una habitación en la fecha actual`
},
{
value: '3',
name: `${'3.'} Listar todos los clientes y fechas en que se registraron en una
determinada habitación.`,
},
{
value: '0',
name: `${'0.'} Salir`
},
]
}
];
const inquirerMenu = async () => {
console.clear();
console.log('==========================');
console.log(' Seleccione una opción');
console.log('==========================\n');
const { opcion } = await inquirer.prompt(preguntas);
return opcion;
}
const pausa = async () => {
const question = [
{
type: 'input',
name: 'enter',
message: `Presione ENTER para continuar`,
}
];
console.log('\n');
await inquirer.prompt( question );
}
const leerHabitacion = async( message ) => {
const question = [
{
type: 'number',
name: 'nro_habitacion',
message,
validate ( value ){
if (value.length === 0){
return 'Por favor ingrese un valor';
}
return true;
}
},
{
type: 'input',
name: 'cantidad_camas',
message,
validate ( value ){
if (value.length === 0){
return 'Por favor ingrese un valor';
}
return true;
}
},
{
type: 'number',
name: 'cod_tipo_habitacion',
message,
validate ( value ){
if (value.length === 0){
return 'Por favor ingrese un valor';
}
return true;
}
}
];
const {nro_habitacion, cantidad_camas, cod_tipo_habitacion} = await inquirer.prompt(question);
return {nro_habitacion, cantidad_camas, cod_tipo_habitacion};
}
const leerRegistroOcupa = async( message ) => {
const ocupa = [
{
type: 'number',
name: 'Nro_habitacion',
message,
validate ( value ){
if (value.length === 0){
return 'Por favor ingrese un valor';
}
return true;
}
},
{
type: 'number',
name: 'DNI_Cliente',
message,
validate ( value ){
if (value.length === 0){
return 'Por favor ingrese un valor';
}
return true;
}
},
{
type: 'number',
name: 'Monto',
message,
validate ( value ){
if (value.length === 0){
return 'Por favor ingrese un valor';
}
return true;
}
},
{
type: 'number',
name: 'dias_permanecio',
message,
validate ( value ){
if (value.length === 0){
return 'Por favor ingrese un valor';
}
return true;
}
}
];
const {Nro_habitacion, DNI_Cliente, Monto, dias_permanecio} = await inquirer.prompt( ocupa );
//console.log({nro_habitacion, DNI_Cliente, Monto, dias_permanecio});
return {Nro_habitacion, DNI_Cliente, Monto, dias_permanecio};
}
const leerNroDeHab = async ( mensaje ) => {
const numero = [
{
type: 'number',
name: 'Nro_de_habitacion',
message: mensaje,
validate ( value ){
if (value.length === 0){
return 'Por favor ingrese un valor';
}
return true;
}
}
]
const {Nro_de_habitacion} = await inquirer.prompt ( numero );
return {Nro_de_habitacion};
}
module.exports = {
inquirerMenu,
pausa,
leerHabitacion,
leerRegistroOcupa,
leerNroDeHab
}