This repository has been archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
139 lines (113 loc) · 3.83 KB
/
index.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
document.addEventListener('DOMContentLoaded', function () {
fetch('http://localhost:3000/getAll')
.then(response => response.json())
.then(data => loadHTMLTable(data['data']));
});
document.querySelector('table tbody').addEventListener('click', function(event) {
if (event.target.className === "delete-row-btn") {
deleteRowById(event.target.dataset.id);
}
if (event.target.className === "edit-row-btn") {
handleEditRow(event.target.dataset.id);
}
});
const updateBtn = document.querySelector('#update-row-btn');
const searchBtn = document.querySelector('#search-btn');
searchBtn.onclick = function() {
const searchValue = document.querySelector('#search-input').value;
fetch('http://localhost:3000/search/' + searchValue)
.then(response => response.json())
.then(data => loadHTMLTable(data['data']));
}
function deleteRowById(id) {
fetch('http://localhost:3000/delete/' + id, {
method: 'DELETE'
})
.then(response => response.json())
.then(data => {
if (data.success) {
location.reload();
}
});
}
function handleEditRow(id) {
const updateSection = document.querySelector('#update-row');
updateSection.hidden = false;
document.querySelector('#update-name-input').dataset.id = id;
}
updateBtn.onclick = function() {
const updateNameInput = document.querySelector('#update-name-input');
console.log(updateNameInput);
fetch('http://localhost:3000/update', {
method: 'PATCH',
headers: {
'Content-type' : 'application/json'
},
body: JSON.stringify({
id: updateNameInput.dataset.id,
name: updateNameInput.value
})
})
.then(response => response.json())
.then(data => {
if (data.success) {
location.reload();
}
})
}
const addBtn = document.querySelector('#add-name-btn');
addBtn.onclick = function () {
const nameInput = document.querySelector('#name-input');
const name = nameInput.value;
nameInput.value = "";
fetch('http://localhost:3000/insert', {
headers: {
'Content-type': 'application/json'
},
method: 'POST',
body: JSON.stringify({ name : name})
})
.then(response => response.json())
.then(data => insertRowIntoTable(data['data']));
}
function insertRowIntoTable(data) {
console.log(data);
const table = document.querySelector('table tbody');
const isTableData = table.querySelector('.no-data');
let tableHtml = "<tr>";
for (var key in data) {
if (data.hasOwnProperty(key)) {
if (key === 'dateAdded') {
data[key] = new Date(data[key]).toLocaleString();
}
tableHtml += `<td>${data[key]}</td>`;
}
}
tableHtml += `<td><button class="delete-row-btn" data-id=${data.id}>Delete</td>`;
tableHtml += `<td><button class="edit-row-btn" data-id=${data.id}>Edit</td>`;
tableHtml += "</tr>";
if (isTableData) {
table.innerHTML = tableHtml;
} else {
const newRow = table.insertRow();
newRow.innerHTML = tableHtml;
}
}
function loadHTMLTable(data) {
const table = document.querySelector('table tbody');
if (data.length === 0) {
table.innerHTML = "<tr><td class='no-data' colspan='5'>No Data</td></tr>";
return;
}
let tableHtml = "";
data.forEach(function ({id, name, date_added}) {
tableHtml += "<tr>";
tableHtml += `<td>${id}</td>`;
tableHtml += `<td>${name}</td>`;
tableHtml += `<td>${new Date(date_added).toLocaleString()}</td>`;
tableHtml += `<td><button class="delete-row-btn" data-id=${id}>Delete</td>`;
tableHtml += `<td><button class="edit-row-btn" data-id=${id}>Edit</td>`;
tableHtml += "</tr>";
});
table.innerHTML = tableHtml;
}