diff options
author | Mateja <mail@matejamaric.com> | 2020-11-24 21:45:30 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-11-24 21:45:30 +0100 |
commit | adcc4c9cb49939d55bc84610c5dfd2351c452bf8 (patch) | |
tree | e1d692229c0c70b65149d4c672032dbe3314ab7e /public | |
parent | 400e73d5407555a22ae6fe4c5282bafc7685833c (diff) | |
download | yota-laravel-adcc4c9cb49939d55bc84610c5dfd2351c452bf8.tar.gz yota-laravel-adcc4c9cb49939d55bc84610c5dfd2351c452bf8.zip |
Activities special callsign description added.
Diffstat (limited to 'public')
-rw-r--r-- | public/js/activities.js | 64 |
1 files changed, 37 insertions, 27 deletions
diff --git a/public/js/activities.js b/public/js/activities.js index 6529e6b..82385c8 100644 --- a/public/js/activities.js +++ b/public/js/activities.js @@ -1,38 +1,48 @@ $.ajaxSetup({ - headers: { - 'X-CSRF-TOKEN': $('input[name="csrf-token"]').attr('content') - } + 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('<tr><td class="font-weight-bold text-center" colspan="6">Loading...</td></tr>'); + tableData = jQuery('table#ajax-table>tbody').first(); + tableData.html('<tr><td class="font-weight-bold text-center" colspan="6">Loading...</td></tr>'); - sign = jQuery('select#call-sign').first().val(); + sign = jQuery('select#call-sign').first().val(); - 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 = '<tr><td>' + data.data[i].operatorCall + '</td>' + - '<td>' + data.data[i].fromTime + '</td>' + - '<td>' + data.data[i].toTime + '</td>' + - '<td>' + data.data[i].specialCall + '</td>' + - '<td>' + data.data[i].frequencies + '</td>' + - '<td>' + data.data[i].qso + '</td></tr>'; - tableData.append(tr); - } - } - else { - tableData.html('<tr><td class="font-weight-bold text-center" colspan="6">No data...</td></tr>'); - } - } - else { - tableData.html('<tr><td class="font-weight-bold text-center" colspan="6">Error!</td></tr>'); - } + descDiv = jQuery('div#sign-desc-div'); + if (sign === 'all') { + descDiv.empty(); + } else { + jQuery.get('/special-calls/show/' + sign, function (data, status) { + descDiv.html('<div class="card"><div class="card-body pb-1">' + data + '</div></div>'); + 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 = '<tr><td>' + data.data[i].operatorCall + '</td>' + + '<td>' + data.data[i].fromTime + '</td>' + + '<td>' + data.data[i].toTime + '</td>' + + '<td>' + data.data[i].specialCall + '</td>' + + '<td>' + data.data[i].frequencies + '</td>' + + '<td>' + data.data[i].qso + '</td></tr>'; + tableData.append(tr); + } + } + else { + tableData.html('<tr><td class="font-weight-bold text-center" colspan="6">No data...</td></tr>'); + } + } + else { + tableData.html('<tr><td class="font-weight-bold text-center" colspan="6">Error!</td></tr>'); + } + }); } |