reimbursinator/front/static/js/viewHistory.js

289 lines
10 KiB
JavaScript
Raw Normal View History

// 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;
}
// Make a GET request to url and pass response to callback function
2019-01-30 23:42:09 +00:00
function getDataFromEndpoint(url, callback) {
const token = localStorage.getItem("token");
const xhr = new XMLHttpRequest();
console.log("Attempting a connection to the following endpoint: " + url);
2019-01-30 23:42:09 +00:00
xhr.open("GET", url, true);
xhr.onreadystatechange = function() {
if (this.readyState === 4) {
if (this.status === 200) {
console.log("GET SUCCESS!");
console.log("Server response:\n" + this.response);
2019-01-30 23:42:09 +00:00
parsedData = JSON.parse(this.response);
callback(parsedData);
} else {
console.error("GET FAILURE!");
console.error("Server status: " + this.status);
console.error("Server response:\n" + this.response);
2019-01-30 23:42:09 +00:00
}
}
};
xhr.onerror = function() {
alert("Connection error!");
};
xhr.send();
}
// Wraps a Bootstrap form group around a field
function createFormGroup(key, field) {
2019-02-01 00:27:29 +00:00
const formGroup = document.createElement("div")
formGroup.classList.add("form-group");
2019-02-01 00:27:29 +00:00
const label = document.createElement("label");
label.innerHTML = field.label;
label.setAttribute("for", key);
2019-02-01 00:27:29 +00:00
const input = document.createElement("input");
input.name = key;
input.id = key;
switch(field.type) {
case "boolean":
input.type = "checkbox";
if (field.value === true)
input.setAttribute("checked", "checked");
2019-02-01 01:48:36 +00:00
input.classList.add("form-check-input");
2019-02-01 00:27:29 +00:00
formGroup.classList.add("form-check");
label.classList.add("form-check-label");
2019-02-01 01:48:36 +00:00
formGroup.appendChild(input); // Reversed order compared to others
formGroup.appendChild(label);
break;
case "date":
case "decimal":
input.type = "text";
input.value = field.value;
2019-02-01 01:48:36 +00:00
input.classList.add("form-control");
formGroup.appendChild(label);
formGroup.appendChild(input);
break;
case "file":
input.type = "file";
2019-02-01 01:48:36 +00:00
input.classList.add("form-control-file");
formGroup.appendChild(label);
formGroup.appendChild(input);
let uploadMessage = document.createTextNode("Uploaded file:");
formGroup.appendChild(uploadMessage);
const link = document.createElement("a");
link.href = field.value;
link.innerHTML = field.value;
formGroup.appendChild(link);
break;
default:
break;
}
return formGroup;
}
function createCollapsibleCard(key, sectionTitle) {
// Create card and header
const card = document.createElement("div");
card.classList.add("card");
const cardHeader = document.createElement("div");
cardHeader.classList.add("card-header");
// Create h2, button. Append button to h2, h2 to header, and header to card
const h2 = document.createElement("h2");
const button = document.createElement("button");
button.classList.add("btn", "btn-link");
button.type = "button";
button.setAttribute("data-toggle", "collapse");
button.setAttribute("data-target", "#collapse" + key);
button.innerHTML = sectionTitle;
h2.appendChild(button);
cardHeader.appendChild(h2);
card.appendChild(cardHeader);
return card;
}
function createCollapsibleCardBody(key, form, sectionDescription, sectionCompleted) {
2019-02-01 00:27:29 +00:00
// Create wrapper div
const div = document.createElement("div");
sectionCompleted ? div.classList.add("collapse") : div.classList.add("collapse", "show");
div.setAttribute("data-parent", "#editReportAccordion");
div.id = "collapse" + key;
2019-02-01 00:27:29 +00:00
// Create card body. Append form to body, body to wrapper div
const cardBody = document.createElement("div");
cardBody.classList.add("card-body");
2019-02-01 00:27:29 +00:00
cardBody.insertAdjacentHTML("beforeend", sectionDescription);
cardBody.appendChild(form);
div.appendChild(cardBody);
return div;
}
function createEditReportForm(parsedData) {
2019-02-01 01:48:36 +00:00
const col = document.querySelector(".col-sm-8");
2019-01-30 23:42:09 +00:00
const fragment = document.createDocumentFragment();
2019-02-01 01:48:36 +00:00
while (col.firstChild) {
col.removeChild(col.firstChild)
2019-01-30 23:42:09 +00:00
}
// Add report title and date to card header
2019-02-01 01:48:36 +00:00
const reportTitle = parsedData.title;
const dateCreated = new Date(parsedData.date_created).toLocaleDateString("en-US");
const h3 = document.createElement("h3");
h3.innerHTML = reportTitle + " " + dateCreated;
2019-02-01 01:48:36 +00:00
h3.classList.add("text-center");
fragment.appendChild(h3);
// Create accordion
const accordion = document.createElement("div");
accordion.classList.add("accordion");
accordion.id = "editReportAccordion";
2019-02-01 08:07:08 +00:00
// Traverse the report's sections array
2019-01-30 23:42:09 +00:00
const sections = parsedData.sections;
for (let key in sections) {
let section = sections[key];
2019-02-01 08:07:08 +00:00
let collapsibleCard = createCollapsibleCard(key, section.title)
// Create a new form with the section key index as id
let form = document.createElement("form");
form.classList.add("form");
form.id = "form" + key;
// Traverse the fields of this section
let fields = section.fields;
for (let key in fields) {
let field = fields[key];
2019-02-01 08:07:08 +00:00
console.log("Field label: " + field.label);
console.log("Field type: " + field.type);
console.log("Field value: " + field.value);
2019-01-30 23:42:09 +00:00
2019-02-01 08:07:08 +00:00
// Create a form group for each field and add it to the form
let formGroup = createFormGroup(key, field);
form.appendChild(formGroup);
2019-01-30 23:42:09 +00:00
}
2019-02-01 08:07:08 +00:00
// Add save button to the current form
2019-02-01 01:48:36 +00:00
let saveButton = document.createElement("button");
saveButton.innerHTML = "Save";
saveButton.type = "submit";
saveButton.classList.add("btn", "btn-primary"); // TODO: add eventListener
form.appendChild(saveButton);
2019-02-01 00:27:29 +00:00
// Create collapsible card body, append form to it, append card to accordion
let cardBody = createCollapsibleCardBody(key, form, section.html_description, section.completed);
2019-02-01 08:07:08 +00:00
collapsibleCard.appendChild(cardBody);
accordion.appendChild(collapsibleCard);
}
2019-02-01 01:48:36 +00:00
// Add submit button to accordion
let submitButton = document.createElement("button");
submitButton.innerHTML = "Submit Report";
submitButton.type = "submit";
submitButton.classList.add("btn", "btn-primary", "btn-lg", "btn-block"); // TODO: add eventListener
accordion.appendChild(submitButton);
fragment.appendChild(accordion)
2019-02-01 01:48:36 +00:00
col.appendChild(fragment);
2019-01-30 23:42:09 +00:00
}
function displayListOfReports(parsedData) {
const reports = parsedData.reports;
2019-02-02 22:22:18 +00:00
if (reports.length === 0) {
const cardBody = document.querySelector(".card-body");
const p = document.createElement("p");
p.innerHTML = "No reports found.";
cardBody.appendChild(p);
} else {
2019-02-02 22:22:18 +00:00
const table = document.querySelector("table");
const tbody = document.querySelector("tbody");
// Insert data into the table row
for (let i = 0; i < reports.length; i++) {
let title = reports[i].title;
let dateCreated = new Date(reports[i].date_created).toLocaleDateString("en-US");
let state = reports[i].state;
let dateSubmitted;
let rid = reports[i].report_pk;
let bodyRow = tbody.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"); // Column visible only on large displays
// Create edit/view button
let actionButton = document.createElement("button");
actionButton.type = "submit";
actionButton.setAttribute("data-rid", rid);
actionButton.classList.add("btn");
if (state === "created") {
// Edit button
dateSubmitted = "TBD";
actionButton.classList.add("btn-primary", "edit-report-button"); // Add event listener class
2019-02-02 22:22:18 +00:00
actionButton.innerHTML = "Edit";
//actionButton.addEventListener("click", openEditReportForm);
2019-02-02 22:22:18 +00:00
} else {
// View button
dateSubmitted = new Date(reports[i].date_submitted).toLocaleDateString("en-US");
actionButton.classList.add("btn-success");
actionButton.innerHTML = "View";
}
let dateSubmittedCell = bodyRow.insertCell(3);
dateSubmittedCell.innerHTML = dateSubmitted;
dateSubmittedCell.classList.add("d-none", "d-md-table-cell"); // Column visible on medium and larger displays
bodyRow.insertCell(4).appendChild(actionButton);
}
table.style.visibility = "visible";
}
}
document.addEventListener("DOMContentLoaded", function(event) {
2019-01-30 23:42:09 +00:00
const url = getEndpointDomain() + "api/v1/reports";
getDataFromEndpoint(url, displayListOfReports);
});
document.addEventListener("click", function(event) {
if (event.target && event.target.classList.contains("edit-report-button")) {
console.log("Edit button clicked");
const url = getEndpointDomain() + "api/v1/report/" + event.target.dataset.rid;
getDataFromEndpoint(url, createEditReportForm);
}
// TODO: Add view report
});