forked from camilomontoyau/bootcamp-hablemos-de-programacion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathejemplo-fetch.js
129 lines (120 loc) · 3.65 KB
/
ejemplo-fetch.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
const listaUsuarios = document.getElementById("body-usuarios");
const boton = document.getElementById("boton");
const limpiar = document.getElementById("limpiar");
const nombre = document.getElementById("nombre");
const apellido = document.getElementById("apellido");
const pais = document.getElementById("pais");
const indice = document.getElementById("indice");
let usuarios = [];
let botonesEliminar = null;
let botonesEditar = null;
function render() {
const usuariosRender = usuarios
.map((usuario, indice) => {
return `<tr>
<td>${usuario.nombre ? usuario.nombre : 'vacio'}</td>
<td>${usuario.apellido ? usuario.apellido : 'vacio'}</td>
<td>${usuario.pais ? usuario.pais : 'vacio'}</td>
<td><a class="ver" href="/ajax/index2.html?usuario=${indice}">ver</a></td>
<td><button class="editar" data-indice=${indice}>Editar</button></td>
<td><button class="eliminar" data-indice=${indice}>Eliminar</button></td>
</tr>`
})
.join("");
console.log(usuariosRender);
listaUsuarios.innerHTML = usuariosRender;
botonesEliminar = document.getElementsByClassName('eliminar');
botonesEditar = document.getElementsByClassName('editar');
Array.from(botonesEliminar).forEach(botonEliminar => {
botonEliminar.onclick = eliminarUnUsuario;
});
Array.from(botonesEditar).forEach(botonEditar => {
botonEditar.onclick = editarUnUsuario;
});
}
function enviarDatos(e) {
e.preventDefault();
let accion = e.target.innerText;
const datos = {
nombre: nombre.value,
apellido: apellido.value,
pais: pais.value
};
let url = null;
let method = null;
if(accion === 'Crear') {
url = 'https://bootcamp-dia-3.camilomontoyau.now.sh/usuarios';
method = 'POST';
} else if(accion === 'Editar') {
if(indice.value) {
url = `https://bootcamp-dia-3.camilomontoyau.now.sh/usuarios/${indice.value}`;
method = 'PUT'
} else {
return;
}
} else {
return;
}
fetch(url, {
method,
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(datos),
})
.then((response) => response.json())
.then(respuestaJson=>{
console.log('respuestaJson', respuestaJson)
refrescar();
restaurarBoton();
}).catch((razon)=>{
console.log(razon);
restaurarBoton();
})
}
function eliminarUnUsuario(e) {
e.preventDefault();
console.log('eliminarUnUsuario', e);
fetch(`https://bootcamp-dia-3.camilomontoyau.now.sh/usuarios/${e.target.dataset.indice}`, {
method: 'DELETE',
})
.then((response) => response.json())
.then(respuestaJson=>{
console.log('respuestaJson', respuestaJson)
refrescar();
})
}
function editarUnUsuario(e) {
e.preventDefault();
console.log('editarUnUsuario', e);
if(e.target.dataset.indice) {
const usuario = usuarios[e.target.dataset.indice];
nombre.value = usuario.nombre ? usuario.nombre : '';
apellido.value = usuario.apellido ? usuario.apellido : '';;
pais.value = usuario.pais ? usuario.pais : '';
indice.value = e.target.dataset.indice;
boton.innerText = 'Editar'
} else {
boton.innerText = 'Crear'
}
}
function refrescar() {
fetch('https://bootcamp-dia-3.camilomontoyau.now.sh/usuarios')
.then(response=>response.json())
.then(respuestaUsuarios=>{
console.log('respuestaUsuarios', respuestaUsuarios)
usuarios = respuestaUsuarios
render();
})
}
//Create, Read, Update, Delete, Listar
function restaurarBoton () {
boton.innerText = 'Crear';
indice.value= '';
nombre.value = '';
apellido.value = '';
pais.value = ''
}
refrescar();
boton.onclick = enviarDatos;
limpiar.onclick = restaurarBoton;