From f7b6e0c04ae8c4b750e1e95e0119226a5d8abdd6 Mon Sep 17 00:00:00 2001 From: Mateja Date: Sun, 21 Mar 2021 23:16:59 +0100 Subject: Remove old and unused jQuery JavaScript files. --- public/js/activities.js | 49 ------------------- public/js/reservations.js | 119 ---------------------------------------------- public/js/reserve.js | 9 ---- 3 files changed, 177 deletions(-) delete mode 100644 public/js/activities.js delete mode 100644 public/js/reservations.js delete mode 100644 public/js/reserve.js diff --git a/public/js/activities.js b/public/js/activities.js deleted file mode 100644 index eacf4d3..0000000 --- a/public/js/activities.js +++ /dev/null @@ -1,49 +0,0 @@ -$.ajaxSetup({ - headers: { - 'X-CSRF-TOKEN': $('input[name="csrf-token"]').attr('content') - } -}); - -jQuery('select#call-sign').change(fillTable); -jQuery(document).ready(fillTable); - -function fillTable() { - tableData = jQuery('table#ajax-table>tbody').first(); - tableData.html('Loading...'); - - sign = jQuery('select#call-sign').first().val(); - - descDiv = jQuery('div#sign-desc-div'); - if (sign === 'all') { - descDiv.empty(); - } else { - jQuery.get('/special-calls/show/' + sign, function (data, status) { - descDiv.html('
' + data + '
'); - console.log(data); - }); - } - - jQuery.post('/api/activities', {'call-sign': sign}, function (data, status) { - if (status === 'success') { - if (data.data.length > 0) { - tableData.empty(); - for (i = 0, len = data.data.length; i < len; i++) { - tr = '' + data.data[i].operatorCall + '' + - '' + data.data[i].fromTime + '' + - '' + data.data[i].toTime + '' + - '' + data.data[i].specialCall + '' + - '' + data.data[i].frequencies + '' + - '' + data.data[i].modes + '' + - '' + data.data[i].qso + ''; - tableData.append(tr); - } - } - else { - tableData.html('No data...'); - } - } - else { - tableData.html('Error!'); - } - }); -} diff --git a/public/js/reservations.js b/public/js/reservations.js deleted file mode 100644 index bc9c6de..0000000 --- a/public/js/reservations.js +++ /dev/null @@ -1,119 +0,0 @@ -$.ajaxSetup({ - headers: { - 'X-CSRF-TOKEN': $('input[name="csrf-token"]').attr('content') - } -}); - -jQuery('select#call-sign').change(fillTable); -jQuery(document).ready(fillTable); - -function fillTable() { - tableData = jQuery('table#ajax-table>tbody').first(); - tableData.html('Loading...'); - - sign = jQuery('select#call-sign').first().val(); - - jQuery.post('/special-calls/reservations', {'call-sign': sign}, function (data, status) { - if (status === 'success') { - if (data.data.length > 0) { - tableData.empty(); - for (i = 0, len = data.data.length; i < len; i++) { - tr = ''; - tr += '' + data.data[i].id + ''; - if (data.data[i].approved === 1) - tr += ''; - else - tr += ''; - - tr += - '' + data.data[i].operatorCall + '' + - '' + data.data[i].qso + '' + - '' + data.data[i].fromTime + '' + - '' + data.data[i].toTime + '' + - '' + data.data[i].specialCall + '' + - '' + data.data[i].frequencies + '' + - '' + data.data[i].modes + '' + - '' + data.data[i].operatorName + '' + - '' + data.data[i].operatorEmail + '' + - '' + data.data[i].operatorPhone + ''; - tr += ''; - tr += ""; - tr += ""; - tr += ""; - tr += ''; - tr += ''; - tableData.append(tr); - } - } - else { - tableData.html('No data...'); - } - } - else { - tableData.html('Error!'); - } - }); -} - -function btnAction(action, btn) { - trDom = btn.parentElement.parentElement; - trData = trDom.children; - - actionData = { - action: action, - id: trData[0].innerText, - approved: trData[1].firstElementChild.checked, - operatorCall: trData[2].innerText, - qso: trData[3].innerText, - fromTime: trData[4].innerText, - toTime: trData[5].innerText, - specialCall: trData[6].innerText, - frequencies: trData[7].innerText, - modes: trData[8].innerText, - operatorName: trData[9].innerText, - operatorEmail: trData[10].innerText, - operatorPhone: trData[11].innerText - }; - - if (actionData.action == 'delete') { - if (confirm("Are you sure you want to delete reservation #" + actionData.id + " made by " + actionData.operatorCall + "?") === true) - trDom.remove(); - else return; - } - - jQuery.post('/api/reservations', actionData, function (response, status) { - if (status === 'success') { - try { - // Handle various actions - if (response.action == "update") { - jQuery('#notice').html("Record #" + actionData.id + " updated."); - } else if (response.action == "restore") { - trData[1].firstElementChild.checked = response.approved == 1; - trData[2].innerText = response.operatorCall; - trData[3].innerText = response.qso; - trData[4].innerText = response.fromTime; - trData[5].innerText = response.toTime; - trData[6].innerText = response.specialCall; - trData[7].innerText = response.frequencies; - trData[8].innerText = response.modes; - trData[9].innerText = response.operatorName; - trData[10].innerText = response.operatorEmail; - trData[11].innerText = response.operatorPhone; - jQuery('#notice').html("Record's #" + actionData.id + " data restored."); - } else if (response.action == "delete") { - jQuery('#notice').html("Record #" + actionData.id + " deleted."); - } else { - console.log("No action?"); - //console.log(data); - } - } catch { - //console.log(data); - alert("Bad input data!"); - } - } - else { - console.log('AJAX error'); - alert("Bad input data!"); - } - }); -} diff --git a/public/js/reserve.js b/public/js/reserve.js deleted file mode 100644 index 7a20c37..0000000 --- a/public/js/reserve.js +++ /dev/null @@ -1,9 +0,0 @@ -jQuery('select#special-call').change(setCallDesc); -jQuery(document).ready(setCallDesc); - -function setCallDesc() { - sign = jQuery('select#special-call').first().val(); - jQuery.get('/special-calls/show/' + sign, function (data, status) { - jQuery('div#call-desc').html(data); - }); -} -- cgit v1.2.3