2019-01-28 05:39:48 +00:00
|
|
|
// Hack to change endpoint url for each OS
|
|
|
|
function getEndpointDomain() {
|
|
|
|
let OSName;
|
|
|
|
let domain;
|
|
|
|
|
|
|
|
if (navigator.appVersion.indexOf("Win") !== -1)
|
|
|
|
OSName = "Windows";
|
|
|
|
else if (navigator.appVersion.indexOf("Mac") !== -1)
|
|
|
|
OSName = "MacOS";
|
|
|
|
else if (navigator.appVersion.indexOf("X11") !== -1)
|
|
|
|
OSName = "UNIX";
|
|
|
|
else if (navigator.appVersion.indexOf("Linux") !== -1)
|
|
|
|
OSName = "Linux";
|
|
|
|
else
|
|
|
|
OSName = "Unknown OS";
|
|
|
|
|
|
|
|
console.log(`Detected operating system: ${OSName}`);
|
|
|
|
|
|
|
|
if (OSName === "Windows") {
|
|
|
|
domain = "https://192.168.99.100:8444/";
|
|
|
|
} else {
|
|
|
|
domain = "https://localhost:8444/"
|
|
|
|
}
|
|
|
|
|
|
|
|
return domain;
|
|
|
|
}
|
|
|
|
|
2019-01-28 00:21:51 +00:00
|
|
|
function displayListOfReports(listOfReports) {
|
|
|
|
const cardBody = document.querySelector(".card-body");
|
|
|
|
const table = document.createElement("table");
|
|
|
|
const reports = listOfReports.reports;
|
|
|
|
let rowsInserted = 0;
|
|
|
|
|
|
|
|
for (let i = 0; i < reports.length; i++) {
|
2019-01-29 09:27:38 +00:00
|
|
|
let title = reports[i].title;
|
|
|
|
let dateCreated = new Date(reports[i].date_created).toLocaleDateString("en-US");
|
|
|
|
let state = reports[i].state;
|
|
|
|
let dateSubmitted;
|
|
|
|
|
|
|
|
let actionButton = document.createElement("button");
|
|
|
|
actionButton.type = "submit";
|
|
|
|
actionButton.classList.add("btn");
|
|
|
|
if (state === "created") {
|
|
|
|
dateSubmitted = "TBD";
|
|
|
|
actionButton.classList.add("btn-primary");
|
|
|
|
actionButton.innerHTML = "Edit";
|
|
|
|
} else {
|
|
|
|
dateSubmitted = new Date(reports[i].date_submitted).toLocaleDateString("en-US");
|
|
|
|
actionButton.classList.add("btn-success");
|
|
|
|
actionButton.innerHTML = "View";
|
|
|
|
}
|
|
|
|
|
|
|
|
let bodyRow = table.insertRow(i);
|
|
|
|
bodyRow.insertCell(0).innerHTML = title;
|
|
|
|
bodyRow.insertCell(1).innerHTML = dateCreated;
|
|
|
|
|
|
|
|
let stateCell = bodyRow.insertCell(2);
|
|
|
|
stateCell.innerHTML = state;
|
|
|
|
stateCell.classList.add("d-none", "d-lg-table-cell");
|
|
|
|
|
|
|
|
|
|
|
|
let dateSubmittedCell = bodyRow.insertCell(3);
|
|
|
|
dateSubmittedCell.innerHTML = dateSubmitted;
|
|
|
|
dateSubmittedCell.classList.add("d-none", "d-md-table-cell");
|
|
|
|
|
|
|
|
bodyRow.insertCell(4).appendChild(actionButton);
|
|
|
|
rowsInserted++;
|
2019-01-28 00:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rowsInserted === 0) {
|
|
|
|
// Empty report list
|
|
|
|
const p = document.createElement("p");
|
|
|
|
p.innerHTML = "No reports found.";
|
|
|
|
cardBody.appendChild(p);
|
|
|
|
} else {
|
|
|
|
// Create table header, add to table, and append result to the card body
|
|
|
|
const thead = document.createElement("thead");
|
|
|
|
const tr = document.createElement("tr");
|
|
|
|
|
|
|
|
const headTitle = document.createElement("th");
|
|
|
|
headTitle.innerHTML = "Title";
|
|
|
|
tr.appendChild(headTitle);
|
|
|
|
|
|
|
|
const headDateCreated = document.createElement("th");
|
|
|
|
headDateCreated.innerHTML = "Date Created";
|
|
|
|
tr.appendChild(headDateCreated);
|
|
|
|
|
|
|
|
const headState = document.createElement("th");
|
|
|
|
headState.innerHTML = "State";
|
2019-01-29 09:27:38 +00:00
|
|
|
headState.classList.add("d-none", "d-lg-table-cell");
|
2019-01-28 00:21:51 +00:00
|
|
|
tr.appendChild(headState);
|
|
|
|
|
|
|
|
const headDateSubmitted = document.createElement("th")
|
|
|
|
headDateSubmitted.innerHTML = "Date Submitted";
|
2019-01-29 09:27:38 +00:00
|
|
|
headDateSubmitted.classList.add("d-none", "d-md-table-cell");
|
2019-01-28 00:21:51 +00:00
|
|
|
tr.appendChild(headDateSubmitted);
|
|
|
|
|
2019-01-29 09:27:38 +00:00
|
|
|
const headAction = document.createElement("th")
|
|
|
|
headAction.innerHTML = "Action";
|
|
|
|
tr.appendChild(headAction);
|
|
|
|
|
2019-01-28 00:21:51 +00:00
|
|
|
thead.appendChild(tr);
|
|
|
|
table.prepend(thead);
|
|
|
|
table.classList.add("table", "table-striped", "table-responsive-sm");
|
|
|
|
cardBody.appendChild(table);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getReportHistory(event) {
|
|
|
|
const token = localStorage.getItem("token");
|
2019-01-28 05:39:48 +00:00
|
|
|
const url = getEndpointDomain() + "backend/list_report";
|
2019-01-28 00:21:51 +00:00
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
|
2019-01-28 05:39:48 +00:00
|
|
|
console.log(`Attempting a connection to the following endpoint: ${url}`);
|
|
|
|
|
2019-01-28 00:21:51 +00:00
|
|
|
xhr.open("GET", url, true);
|
2019-01-28 05:40:49 +00:00
|
|
|
//xhr.setRequestHeader("Authorization", `Token ${token}`);
|
2019-01-28 00:21:51 +00:00
|
|
|
xhr.onreadystatechange = function() {
|
|
|
|
if (this.readyState === 4) {
|
|
|
|
if (this.status === 200) {
|
|
|
|
console.log("GET list_report SUCCESS!");
|
|
|
|
console.log(`Server response:\n${this.response}`);
|
|
|
|
listOfReports = JSON.parse(this.response);
|
|
|
|
displayListOfReports(listOfReports);
|
|
|
|
} else {
|
|
|
|
console.log("GET list_report FAILURE!");
|
|
|
|
console.log(`Server status: ${this.status}`);
|
|
|
|
console.log(`Server response:\n${this.response}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.onerror = function() {
|
|
|
|
alert("Connection error!");
|
|
|
|
};
|
|
|
|
|
|
|
|
xhr.send();
|
|
|
|
}
|
|
|
|
|
|
|
|
document.addEventListener("DOMContentLoaded", getReportHistory);
|