Add loading spinner to report table
This commit is contained in:
parent
13ba704824
commit
e1873fe4ae
2 changed files with 13 additions and 5 deletions
|
@ -45,6 +45,9 @@
|
|||
<h3>Your Report History</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="text-center">
|
||||
<i class="fas fa-spinner fa-3x fa-spin"></i>
|
||||
</div>
|
||||
<table class="table table-striped table-responsive-sm" style="visibility:hidden">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
|
@ -290,14 +290,19 @@ function createReportForm(parsedData, type) {
|
|||
|
||||
function displayListOfReports(parsedData) {
|
||||
const reports = parsedData.reports;
|
||||
const cardBody = document.querySelector(".card-body");
|
||||
const table = document.querySelector("table");
|
||||
|
||||
console.log(cardBody);
|
||||
console.log(cardBody.firstElementChild);
|
||||
cardBody.removeChild(cardBody.firstElementChild); // remove loading spinner
|
||||
|
||||
if (reports.length === 0) {
|
||||
const cardBody = document.querySelector(".card-body");
|
||||
const h4 = document.createElement("h4");
|
||||
h4.innerHTML = "No reports found.";
|
||||
h4.classList.add("text-center");
|
||||
cardBody.insertBefore(h4, table);
|
||||
cardBody.removeChild(table);
|
||||
const h5 = document.createElement("h5");
|
||||
h5.innerHTML = "No reports found.";
|
||||
h5.classList.add("text-center");
|
||||
cardBody.appendChild(h5);
|
||||
} else {
|
||||
const tbody = document.querySelector("tbody");
|
||||
|
||||
|
|
Loading…
Reference in a new issue