-
Notifications
You must be signed in to change notification settings - Fork 0
/
crud.js
139 lines (110 loc) · 4.15 KB
/
crud.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
function validateForm(){
let email = document.getElementById('inputEmail').value;
let name = document.getElementById('inputName').value;
let phone = document.getElementById('inputPhone').value;
if (email == "") {
alert('El campo correo es requerido');
return false;
}else if(!email.includes('@')){
alert('El correo no es valido')
return false;
}
if (name == "") {
alert('El campo nombre es requerido');
return false;
}
if (phone == "") {
alert('El campo telefono es requerido');
return false;
}
return true;
}
function ReadData(){
let listPeople;
if (localStorage.getItem('listPeople') == null) {
listPeople = [];
}else{
listPeople = JSON.parse(localStorage.getItem('listPeople'));
}
var html = "";
listPeople.forEach(function(element, index){
html += "<tr>";
html += "<td>" + element.email + "</td>";
html += "<td>" + element.name + "</td>";
html += "<td>" + element.phone + "</td>";
html += '<td><button onclick="deleteData('+ index +')" class="btn btn-danger">Eliminar Dato</button><button onclick="editData('+ index +')" class="btn btn-warning">Editar Dato</button>';
html += "</tr>";
});
document.querySelector('#tableData').innerHTML = html;
}
document.onload = ReadData();
function AddData(){
if (validateForm() == true) {
let email = document.getElementById('inputEmail').value;
let name = document.getElementById('inputName').value;
let phone = document.getElementById('inputPhone').value;
var listPeople;
if (localStorage.getItem('listPeople') == null){
listPeople = [];
}
else{
listPeople = JSON.parse(localStorage.getItem('listPeople'));
}
listPeople.push({
email: email,
name: name,
phone: phone,
});
localStorage.setItem('listPeople', JSON.stringify(listPeople));
ReadData();
document.getElementById('inputEmail').value= "";
document.getElementById('inputName').value= "";
document.getElementById('inputPhone').value= "";
}
}
function deleteData(index){
let listPeople;
if (localStorage.getItem('listPeople') == null) {
listPeople = [];
}else{
listPeople = JSON.parse(localStorage.getItem('listPeople'));
}
listPeople.splice(index, 1);
localStorage.setItem('listPeople', JSON.stringify(listPeople));
ReadData();
limpiarForm();
document.getElementById('btnAdd').style.display = 'block';
document.getElementById('btnUpdate').style.display = 'none';
}
function editData(index) {
document.getElementById('btnAdd').style.display = 'none';
document.getElementById('btnUpdate').style.display = 'block';
let listPeople;
if (localStorage.getItem('listPeople') == null) {
listPeople = [];
}else{
listPeople = JSON.parse(localStorage.getItem('listPeople'));
}
document.getElementById('inputEmail').value = listPeople[index].email;
document.getElementById('inputName').value = listPeople[index].name;
document.getElementById('inputPhone').value = listPeople[index].phone;
document.querySelector('#btnUpdate').onclick = function () {
if (validateForm() == true) {
listPeople[index].email = document.getElementById('inputEmail').value;
listPeople[index].name = document.getElementById('inputName').value;
listPeople[index].phone = document.getElementById('inputPhone').value;
localStorage.setItem('listPeople', JSON.stringify(listPeople));
ReadData();
document.getElementById('inputEmail').value = "";
document.getElementById('inputName').value = "";
document.getElementById('inputPhone').value = "";
document.getElementById('btnAdd').style.display = 'block';
document.getElementById('btnUpdate').style.display = 'none';
}
limpiarForm();
}
}
function limpiarForm() {
const form = document.getElementById('formulario')
form.reset();
}