-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclientes.js
370 lines (314 loc) · 9.1 KB
/
clientes.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
"use strict";
const instance = axios.create({
baseURL: 'http://l.iqtics.mx/api',
timeout: 2000,
headers: {
}
});
const apiUrl = "http://l.iqtics.mx/api";
//http://l.iqtics.mx/api/opcionesMenu/categoriaMenu/categoriaCliente
// const apiUrl = () => {
// const [url,protocl,hostname,path] = /^(\w+):\/\/([^\/]+)([^]+)$/.exec(window.location.href);
// return `${protocl}://${hostname}/api`;
// };
const formCliente = "ClienteForm";
const currentClietnForm = "CurrentClientForm";
const inputSearch = "input-search";
const idTabla = "#tabla-clientes";
let table;
let modal;
let clientes = [];
let categorias = [];
let precios = [];
let onClickedRow = false;
let currentSelectClient;
document.addEventListener("DOMContentLoaded", Ready);
async function Ready() {
clientes = await getClientes() || [];
categorias = await getCategorias() || [];
precios = await getPrecios() || [];
categorias.forEach(c => document.querySelector("#opCategorias").appendChild(createOption(c.id,c.nombre)));
precios.forEach(p => document.querySelector("#opPrecios").appendChild(createOption(p.id,p.nombre)));
let configTable = {
searching: false,
paging: false,
bInfo: false,
bScrollInfinite: true,
bScrollCollapse: true,
ordering: false,
sScrollY: "300px",
data: transformarInformacion(clientes),
columns: [
{
data: "representante",
},
{
data: "razonSocial",
},
{
data: "acciones",
},
],
createdRow: function (row, data, dataIndex) {
$(row).attr("id", data.id);
row.addEventListener("click", selectRow);
},
};
table = createTable(idTabla, configTable);
loadButtons();
modal = $("#FormModal");
// modal.on("show.bs.modal", () => console.log("ssss"));
modal.on("hidden.bs.modal", () => resetForm(formCliente));
document.getElementById(formCliente).addEventListener("submit",onSubmit);
document.getElementById(inputSearch).addEventListener("keyup",(e) => {
const text = e.target.value;
table.search(text).draw();
// const clientesFiltrados = clientes.filter(c => filtrarClientes(c,text));
// resetForm(currentClietnForm);
// reloadTable(table,transformarInformacion(clientesFiltrados));
});
document.getElementById("btn-export").addEventListener("click",exportXls);
}
async function getClientes() {
try{
const response = await instance.get(`/clientes`);
return response.data;
}catch(error){
console.error(error);
return [];
}
}
async function addCliente(newCliente){
if(newCliente instanceof FormData){
const response = await instance.post('/clientes',newCliente,{headers:{
"Content-Type":"application/json"
}});
console.log(response);
}
// const result = await HttpClient.post(`${apiUrl}/clientes`,newCliente);
// if(result !== undefined && result !== null ){
// window.location.reload();
// }
}
async function editClient(id,cliente){
const result = await HttpClient.put(`${apiUrl}/clientes/${id}`,cliente);
window.location.reload();
}
async function deleteCliente(idCliente){
const result = await HttpClient.delete(`${apiUrl}/clientes/${idCliente}`);
clientes.splice(findClientIndex(idCliente),1);
reloadTable(table,transformarInformacion(clientes));
}
async function exportXls(e){
const result = await HttpClient.get(`${apiUrl}/clientes/export`);
if(result === undefined){
alert("Error al exportar");
return;
}
const url = window.URL.createObjectURL(result);
const a = document.createElement("a");
a.setAttribute("download","Clientes.xlsx");
a.href = url;
a.click();
a.remove();
window.URL.revokeObjectURL(url);
}
async function getCategorias() {
try{
const response = await instance.get(`/opcionesMenu/categoriaMenu/categoriaCliente`);
return response.data;
}catch(error){
console.error(error);
return [];
}
}
async function getPrecios(){
try{
const response = await instance.get(`/opcionesMenu/categoriaMenu/categoriaPrecio`);
return response.data;
}catch(error){
console.error(error);
return [];
}
}
const findClientIndex = (idCliente) =>
clientes.findIndex((cliente) => cliente.id === idCliente);
function filtrarClientes(cliente, str) {
const clienteJoin = Object.values(cliente).join("");
return clienteJoin.includes(str);
}
const createTable = (table, config) => $(table).DataTable(config);
function reloadTable(table, data) {
table.clear().draw();
table.rows.add(data).draw();
loadButtons();
}
function loadButtons() {
const btnEditar = document.querySelectorAll(".btn-editar");
btnEditar.forEach((btn) => btn.addEventListener("click", onClickEdit));
const btnBorrar = document.querySelectorAll(".btn-eliminar");
btnBorrar.forEach((btn) => btn.addEventListener("click",onClickDelete));
}
function onClickEdit(e) {
const cliente = clientes[findClientIndex(e.target.id)];
llenarForm(formCliente, cliente);
$(modal).modal({
show: true,
backdrop: "static",
});
e.stopImmediatePropagation();
}
function onClickDelete(e){
const cliente = clientes[findClientIndex(e.target.id)];
const desicion = confirm("¿Deseas borrar el cliente?");
if(desicion){
deleteCliente(cliente.id);
}
e.stopImmediatePropagation();
}
function onKeyUp(e){
const value = e.target.value;
}
function onSubmit(e){
e.preventDefault();
const form = e.target;
const id = form.elements["Id"].value;
if(id === undefined || id === ""){
addCliente(new FormData(form));
}else{
editClient(id,new FormData(form));
}
}
function selectRow(e) {
const rows = [
...e.path.find((r) => r.nodeName === "TBODY".toUpperCase()).children,
];
rows.forEach((row) => removeClass(row, "row-selected"));
const row = e.path.find((r) => r.nodeName === "tr".toUpperCase());
const cliente = clientes[findClientIndex(row.id)];
if (currentSelectClient !== undefined && currentSelectClient !== cliente) {
// row.classList.add("row-selected");
addClass(row, "row-selected");
llenarForm(currentClietnForm, cliente);
currentSelectClient = cliente;
onClickedRow = true;
} else {
if (onClickedRow) {
resetForm(currentClietnForm);
onClickedRow = false;
} else {
addClass(row, "row-selected");
llenarForm(currentClietnForm, cliente);
currentSelectClient = cliente;
onClickedRow = true;
}
}
}
const createOption = (value,text) => {
const op = document.createElement("option");
op.value = value;
op.innerText = text;
return op;
}
function removeClass(node, className) {
if (node.classList.contains(className)) node.classList.remove(className);
}
function addClass(node, className) {
if (!node.classList.contains(className)) node.classList.add(className);
}
const transformarInformacion = (data) =>
data.map(
(entity) =>
new InformacionTabla(entity.id, entity.representante, entity.razonSocial)
);
// llenar formularios
function llenarForm(idForm, entity) {
const inputs = {
value: ["text", "number", "select-one", "date"],
check: ["checkbox"],
};
const fomInputs = [...document.getElementById(idForm).elements];
const keys = Object.keys(entity);
fomInputs.forEach((input) => {
if (inputs.value.includes(input.type)) {
const key = keys.find(
(k) => k.toUpperCase() === input.name.toUpperCase()
);
input.value = entity[key] || "";
}
if (inputs.check.includes(input.type)) {
const key = keys.find(
(k) => k.toUpperCase() === input.name.toUpperCase()
);
input.checked = entity[key] || false;
}
});
}
function resetForm(form) {
document.getElementById(form).reset();
}
class HttpClient {
static post(url, data) {
const result = fetch(url, {
method: "post",
body: data,
}).then(async res => {
if(res.ok){
const contentType = res.headers.get("content-type");
if (contentType && contentType.indexOf("application/json") !== -1) {
return await res.json();
} else {
console.log("Oops, we haven't got JSON!");
}
}else {
throw "Error";
}
})
.catch(err => console.log(err));
return result;
}
static put(url, data) {
return fetch(url, {
method: "put",
body: data,
}).then(async res => {
if(res.ok){
const contentType = res.headers.get("content-type");
if (contentType && contentType.indexOf("application/json") !== -1) {
return await res.json();
} else {
console.log("Oops, we haven't got JSON!");
}
}else{
throw "Error";
}
})
.catch(err => console.log(err));;
}
static delete(url) {
return fetch(url, {
method: "delete",
});
}
}
class InformacionTabla {
constructor(id, representante, razonSocial) {
this.id = id;
this.representante = representante;
this.razonSocial = razonSocial;
this.acciones = `
<button class="btn btn-sm btn-primary btn-editar" id="${id}">
Editar
</button>
<button class="btn btn-sm btn-danger btn-eliminar" id="${id}">
Eliminar
</button>
`;
}
}
class OptionMenu {
constructor(value,text){
this.value = value;
this.text = text;
}
}