-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
537 lines (464 loc) · 16.2 KB
/
script.js
File metadata and controls
537 lines (464 loc) · 16.2 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
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
window.onload = function () {
alert('Welcome to the next page!');
};
$(document).ready(() => {
fetchSyllabusData();
fetchCourseData();
fetchusername();
fetchcourse();
fetchuserrole();
fetchcdData();
updateTotalLectures();
const body = document.querySelector("body");
const darkLight = document.querySelector("#darkLight");
const sidebar = document.querySelector(".sidebar");
const submenuItems = document.querySelectorAll(".submenu_item");
const sidebarOpen = document.querySelector("#sidebarOpen");
const sidebarClose = document.querySelector(".collapse_sidebar");
const sidebarExpand = document.querySelector(".expand_sidebar");
sidebarOpen.addEventListener("click", () => sidebar.classList.toggle("close"));
$('.add-row-button').click(() => {
addEmptyRow();
});
$('.add-row-buttonco').click(() => {
addEmptyRow2();
});
$('.save-button').click(() => {
saveDataToServer();
});
$('.save-buttonco').click(() => {
saveDataToServerco();
});
$(document).on('input', '#syllabus-data td:nth-child(4)', function () {
updateTotalLectures();
});
$('.generate-pdf-button').click(() => {
// Send a GET request to the /generate-pdf endpoint to generate the PDF
fetch('/generate-pdf')
.then(response => response.blob())
.then(blob => {
// Create a Blob URL for the PDF
const url = window.URL.createObjectURL(blob);
// Create a link element to trigger the download
const a = document.createElement('a');
a.href = url;
a.download = 'your-pdf-file.pdf'; // Set the desired file name
// Trigger the click event on the link to initiate the download
document.body.appendChild(a);
a.click();
// Clean up the Blob URL
window.URL.revokeObjectURL(url);
})
.catch(error => {
console.error('Error generating PDF:', error);
});
});
sidebarClose.addEventListener("click", () => {
sidebar.classList.add("close", "hoverable");
});
sidebarExpand.addEventListener("click", () => {
sidebar.classList.remove("close", "hoverable");
});
sidebar.addEventListener("mouseenter", () => {
if (sidebar.classList.contains("hoverable")) {
sidebar.classList.remove("close");
}
});
sidebar.addEventListener("mouseleave", () => {
if (sidebar.classList.contains("hoverable")) {
sidebar.classList.add("close");
}
});
darkLight.addEventListener("click", () => {
body.classList.toggle("dark");
if (body.classList.contains("dark")) {
document.setI
darkLight.classList.replace("bx-sun", "bx-moon");
} else {
darkLight.classList.replace("bx-moon", "bx-sun");
}
});
$(document).on('click', '.update-button', function () {
const row = $(this).closest('tr');
const cells = row.find('td');
cells.attr('contenteditable', 'true'); // Make cells editable
row.find('.update-button').hide();
row.find('.delete-button').hide();
row.find('.save-buttonu').show();
});
// $(document).on('click', '.generatepdf-button', function () {
// generatePDF();
//});
$(document).on('click', '.update-buttonco', function () {
const row = $(this).closest('tr');
const cells = row.find('td');
cells.attr('contenteditable', 'true'); // Make cells editable
row.find('.update-buttonco').hide();
row.find('.delete-buttonco').hide();
row.find('.save-buttonuco').show();
});
$(document).on('click', '.save-buttonuco', function () {
const row = $(this).closest('tr');
const moduleId = row.data('moduleId');
updateRowco(moduleId, row);
});
$(document).on('click', '.delete-buttonco', function () {
const row = $(this).closest('tr');
const moduleId = row.data('moduleId');
deleteRowco(moduleId);
});
$(document).on('click', '.delete-button', function () {
const row = $(this).closest('tr');
const moduleId = row.data('moduleId');
deleteRow(moduleId);
});
$(document).on('click', '.save-buttonu', function () {
const row = $(this).closest('tr');
const moduleId = row.data('moduleId');
updateRow(moduleId, row);
});
submenuItems.forEach((item, index) => {
item.addEventListener("click", () => {
item.classList.toggle("show_submenu");
submenuItems.forEach((item2, index2) => {
if (index !== index2) {
item2.classList.remove("show_submenu");
}
});
});
});
if (window.innerWidth < 768) {
sidebar.classList.add("close");
} else {
sidebar.classList.remove("close");
}
});
function updateRow(moduleId, row) {
const cells = row.find('td');
const updatedData = {
ModuleNo: parseInt(cells.eq(0).text()),
ModuleTitle: cells.eq(1).text(),
Topics: cells.eq(2).text(),
NoOfLectures: parseInt(cells.eq(3).text())
};
$.ajax({
url: `/api/module/${moduleId}`, // Change this URL to match your Express route
type: 'PUT',
dataType: 'json',
contentType: 'application/json',
data: JSON.stringify(updatedData),
success: function (response) {
console.log('Data updated successfully:', response);
fetchSyllabusData();
},
error: function (error) {
console.error('Error updating data:', error);
}
});
// Restore UI state
cells.attr('contenteditable', 'false');
row.find('.save-buttonu').hide();
row.find('.update-button').show();
row.find('.delete-button').show();
}
function updateRowco(moduleId, row) {
const cells = row.find('td');
const updatedData = {
coid: cells.eq(0).text(),
cotitle: cells.eq(1).text(),
colevels: cells.eq(2).text()
};
$.ajax({
url: `/api/course/${moduleId}`, // Change this URL to match your Express route
type: 'PUT',
dataType: 'json',
contentType: 'application/json',
data: JSON.stringify(updatedData),
success: function (response) {
console.log('Data updated successfully:', response);
fetchSyllabusData();
},
error: function (error) {
console.error('Error updating data:', error);
}
});
// Restore UI state
cells.attr('contenteditable', 'false');
row.find('.save-buttonuco').hide();
row.find('.update-buttonco').show();
row.find('.delete-buttonco').show();
}
function deleteRowco(moduleId) {
$.ajax({
url: `/api/courses/${moduleId}`, // Change this URL to match your Express route
type: 'DELETE',
success: function () {
console.log('Data deleted successfully');
fetchCourseData();
},
error: function (error) {
console.error('Error deleting data:', error);
}
});
}
function deleteRow(moduleId) {
$.ajax({
url: `/api/modules/${moduleId}`, // Change this URL to match your Express route
type: 'DELETE',
success: function () {
console.log('Data deleted successfully');
fetchSyllabusData();
},
error: function (error) {
console.error('Error deleting data:', error);
}
});
}
// ... (rest of your functions, like fetchSyllabusData, addEmptyRow, saveDataToServer)
// Rename the functions to have unique names
function fetchSyllabusData() {
$.ajax({
url: '/api/modules', // Change this URL to match your Express route
type: 'GET',
dataType: 'json',
success: function (data) {
const syllabusData = $('#syllabus-data');
syllabusData.empty();
let totalLectures = 0; // Clear existing table data
data.forEach(module => {
const row = `
<tr data-module-id="${module._id}">
<td>${module.ModuleNo}</td>
<td>${module.ModuleTitle}</td>
<td>${module.Topics}</td>
<td>${module.NoOfLectures}</td>
<td class="action-buttons">
<button class="btn btn-info update-button">Edit</button>
<button class="btn btn-danger delete-button">Delete</button>
<button class="btn btn-primary save-buttonu" style="display: none;">Save</button>
</td>
</tr>
`;
syllabusData.append(row);
totalLectures += module.NoOfLectures;
});
const totalRow = `
<tr id="total-lectures-row">
<th colspan="3">Total Lectures</th>
<th>${totalLectures}</th>
<th></th> <!-- Empty cell for actions -->
</tr>-
`;
syllabusData.append(totalRow);
},
error: function (error) {
console.error('Error fetching data:', error);
}
});
}
function fetchcdData() {
$.ajax({
url: '/api/cd', // Change this URL to match your Express route
type: 'GET',
dataType: 'json',
success: function (data) {
const cdData = $('#cd_data');
cdData.empty(); // Clear existing table data
data.forEach(module => {
const row =
$('#co_code').val(module.co_code);
$('#sem').val(module.sem);
$('#co_name').val(module.co_name);
$('#credits').val(module.credits);
$('#contact_hours').val(module.contact_hours);
$('#coordinators').val(module.coordinators);
$('#teacher').val(module.teachers);
});
},
error: function (error) {
console.error('Error fetching data:', error);
}
});
}
function fetchusername(){
$.ajax({
url: '/api/get-username',
type: 'GET',
dataType: 'json',
success: function (data) {
const username = data.username;
console.log('Username:', username);
$('#username').text(username);
$('#username1').text(username);
},
error: function (error) {
console.error('Error fetching username', error);
}
});
}
function fetchuserrole(){
$.ajax({
url: '/api/get-userrole',
type: 'GET',
dataType: 'json',
success: function (data) {
const userrole = data.userrole;
console.log('Userrole:', userrole);
$('#userrole').text(userrole);
},
error: function (error) {
console.error('Error fetching userrole', error);
}
});
}
function fetchcourse(){
$.ajax({
url: '/api/get-usercourse',
type: 'GET',
dataType: 'json',
success: function (data) {
const usercourse = data.usercourse;
console.log('Userrole:', usercourse);
$('#course_code').text(usercourse);
},
error: function (error) {
console.error('Error fetching usercourse', error);
}
});
}
function fetchCourseData() {
$.ajax({
url: '/api/courses', // Change this URL to match your Express route for courses
type: 'GET',
dataType: 'json',
success: function (data) {
const courseData = $('#co_data');
courseData.empty(); // Clear existing table data
data.forEach(module => {
const row = `
<tr data-module-id="${module._id}">
<td>${module.coid}</td>
<td>${module.cotitle}</td>
<td>${module.colevels}</td>
<td class="action-buttons">
<button class="btn btn-info update-buttonco">Edit</button>
<button class="btn btn-danger delete-buttonco">Delete</button>
<button class="btn btn-primary save-buttonuco" style="display: none;">Save</button>
</td>
</tr>
`;
courseData.append(row);
});
},
error: function (error) {
console.error('Error fetching course data:', error);
}
});
}
// Update the references to these functions in your event handlers
/*$(document).ready(() => {
fetchSyllabusData(); // Fetch syllabus data
fetchCourseData(); // Fetch course data
updateTotalLectures();
// ... (rest of your event handlers)
});*/
function updateTotalLectures() {
const rows = $('#syllabus-data tr');
let totalLectures = 0;
rows.each(function () {
const lectures = parseInt($(this).find('td').eq(3).text()) || 0;
totalLectures += lectures;
});
// Update the total lectures in the UI
$('#total-lectures').text(totalLectures);
$('#total-lectures').data('lectures', totalLectures);
}
let newModuleNo1=0;
function addEmptyRow2() {
const emptyRow = `
<tr>
<td contenteditable="true"></td>
<td contenteditable="true"></td>
<td contenteditable="true"></td>
</tr>
`;
$('#co_data').append(emptyRow);
}
function addEmptyRow() {
const rows = $('#syllabus-data tr');
const lastRow = rows.last(); // Get the last row
const cells = lastRow.find('td');
const lastModuleNo = parseInt(rows.eq(rows.length - 2).find('td').eq(0).text()) || 0;
newModuleNo1=lastModuleNo;
const newModuleNo = lastModuleNo + 1;
console.log('Last Module No:', lastModuleNo);
console.log('New Module No:', newModuleNo);
cells.eq(0).text(newModuleNo);
const emptyRow = `
<tr>
<td contenteditable="false">${newModuleNo}</td>
<td contenteditable="true"></td>
<td contenteditable="true"></td>
<td contenteditable="true"></td>
</tr>
`;
$('#syllabus-data').append(emptyRow);
}
function saveDataToServerco() {
const rows = $('#co_data tr');
const lastRow = rows.last(); // Get the last added row
const cells = lastRow.find('td');
const newData = {
coid: cells.eq(0).text(),
cotitle: cells.eq(1).text(),
colevels: cells.eq(2).text()
};
$.ajax({
url: '/api/courses', // Change this URL to match your Express route
type: 'POST',
dataType: 'json',
contentType: 'application/json',
data: JSON.stringify(newData),
success: function (response) {
console.log('Data saved successfully:', response);
fetchCourseData(); // Refresh table with updated data
},
error: function (error) {
console.error('Error saving data:', error);
}
});
}
function saveDataToServer() {
if(validateTable()){
const rows = $('#syllabus-data tr');
const lastRow = rows.last(); // Get the last added row
const cells = lastRow.find('td');
const lastModuleNo = newModuleNo1;
// const lastModuleNo = parseInt(rows.eq(rows.length - 2).find('td').eq(0).text()) || 6 ;// Get the last Module No. or 0 if none exists
const newModuleNo = lastModuleNo + 1;
cells.eq(0).text(newModuleNo);
const newData = {
ModuleNo: newModuleNo,
ModuleTitle: cells.eq(1).text(),
Topics: cells.eq(2).text(),
NoOfLectures: parseInt(cells.eq(3).text())
};
$.ajax({
url: '/api/modules', // Change this URL to match your Express route
type: 'POST',
dataType: 'json',
contentType: 'application/json',
data: JSON.stringify(newData),
success: function (response) {
console.log('Data saved successfully:', response);
fetchSyllabusData(); // Refresh table with updated data
},
error: function (error) {
console.error('Error saving data:', error);
}
});
updateTotalLectures();
}
else
console.log("Error");
}