Source: popup.js

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright ${year}, Red Hat, Inc. and individual contributors
  4. * by the @authors tag. See the copyright.txt in the distribution for a
  5. * full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. (function ($, rf) {
  23. rf.ui = rf.ui || {};
  24. /**
  25. * A simple popup
  26. *
  27. * @extends RichFaces.BaseComponent
  28. * @memberOf! RichFaces.ui
  29. * @constructs RichFaces.ui.Popup
  30. *
  31. * @param id
  32. * @param options
  33. */
  34. rf.ui.Popup = function(id, options) {
  35. $super.constructor.call(this, id);
  36. this.options = $.extend({}, defaultOptions, options);
  37. this.positionOptions = {type: this.options.positionType, from:this.options.jointPoint, to:this.options.direction, offset: this.options.positionOffset};
  38. this.popup = $(document.getElementById(id));
  39. this.visible = this.options.visible;
  40. this.attachTo = this.options.attachTo;
  41. this.attachToBody = this.options.attachToBody;
  42. this.positionType = this.options.positionType;
  43. this.positionOffset = this.options.positionOffset;
  44. };
  45. rf.BaseComponent.extend(rf.ui.Popup);
  46. var $super = rf.ui.Popup.$super;
  47. var defaultOptions = {
  48. visible: false
  49. };
  50. $.extend(rf.ui.Popup.prototype, {
  51. name : "popup",
  52. /**
  53. * Show the popup
  54. *
  55. * @method
  56. * @name RichFaces.ui.Popup#show
  57. */
  58. show: function(event) {
  59. if (!this.visible) {
  60. if (this.attachToBody) {
  61. this.parentElement = this.popup.parent().get(0);
  62. document.body.appendChild(this.popup.get(0));
  63. }
  64. this.visible = true;
  65. }
  66. this.popup.setPosition(event || {id: this.attachTo}, this.positionOptions).show();
  67. },
  68. /**
  69. * Hide the popup
  70. *
  71. * @method
  72. * @name RichFaces.ui.Popup#hide
  73. */
  74. hide: function() {
  75. if (this.visible) {
  76. this.popup.hide();
  77. this.visible = false;
  78. if (this.attachToBody && this.parentElement) {
  79. this.parentElement.appendChild(this.popup.get(0));
  80. this.parentElement = null;
  81. }
  82. }
  83. },
  84. /**
  85. * Returns true if the popup is visible
  86. *
  87. * @method
  88. * @name RichFaces.ui.Popup#isVisible
  89. * @return {boolean} true if the popup is visible
  90. */
  91. isVisible: function() {
  92. return this.visible;
  93. },
  94. getId: function() {
  95. return this.id;
  96. },
  97. destroy: function() {
  98. if (this.attachToBody && this.parentElement) {
  99. this.parentElement.appendChild(this.popup.get(0));
  100. this.parentElement = null;
  101. }
  102. }
  103. });
  104. })(RichFaces.jQuery, window.RichFaces);