aboutsummaryrefslogtreecommitdiff
path: root/qc_app/static
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-02-14 10:56:08 +0300
committerFrederick Muriuki Muriithi2024-02-14 10:56:08 +0300
commite9e3b1efc33b35280464ba2f40d96fdd6560e3c1 (patch)
tree8eda1bc024f1a3d598045651a6508036ff23e99e /qc_app/static
parent1fda6924b4ac792e4fea42179f8e2242c1cd6dd5 (diff)
downloadgn-uploader-e9e3b1efc33b35280464ba2f40d96fdd6560e3c1.tar.gz
Extract upload progress indication code
* Extract the UI elements and code for indicating upload progress into separate, reusable "modules". * Fix bugs arising from changes.
Diffstat (limited to 'qc_app/static')
-rw-r--r--qc_app/static/js/upload_progress.js63
1 files changed, 26 insertions, 37 deletions
diff --git a/qc_app/static/js/upload_progress.js b/qc_app/static/js/upload_progress.js
index c98c33c..22dbda8 100644
--- a/qc_app/static/js/upload_progress.js
+++ b/qc_app/static/js/upload_progress.js
@@ -1,7 +1,7 @@
function make_processing_indicator(elt) {
var count = 0;
return function() {
- var message = "Checking for errors: "
+ var message = "Finalising upload and saving file: "
if(count > 5) {
count = 1;
}
@@ -63,49 +63,38 @@ function selected_filetype(radios) {
}
}
-function setup_formdata(form) {
- var formdata = new FormData();
- formdata.append(
- "speciesid",
- form.querySelector("#select_species01").value)
- formdata.append(
- "qc_text_file",
- form.querySelector("input[type='file']").files[0]);
- formdata.append(
- "filetype",
- selected_filetype(
- Array.from(form.querySelectorAll("input[type='radio']"))));
- return formdata;
-}
+function make_data_uploader(setup_formdata) {
+ return function(event) {
+ event.preventDefault();
-function upload_data(event) {
- event.preventDefault();
+ var pindicator = document.getElementById("upload-progress-indicator");
- var pindicator = document.getElementById("progress-indicator");
+ var form = event.target;
+ var the_file = form.querySelector("input[type='file']").files[0];
+ if(the_file === undefined) {
+ form.querySelector("input[type='file']").parentElement.setAttribute(
+ "class", "invalid-input");
+ error_elt = form.querySelector("#no-file-error");
+ if(error_elt !== undefined) {
+ error_elt.setAttribute("style", "display: block;");
+ }
+ return false;
+ }
+ pindicator.setAttribute("class", "modal");
+ var formdata = setup_formdata(form);
- var form = document.getElementsByTagName("form")[0];
- var the_file = form.querySelector("input[type='file']").files[0];
- if(the_file === undefined) {
- form.querySelector("#file_upload").parentElement.setAttribute(
- "class", "invalid-input");
- form.querySelector("#no-file-error").setAttribute(
- "style", "display: block;");
+ document.getElementById("progress-filename").innerHTML = the_file.name;
+ var request = setup_request(
+ the_file, document.getElementById("upload-progress-indicator"));
+ request.open(form.getAttribute("method"), form.getAttribute("action"));
+ request.send(formdata);
return false;
}
- pindicator.setAttribute("class", "modal");
- var formdata = setup_formdata(form);
-
- document.getElementById("progress-filename").innerHTML = the_file.name;
- var request = setup_request(
- the_file, document.getElementById("progress-indicator"));
- request.open(form.getAttribute("method"), form.getAttribute("action"));
- request.send(formdata);
- return false;
}
-function setup_upload_handlers() {
+function setup_upload_handlers(formid, datauploader) {
console.info("Setting up the upload handlers.")
- upload_form = document.getElementsByTagName("form")[0];
- upload_form.addEventListener("submit", upload_data);
+ upload_form = document.getElementById(formid);
+ upload_form.addEventListener("submit", datauploader);
}