|
@@ -7,12 +7,12 @@
|
|
|
|
|
|
upload = {
|
|
|
|
|
|
- show: function(icon, text) {
|
|
|
+ show: function(icon, text, html) {
|
|
|
|
|
|
if (icon===undefined) icon = "upload";
|
|
|
|
|
|
upload.close(true);
|
|
|
- $("body").append(build.uploadModal(icon, text));
|
|
|
+ $("body").append(build.uploadModal(icon, text, html));
|
|
|
|
|
|
},
|
|
|
|
|
@@ -55,75 +55,121 @@ upload = {
|
|
|
|
|
|
local: function(files) {
|
|
|
|
|
|
- var pre_progress = 0,
|
|
|
- formData = new FormData(),
|
|
|
- xhr = new XMLHttpRequest(),
|
|
|
- albumID = album.getID(),
|
|
|
- popup,
|
|
|
- progress;
|
|
|
+ var albumID = album.getID(),
|
|
|
+ html = "";
|
|
|
|
|
|
- if (files.length<=0) return false;
|
|
|
- if (albumID===false) albumID = 0;
|
|
|
+ var process = function(files, file) {
|
|
|
|
|
|
- formData.append("function", "upload");
|
|
|
- formData.append("albumID", albumID);
|
|
|
+ var formData = new FormData(),
|
|
|
+ xhr = new XMLHttpRequest(),
|
|
|
+ pre_progress = 0,
|
|
|
+ progress;
|
|
|
|
|
|
- for (var i = 0; i < files.length; i++) {
|
|
|
+ formData.append("function", "upload");
|
|
|
+ formData.append("albumID", albumID);
|
|
|
+ formData.append(0, file);
|
|
|
|
|
|
- if (files[i].type!=="image/jpeg"&&files[i].type!=="image/jpg"&&files[i].type!=="image/png"&&files[i].type!=="image/gif"&&files[i].type!=="image/webp") {
|
|
|
- loadingBar.show("error", "The file format of " + files[i].name + " is not supported.");
|
|
|
- return false;
|
|
|
- } else {
|
|
|
- formData.append(i, files[i]);
|
|
|
- }
|
|
|
+ xhr.open("POST", lychee.api_path);
|
|
|
|
|
|
- }
|
|
|
+ xhr.onload = function() {
|
|
|
|
|
|
- upload.show();
|
|
|
+ var wait;
|
|
|
|
|
|
- window.onbeforeunload = function() { return "Lychee is currently uploading!"; };
|
|
|
+ if (xhr.status===200) {
|
|
|
|
|
|
- xhr.open("POST", lychee.api_path);
|
|
|
+ $(".upload_message .rows .row:nth-child(" + (file.num+1) + ") .status")
|
|
|
+ .html("Finished")
|
|
|
+ .addClass("success");
|
|
|
|
|
|
- xhr.onload = function() {
|
|
|
+ file.ready = true;
|
|
|
+ wait = false;
|
|
|
|
|
|
- if (xhr.status===200) {
|
|
|
+ for (var i = 0; i < files.length; i++) {
|
|
|
|
|
|
- upload.close();
|
|
|
- upload.notify("Upload complete");
|
|
|
+ if (files[i].ready===false) {
|
|
|
+ wait = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
|
|
|
- window.onbeforeunload = null;
|
|
|
+ }
|
|
|
|
|
|
- if (album.getID()===false) lychee.goto("0");
|
|
|
- else album.load(albumID);
|
|
|
+ if (wait===false) {
|
|
|
|
|
|
- }
|
|
|
+ $("#upload_files").val("");
|
|
|
|
|
|
- };
|
|
|
+ if (album.getID()===false) lychee.goto("0");
|
|
|
+ else album.load(albumID);
|
|
|
|
|
|
- xhr.upload.onprogress = function(e) {
|
|
|
+ }
|
|
|
|
|
|
- if (e.lengthComputable) {
|
|
|
+ }
|
|
|
|
|
|
- progress = (e.loaded / e.total * 100 | 0);
|
|
|
+ };
|
|
|
|
|
|
- if (progress>pre_progress) {
|
|
|
- upload.setProgress(progress);
|
|
|
- pre_progress = progress;
|
|
|
- }
|
|
|
+ xhr.upload.onprogress = function(e) {
|
|
|
+
|
|
|
+ if (e.lengthComputable) {
|
|
|
+
|
|
|
+ progress = (e.loaded / e.total * 100 | 0);
|
|
|
+
|
|
|
+ if (progress>pre_progress) {
|
|
|
+ $(".upload_message .rows .row:nth-child(" + (file.num+1) + ") .status").html(progress + "%");
|
|
|
+ pre_progress = progress;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (progress>=100) {
|
|
|
+
|
|
|
+ $(".upload_message .rows .row:nth-child(" + (file.num+1) + ") .status").html("Processing");
|
|
|
+
|
|
|
+ if (file.next!==null) process(files, file.next);
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
- if (progress>=100) {
|
|
|
- upload.setIcon("cog");
|
|
|
- upload.setText("Processing photos");
|
|
|
}
|
|
|
|
|
|
+ };
|
|
|
+
|
|
|
+ xhr.send(formData);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ if (files.length<=0) return false;
|
|
|
+ if (albumID===false) albumID = 0;
|
|
|
+
|
|
|
+ html = "<div class='rows'>";
|
|
|
+
|
|
|
+ for (var i = 0; i < files.length; i++) {
|
|
|
+
|
|
|
+ files[i].num = i;
|
|
|
+ files[i].ready = false;
|
|
|
+
|
|
|
+ if (i < files.length-1) files[i].next = files[i+1];
|
|
|
+ else files[i].next = null;
|
|
|
+
|
|
|
+ if (files[i].type!=="image/jpeg"&&files[i].type!=="image/jpg"&&files[i].type!=="image/png"&&files[i].type!=="image/gif") {
|
|
|
+
|
|
|
+ files[i].ready = true;
|
|
|
+
|
|
|
+ // Generate html with error
|
|
|
+ html += "<div class='row'><a class='name'>" + lychee.escapeHTML(files[i].name) + "</a><a class='status error'>Not supported</a></div>";
|
|
|
+
|
|
|
+ } else {
|
|
|
+
|
|
|
+ // Generate html
|
|
|
+ html += "<div class='row'><a class='name'>" + lychee.escapeHTML(files[i].name) + "</a><a class='status'></a></div>";
|
|
|
+
|
|
|
}
|
|
|
|
|
|
- };
|
|
|
+ }
|
|
|
+
|
|
|
+ html += "</div>";
|
|
|
+
|
|
|
+ window.onbeforeunload = function() { return "Lychee is currently uploading!"; };
|
|
|
+ window.onbeforeunload = null;
|
|
|
|
|
|
- $("#upload_files").val("");
|
|
|
+ upload.show(null, "Uploading", html);
|
|
|
|
|
|
- xhr.send(formData);
|
|
|
+ process(files, files[0]);
|
|
|
|
|
|
},
|
|
|
|