fileprogress.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. function FileProgress(file, targetID) {
  2. this.fileProgressID = file.id;
  3. this.opacity = 100;
  4. this.height = 0;
  5. this.fileProgressWrapper = document.getElementById(this.fileProgressID);
  6. if (!this.fileProgressWrapper) {
  7. this.fileProgressWrapper = document.createElement("div");
  8. this.fileProgressWrapper.className = "progressWrapper";
  9. this.fileProgressWrapper.id = this.fileProgressID;
  10. this.fileProgressElement = document.createElement("div");
  11. this.fileProgressElement.className = "progressContainer";
  12. var progressCancel = document.createElement("a");
  13. progressCancel.className = "progressCancel";
  14. progressCancel.href = "#";
  15. progressCancel.style.visibility = "hidden";
  16. progressCancel.appendChild(document.createTextNode(" "));
  17. var progressText = document.createElement("div");
  18. progressText.className = "progressName";
  19. progressText.appendChild(document.createTextNode(file.name));
  20. var progressBar = document.createElement("div");
  21. progressBar.className = "progressBarInProgress";
  22. var progressStatus = document.createElement("div");
  23. progressStatus.className = "progressBarStatus";
  24. progressStatus.innerHTML = " ";
  25. this.fileProgressElement.appendChild(progressCancel);
  26. this.fileProgressElement.appendChild(progressText);
  27. this.fileProgressElement.appendChild(progressStatus);
  28. this.fileProgressElement.appendChild(progressBar);
  29. this.fileProgressWrapper.appendChild(this.fileProgressElement);
  30. document.getElementById(targetID).appendChild(this.fileProgressWrapper);
  31. } else {
  32. this.fileProgressElement = this.fileProgressWrapper.firstChild;
  33. this.reset();
  34. }
  35. this.height = this.fileProgressWrapper.offsetHeight;
  36. this.setTimer(null);
  37. }
  38. FileProgress.prototype.setTimer = function (timer) {
  39. this.fileProgressElement["FP_TIMER"] = timer;
  40. };
  41. FileProgress.prototype.getTimer = function (timer) {
  42. return this.fileProgressElement["FP_TIMER"] || null;
  43. };
  44. FileProgress.prototype.reset = function () {
  45. this.fileProgressElement.className = "progressContainer";
  46. this.fileProgressElement.childNodes[2].innerHTML = " ";
  47. this.fileProgressElement.childNodes[2].className = "progressBarStatus";
  48. this.fileProgressElement.childNodes[3].className = "progressBarInProgress";
  49. this.fileProgressElement.childNodes[3].style.width = "0%";
  50. this.appear();
  51. };
  52. FileProgress.prototype.setProgress = function (percentage) {
  53. this.fileProgressElement.className = "progressContainer green";
  54. this.fileProgressElement.childNodes[3].className = "progressBarInProgress";
  55. this.fileProgressElement.childNodes[3].style.width = percentage + "%";
  56. this.appear();
  57. };
  58. FileProgress.prototype.setComplete = function () {
  59. this.fileProgressElement.className = "progressContainer blue";
  60. this.fileProgressElement.childNodes[3].className = "progressBarComplete";
  61. this.fileProgressElement.childNodes[3].style.width = "";
  62. var oSelf = this;
  63. this.setTimer(setTimeout(function () {
  64. oSelf.disappear();
  65. }, 10000));
  66. };
  67. FileProgress.prototype.setError = function () {
  68. this.fileProgressElement.className = "progressContainer red";
  69. this.fileProgressElement.childNodes[3].className = "progressBarError";
  70. this.fileProgressElement.childNodes[3].style.width = "";
  71. var oSelf = this;
  72. this.setTimer(setTimeout(function () {
  73. oSelf.disappear();
  74. }, 5000));
  75. };
  76. FileProgress.prototype.setCancelled = function () {
  77. this.fileProgressElement.className = "progressContainer";
  78. this.fileProgressElement.childNodes[3].className = "progressBarError";
  79. this.fileProgressElement.childNodes[3].style.width = "";
  80. var oSelf = this;
  81. this.setTimer(setTimeout(function () {
  82. oSelf.disappear();
  83. }, 2000));
  84. };
  85. FileProgress.prototype.setStatus = function (status) {
  86. this.fileProgressElement.childNodes[2].innerHTML = status;
  87. };
  88. // Show/Hide the cancel button
  89. FileProgress.prototype.toggleCancel = function (show, swfUploadInstance) {
  90. this.fileProgressElement.childNodes[0].style.visibility = show ? "visible" : "hidden";
  91. if (swfUploadInstance) {
  92. var fileID = this.fileProgressID;
  93. this.fileProgressElement.childNodes[0].onclick = function () {
  94. swfUploadInstance.cancelUpload(fileID);
  95. return false;
  96. };
  97. }
  98. };
  99. FileProgress.prototype.appear = function () {
  100. if (this.getTimer() !== null) {
  101. clearTimeout(this.getTimer());
  102. this.setTimer(null);
  103. }
  104. if (this.fileProgressWrapper.filters) {
  105. try {
  106. this.fileProgressWrapper.filters.item("DXImageTransform.Microsoft.Alpha").opacity = 100;
  107. } catch (e) {
  108. // If it is not set initially, the browser will throw an error. This will set it if it is not set yet.
  109. this.fileProgressWrapper.style.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity=100)";
  110. }
  111. } else {
  112. this.fileProgressWrapper.style.opacity = 1;
  113. }
  114. this.fileProgressWrapper.style.height = "";
  115. this.height = this.fileProgressWrapper.offsetHeight;
  116. this.opacity = 100;
  117. this.fileProgressWrapper.style.display = "";
  118. };
  119. // Fades out and clips away the FileProgress box.
  120. FileProgress.prototype.disappear = function () {
  121. var reduceOpacityBy = 15;
  122. var reduceHeightBy = 4;
  123. var rate = 30; // 15 fps
  124. if (this.opacity > 0) {
  125. this.opacity -= reduceOpacityBy;
  126. if (this.opacity < 0) {
  127. this.opacity = 0;
  128. }
  129. if (this.fileProgressWrapper.filters) {
  130. try {
  131. this.fileProgressWrapper.filters.item("DXImageTransform.Microsoft.Alpha").opacity = this.opacity;
  132. } catch (e) {
  133. // If it is not set initially, the browser will throw an error. This will set it if it is not set yet.
  134. this.fileProgressWrapper.style.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity=" + this.opacity + ")";
  135. }
  136. } else {
  137. this.fileProgressWrapper.style.opacity = this.opacity / 100;
  138. }
  139. }
  140. if (this.height > 0) {
  141. this.height -= reduceHeightBy;
  142. if (this.height < 0) {
  143. this.height = 0;
  144. }
  145. this.fileProgressWrapper.style.height = this.height + "px";
  146. }
  147. if (this.height > 0 || this.opacity > 0) {
  148. var oSelf = this;
  149. this.setTimer(setTimeout(function () {
  150. oSelf.disappear();
  151. }, rate));
  152. } else {
  153. this.fileProgressWrapper.style.display = "none";
  154. this.setTimer(null);
  155. }
  156. };