Source: poll.js

  1. (function($, rf) {
  2. rf.ui = rf.ui || {};
  3. var defaultOptions = {
  4. };
  5. /**
  6. * Backing object for a4j:poll
  7. *
  8. * @extends RichFaces.BaseComponent
  9. * @memberOf! RichFaces.ui
  10. * @constructs RichFaces.ui.Poll
  11. *
  12. * @param componentId
  13. * @param options
  14. */
  15. rf.ui.Poll = function(componentId, options) {
  16. $super.constructor.call(this, componentId, options);
  17. this.id = componentId;
  18. this.attachToDom();
  19. this.interval = options.interval || 1000;
  20. this.ontimer = options.ontimer;
  21. this.pollElement = rf.getDomElement(this.id);
  22. rf.ui.pollTracker = rf.ui.pollTracker || {};
  23. if (options.enabled) {
  24. this.startPoll();
  25. }
  26. }
  27. rf.BaseComponent.extend(rf.ui.Poll);
  28. var $super = rf.ui.Poll.$super;
  29. $.extend(rf.ui.Poll.prototype, (function() {
  30. return {
  31. name: "Poll",
  32. /**
  33. * Start the poll
  34. *
  35. * @method
  36. * @name RichFaces.ui.Poll#startPoll
  37. */
  38. startPoll: function() {
  39. this.stopPoll();
  40. var poll = this;
  41. rf.ui.pollTracker[poll.id] = window.setTimeout(function() {
  42. try {
  43. poll.ontimer.call(poll.pollElement || window);
  44. poll.startPoll();
  45. } catch (e) {
  46. // TODO: handle exception
  47. }
  48. }, poll.interval);
  49. },
  50. /**
  51. * Stop the poll
  52. *
  53. * @method
  54. * @name RichFaces.ui.Poll#stopPoll
  55. */
  56. stopPoll : function() {
  57. if (rf.ui.pollTracker && rf.ui.pollTracker[this.id]) {
  58. window.clearTimeout(rf.ui.pollTracker[this.id]);
  59. delete rf.ui.pollTracker[this.id];
  60. }
  61. },
  62. setZeroRequestDelay : function(options) {
  63. if (typeof options.requestDelay == "undefined") {
  64. options.requestDelay = 0;
  65. }
  66. },
  67. destroy : function() {
  68. this.stopPoll();
  69. this.detach(this.id);
  70. // call parent's destroy method
  71. $super.destroy.call(this);
  72. }
  73. };
  74. })());
  75. })(RichFaces.jQuery, RichFaces);