-
Notifications
You must be signed in to change notification settings - Fork 0
/
webbuscar.js
63 lines (58 loc) · 1.41 KB
/
webbuscar.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
/*
*/
const express = require('express')
const app = express()
const cursos1= require ('./datos');
const opciones = {
'idcurso':
{
alias : 'c',
},
'nombreestudiante':
{
alias : 'e',
},
'cedula': {
alias : 'i'
},
'proceso': {
alias : 'p'
}
}
const args = require('yargs')
.command('buscar','buscar y registrarme',opciones)
.demandOption('c','Eliga un curso')
.demandOption('e','Eliga un estudiante')
.demandOption('i','Ingrese una identificacion')
.argv;
let buscar = cursos1.cursos.find( data => data.id == args.c);
//console.log(args);
if (!buscar) {
console.log("NO SE ENCONTRO UN CURSO");
} else {
// proceso de guardado o mostrar datos si se pasa el parametro p=inscribir
if (args.p!="") {
if (args.p=="inscribir") {
txt="<h1>Proceso de inscripcion:</h1>"
+ " Curso elegido : <strong>"+buscar.nombre+"</strong><br>"
+" Nombre Estudiante : <strong>"+args.e+"</strong><br>"
+" Identificacion Estudiante : <strong>"+args.i+"</strong><br>";
app.get('/', function (req, res) {
res.send(txt)
})
app.listen(3000)
} else {
console.log("Busque su curso y coloque inscribir");
cursos1.cursos.forEach(function(data) {
setTimeout(function() {
txt="Id del curso: "+data.id+"\n"+
"Nombre del curso: "+data.nombre+"\n"+
"Duraccion: "+data.duracion+"\n"+
"Valor: "+data.valor+"\n"+
"\n";
console.log(txt);
},2000);
});
}
}
}