Show packet contents for nodes

This commit is contained in:
2023-07-16 00:41:36 +10:00
parent a3302b4012
commit a8f76aec31
5 changed files with 142 additions and 4 deletions

View File

@@ -0,0 +1,51 @@
@if($nm->count())
<table class="table monotable">
<thead>
<tr>
<th colspan="4">Netmails</th>
</tr>
<tr>
<th>From</th>
<th>To</th>
<th>MSGID</th>
<th>Date</th>
</tr>
</thead>
<tbody>
@foreach ($nm as $oo)
<tr>
<td>{{ $oo->fftn->ftn }}</td>
<td>{{ $oo->tftn->ftn }}</td>
<td>{{ $oo->msgid }}</td>
<td>{{ $oo->datetime }}</td>
</tr>
@endforeach
</tbody>
</table>
@endif
@if($em->count())
<table class="table monotable">
<thead>
<tr>
<th colspan="4">Echomails</th>
</tr>
<tr>
<th>From</th>
<th>MSGID</th>
<th>Date</th>
</tr>
</thead>
<tbody>
@foreach ($em as $oo)
<tr>
<td>{{ $oo->fftn->ftn }}</td>
<td>{{ $oo->msgid }}</td>
<td>{{ $oo->datetime }}</td>
</tr>
@endforeach
</tbody>
</table>
@endif

View File

@@ -435,7 +435,7 @@
<tbody>
@foreach ($x->groupBy('sent_pkt') as $oo)
<tr>
<td>{{ $oo->first()->sent_pkt }}</td>
<td class="packet">{{ $oo->first()->sent_pkt }}</td>
<td>{{ $oo->count() }}</td>
<td>{{ $oo->first()->sent_at }}</td>
</tr>
@@ -470,7 +470,7 @@
<tbody>
@foreach ($x->groupBy('sent_pkt') as $oo)
<tr>
<td>{{ $oo->first()->sent_pkt }}</td>
<td class="packet">{{ $oo->first()->sent_pkt }}</td>
<td>{{ $oo->count() }}</td>
<td>{{ $oo->first()->sent_at }}</td>
</tr>
@@ -505,7 +505,7 @@
<tbody>
@foreach ($x->groupBy('recv_pkt') as $oo)
<tr>
<td>{{ $oo->first()->recv_pkt }}</td>
<td class="packet">{{ $oo->first()->recv_pkt }}</td>
<td>{{ $oo->count() }}</td>
<td>{{ $oo->first()->created_at }}</td>
</tr>
@@ -540,7 +540,7 @@
<tbody>
@foreach ($x->groupBy('recv_pkt') as $oo)
<tr>
<td>{{ $oo->first()->recv_pkt }}</td>
<td class="packet">{{ $oo->first()->recv_pkt }}</td>
<td>{{ $oo->count() }}</td>
<td>{{ $oo->first()->created_at }}</td>
</tr>
@@ -561,6 +561,7 @@
@endif
</div>
@include('widgets.modal_packet')
@include('widgets.modal_purge')
@endsection

View File

@@ -0,0 +1,56 @@
<div class="modal fade" id="packet-contents" tabindex="-1">
<div class="modal-dialog modal-lg modal-dialog-scrollable">
<div class="modal-content bg-dark">
<div class="modal-header bg-success">
<h5 class="modal-title text-light">Summary Packet Contents for <span id="packet"></span></h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<i id="spinner" class="spinner-grow spinner-grow-sm d-none"></i>
<div id="modal-content"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
@section('page-scripts')
<script>
var packet = new bootstrap.Modal(document.getElementById('packet-contents'), {});
$(document).ready(function() {
$('.packet').click(function(e) {
var item = this;
var icon = $('#spinner');
$('span#packet').html(e.target.innerText);
packet.show();
$.ajax({
type: 'POST',
data: {packet: e.target.innerText,_token: '{{csrf_token()}}'},
beforeSend: function() {
icon.toggleClass('d-none');
},
success: function(data) {
icon.toggleClass('d-none');
$('div#modal-content').html(data);
},
error: function(e) {
icon.toggleClass('d-none');
alert('That didnt work? Please try again....');
},
url: '{{ url('packet/contents') }}/'+e.target.innerText,
cache: false
})
return false;
});
});
</script>
@append