-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
280 lines (231 loc) · 8.58 KB
/
Copy pathindex.js
File metadata and controls
280 lines (231 loc) · 8.58 KB
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
// front-end
document.addEventListener('DOMContentLoaded', function () {
fetch('http://localhost:5000/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');
const searchInput = document.querySelector('#search-input');
searchInput.addEventListener('input', function () {
const searchValue = searchInput.value;
if (searchValue === '') {
fetch('http://localhost:5000/getAll')
.then(response => response.json())
.then(data => loadHTMLTable(data['data']));
} else {
fetch('http://localhost:5000/search/' + searchValue)
.then(response => response.json())
.then(data => loadHTMLTable(data['data']));
}
});
// searchBtn.onclick = function () { // OLD FUNCTION USED FOR A SEARCH BUTTON I HAD
// const searchValue = document.querySelector('#search-input').value;
// if (searchValue === '') {
// fetch('http://localhost:5000/getAll')
// .then(response => response.json())
// .then(data => loadHTMLTable(data['data']));
// } else {
// fetch('http://localhost:5000/search/' + searchValue)
// .then(response => response.json())
// .then(data => loadHTMLTable(data['data']));
// }
// }
function deleteRowById(id) {
fetch('http://localhost:5000/delete/' + id, {
method: 'DELETE'
})
.then(response => response.json())
.then(data => {
if (data.success) {
location.reload();
}
});
}
function handleEditRow(id) { // shows update section
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');
const updateSetsInput = document.querySelector('#update-sets-input');
const updateRepsInput = document.querySelector('#update-reps-input');
const name = updateNameInput.value;
const sets = updateSetsInput.value;
const reps = updateRepsInput.value;
// Check if the input fields are empty IF SO THEN THIS PREVENTS FALLING INTO THE NEXT IF STATEMENT
if (sets === '' || reps === '') {
fetch('http://localhost:5000/update', {
method: 'PATCH',
headers: {
'Content-type' : 'application/json'
},
body: JSON.stringify({
id: updateNameInput.dataset.id,
name: name,
sets: sets,
reps: reps
})
})
.then(response => response.json())
.then(data => {
if (data.success) {
location.reload();
}
})
return;
}
// Check if the sets or reps are less than or equal to 0
if (sets <= 0 || reps <= 0) {
alert('Please enter a number greater than 0 for sets and reps.');
return;
}
fetch('http://localhost:5000/update', {
method: 'PATCH',
headers: {
'Content-type' : 'application/json'
},
body: JSON.stringify({
id: updateNameInput.dataset.id,
name: name,
sets: sets,
reps: reps
})
})
.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;
const setsInput = document.querySelector('#sets-input');
const sets = setsInput.value >= 0 ? setsInput.value : 0; // check against negative input
const repsInput = document.querySelector('#reps-input');
const reps = repsInput.value >= 0 ? repsInput.value : 0; // check against negative input
nameInput.value = "";
setsInput.value = "";
repsInput.value = "";
fetch('http://localhost:5000/insert', {
headers: {
'Content-type': 'application/json'
},
method: 'POST',
body: JSON.stringify({ name : name, sets : sets, reps : reps})
})
.then(response => response.json())
.then(data => insertRowIntoTable(data['data']));
}
const submitButton = document.querySelector('#register-submit-button');
submitButton.addEventListener('click', function(event) {
event.preventDefault();
const nameInput = document.querySelector('#new_username');
const name = nameInput.value;
const emailInput = document.querySelector('#new_email');
const email = emailInput.value;
const passwordInput = document.querySelector('#new_password');
const password = passwordInput.value;
fetch('http://localhost:5000/insertUserInfo', {
headers: {
'Content-type': 'application/json'
},
method: 'POST',
body: JSON.stringify({ username: name, email: email, password: password })
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.log(error));
});
// login
const loginForm = document.querySelector('.login-container form');
loginForm.addEventListener('submit', async (event) => {
event.preventDefault(); // prevent form submission
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
const response = await fetch('http://localhost:5000/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ username, password })
});
const data = await response.json();
if (data.success) {
loginForm.reset();
const loginContainer = document.querySelector('.login-container');
loginContainer.classList.add('hidden');
} else {
alert(data.message);
}
});
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, sets, reps}) {
const date = new Date(date_added);
const formattedDate = `${date.toLocaleDateString()} <br> ${date.toLocaleTimeString([], {hour: 'numeric', minute: '2-digit'})}`;
tableHtml += "<tr>";
tableHtml += `<td>${id}</td>`;
tableHtml += `<td>${name}</td>`;
tableHtml += `<td>${formattedDate}</td>`;
tableHtml += `<td>${sets}</td>`;
tableHtml += `<td>${reps}</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;
}
// Login and Registration container hiding
function showRegisterContainer() {
document.querySelector('.login-container').style.display = 'none';
document.querySelector('.register-container').style.display = 'block';
}
function showLoginContainer() {
document.querySelector('.register-container').style.display = 'none';
document.querySelector('.login-container').style.display = 'block';
}
function hideLoginAndRegister() {
document.querySelector('.register-container').style.display = 'none';
document.querySelector('.login-container').style.display = 'none';
}