"use strict";
const MAXSIZE = 15*1024*1024; // 5MB size limit
+ const M = kivi.Materialize;
+
+ let num_images = 0;
ns.add_files = function(target) {
let files = [];
ns.reload_images = function() {
kivi.FileDB.retrieve_all((data) => {
$('#stored-images').empty();
+ num_images = data.length;
+
data.forEach(ns.create_thumb_row);
+ ns.set_image_button_enabled();
});
};
let $row = $(event.target).closest(".image-upload-row");
kivi.FileDB.delete_key(key, () => {
$row.remove();
+ num_images--;
+ ns.set_image_button_enabled();
});
};
+ ns.set_image_button_enabled = function() {
+ $('#upload_images_submit').attr("disabled", num_images == 0 || !$('#object_id').val());
+ };
+
+
ns.upload_files = function() {
let id = $('#object_id').val();
let type = $('#object_type').val();
myfiles.forEach(file => {
filesize += file.size;
if (filesize > maxsize) {
- $("#upload_result").html(kivi.t8("filesize too big: ") + filesize+ kivi.t8(" bytes, max=") + maxsize );
+ M.flash(kivi.t8("filesize too big: ") + ns.format_si(filesize) + kivi.t8(" > ") + ns.format_si(maxsize));
+ $("#upload_modal").modal("close");
return;
}
let xhr = new XMLHttpRequest;
xhr.open('POST', 'controller.pl', true);
- xhr.success = ns.attSuccess;
- xhr.progress = ns.attProgress;
- xhr.error = ns.attFailed;
- xhr.abort = ns.attCanceled;
+ xhr.onload = ns.attSuccess;
+ xhr.upload.onprogress = ns.attProgress;
+ xhr.upload.onerror = ns.attFailed;
+ xhr.upload.onabort = ns.attCanceled;
xhr.send(data);
});
});
ns.attProgress = function(event) {
if (event.lengthComputable) {
- var percentComplete = (event.loaded / event.total) * 100;
- $("#upload_result").html(percentComplete+" % "+ kivi.t8("uploaded"));
+ var percent_complete = (event.loaded / event.total) * 100;
+ $("#upload_progress div").removeClass("indeterminate").addClass("determinate").attr("style", "width: " + percent_complete + "%");
}
};
ns.attFailed = function() {
$('#upload_modal').modal('close');
- $("#upload_result").html(kivi.t8("An error occurred while transferring the file."));
+ M.flash(kivi.t8("An error occurred while transferring the file."));
};
ns.attCanceled = function() {
$('#upload_modal').modal('close');
- $("#upload_result").html(kivi.t8("The transfer has been canceled by the user."));
+ M.flash(kivi.t8("The transfer has been canceled by the user."));
};
ns.attSuccess = function() {
$('#upload_modal').modal('close');
- $("#upload_result").html(kivi.t8("Files have been uploaded successfully."));
+ M.flash(kivi.t8("Files have been uploaded successfully."));
+ kivi.FileDB.delete_all(ns.reload_images);
};
ns.resolve_object = function(event) {
$("#object_description").html(json.description);
$("#object_id").val(json.id);
}
+ ns.set_image_button_enabled();
},
error: () => {
$("#object_description").html("");
$("#object_id").val("");
+ ns.set_image_button_enabled();
}
});
};
+ /* this tries to format the number human readable. 3 significant digits, si suffix, */
+ ns.format_si = function(n) {
+ const prefixes = ["", "K" , "M", "G", "T", "P"];
+ let i = 0;
+ while (n >= 1024) {
+ n /= 1024;
+ i++;
+ }
+
+ return kivi.format_amount(n, 3 - (n|0).toString().length) + prefixes[i] + "B";
+ };
+
ns.init = function() {
ns.reload_images();
};
-
-
});
$(kivi.ImageUpload.init);