_progress.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. (function ($) {
  2. /**
  3. * A progressbar object. Initialized with the given id. Must be inserted into
  4. * the DOM afterwards through progressBar.element.
  5. *
  6. * method is the function which will perform the HTTP request to get the
  7. * progress bar state. Either "GET" or "POST".
  8. *
  9. * e.g. pb = new progressBar('myProgressBar');
  10. * some_element.appendChild(pb.element);
  11. */
  12. Drupal.progressBar = function (id, updateCallback, method, errorCallback) {
  13. var pb = this;
  14. this.id = id;
  15. this.method = method || 'GET';
  16. this.updateCallback = updateCallback;
  17. this.errorCallback = errorCallback;
  18. // The WAI-ARIA setting aria-live="polite" will announce changes after users
  19. // have completed their current activity and not interrupt the screen reader.
  20. this.element = $('<div class="progress-wrapper" aria-live="polite"></div>');
  21. this.element.html('<div id ="' + id + '" class="progress progress-striped active">' +
  22. '<div class="progress-bar" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0">' +
  23. '<div class="percentage sr-only"></div>' +
  24. '</div></div>' +
  25. '</div><div class="percentage pull-right"></div>' +
  26. '<div class="message">&nbsp;</div>');
  27. };
  28. /**
  29. * Set the percentage and status message for the progressbar.
  30. */
  31. Drupal.progressBar.prototype.setProgress = function (percentage, message) {
  32. if (percentage >= 0 && percentage <= 100) {
  33. $('div.progress-bar', this.element).css('width', percentage + '%');
  34. $('div.progress-bar', this.element).attr('aria-valuenow', percentage);
  35. $('div.percentage', this.element).html(percentage + '%');
  36. }
  37. $('div.message', this.element).html(message);
  38. if (this.updateCallback) {
  39. this.updateCallback(percentage, message, this);
  40. }
  41. };
  42. /**
  43. * Start monitoring progress via Ajax.
  44. */
  45. Drupal.progressBar.prototype.startMonitoring = function (uri, delay) {
  46. this.delay = delay;
  47. this.uri = uri;
  48. this.sendPing();
  49. };
  50. /**
  51. * Stop monitoring progress via Ajax.
  52. */
  53. Drupal.progressBar.prototype.stopMonitoring = function () {
  54. clearTimeout(this.timer);
  55. // This allows monitoring to be stopped from within the callback.
  56. this.uri = null;
  57. };
  58. /**
  59. * Request progress data from server.
  60. */
  61. Drupal.progressBar.prototype.sendPing = function () {
  62. if (this.timer) {
  63. clearTimeout(this.timer);
  64. }
  65. if (this.uri) {
  66. var pb = this;
  67. // When doing a post request, you need non-null data. Otherwise a
  68. // HTTP 411 or HTTP 406 (with Apache mod_security) error may result.
  69. $.ajax({
  70. type: this.method,
  71. url: this.uri,
  72. data: '',
  73. dataType: 'json',
  74. success: function (progress) {
  75. // Display errors.
  76. if (progress.status == 0) {
  77. pb.displayError(progress.data);
  78. return;
  79. }
  80. // Update display.
  81. pb.setProgress(progress.percentage, progress.message);
  82. // Schedule next timer.
  83. pb.timer = setTimeout(function () { pb.sendPing(); }, pb.delay);
  84. },
  85. error: function (xmlhttp) {
  86. pb.displayError(Drupal.ajaxError(xmlhttp, pb.uri));
  87. }
  88. });
  89. }
  90. };
  91. /**
  92. * Display errors on the page.
  93. */
  94. Drupal.progressBar.prototype.displayError = function (string) {
  95. var error = $('<div class="alert alert-block alert-error"><a class="close" data-dismiss="alert" href="#">&times;</a><h4>Error message</h4></div>').append(string);
  96. $(this.element).before(error).hide();
  97. if (this.errorCallback) {
  98. this.errorCallback(this);
  99. }
  100. };
  101. })(jQuery);