Source: notify.js

  1. (function($, rf) {
  2. rf.ui = rf.ui || {};
  3. var defaultOptions = {
  4. styleClass: '',
  5. nonblocking: false,
  6. nonblockingOpacity: 0.2,
  7. showHistory: false,
  8. animationSpeed: 'slow',
  9. opacity: '1',
  10. showShadow: false,
  11. showCloseButton: true,
  12. appearAnimation: 'fade',
  13. hideAnimation: 'fade',
  14. sticky: false,
  15. stayTime: 8000,
  16. delay: 0
  17. };
  18. var defaultStackId = "org.richfaces.notifyStack.default";
  19. var events = "click dblclick keydown keypress keyup mousedown mousemove mouseout mouseover mouseup";
  20. var propertyTranslation = {
  21. 'summary':'pnotify_title',
  22. 'detail': 'pnotify_text',
  23. 'styleClass': 'pnotify_addclass',
  24. 'nonblocking': 'pnotify_nonblock',
  25. 'nonblockingOpacity': 'pnotify_nonblock_opacity',
  26. 'showHistory': 'pnotify_history',
  27. 'animation': 'pnotify_animation',
  28. 'appearAnimation': 'effect_in',
  29. 'hideAnimation': 'effect_out',
  30. 'animationSpeed': 'pnotify_animate_speed',
  31. 'opacity': 'pnotify_opacity',
  32. 'showShadow': 'pnotify_shadow',
  33. 'showCloseButton': 'pnotify_closer',
  34. 'sticky': 'pnotify_hide',
  35. 'stayTime': 'pnotify_delay'
  36. };
  37. var severityClasses = ["rf-ntf-inf", "rf-ntf-wrn", "rf-ntf-err", "rf-ntf-ftl"];
  38. var translateProperties = function(target, source, translation) {
  39. for (var attr in source) {
  40. if (source.hasOwnProperty(attr)) {
  41. var targetAttr = translation[attr] != null ? translation[attr] : attr;
  42. target[targetAttr] = source[attr];
  43. if (target[targetAttr] instanceof Object) {
  44. target[targetAttr] = $.extend({}, target[targetAttr], translation);
  45. }
  46. }
  47. }
  48. return target;
  49. };
  50. var getDefaultStack = function() {
  51. if (!document.getElementById(defaultStackId)) {
  52. var stackElement = $('<span id="' + defaultStackId + '" class="rf-ntf-stck" />');
  53. $('body').append(stackElement);
  54. new rf.ui.NotifyStack(defaultStackId);
  55. }
  56. return getStack(defaultStackId);
  57. };
  58. var getStack = function(stackId) {
  59. if (!stackId) {
  60. return getDefaultStack();
  61. }
  62. return rf.component(stackId).getStack();
  63. };
  64. var array_remove = function(array, from, to) {
  65. var rest = array.slice((to || from) + 1 || array.length);
  66. array.length = from < 0 ? array.length + from : from;
  67. return array.push.apply(array, rest);
  68. };
  69. /**
  70. * Backing object for notifications
  71. *
  72. * @memberOf! RichFaces.ui
  73. * @constructs RichFaces.ui.Notify
  74. *
  75. * @param options
  76. */
  77. rf.ui.Notify = function(options) {
  78. var options = $.extend({}, defaultOptions, options);
  79. if (typeof options.severity == "number") {
  80. var severity = severityClasses[options.severity];
  81. options.styleClass = options.styleClass ? severity + " " + options.styleClass : severity;
  82. }
  83. options.showCloseButton = options.sticky || options.showCloseButton;
  84. var pnotifyOptions = translateProperties({}, options, propertyTranslation);
  85. var display = function() {
  86. var stack = getStack(options.stackId);
  87. pnotifyOptions.pnotify_stack = stack;
  88. pnotifyOptions.pnotify_addclass += ' rf-ntf-pos-' + stack.position;
  89. pnotifyOptions.pnotify_after_close = function(pnotify) {
  90. var index = $.inArray(pnotify, stack.notifications);
  91. if (index >= 0) {
  92. array_remove(stack.notifications, index);
  93. }
  94. }
  95. var pnotify = $.pnotify(pnotifyOptions);
  96. pnotify.on(events, function(e) {
  97. if (options['on' + e.type]) {
  98. options['on' + e.type].call(this, e);
  99. }
  100. });
  101. if (options.style) {
  102. pnotify.attr('style', pnotify.attr('style') + options.style)
  103. }
  104. if (options.title) {
  105. pnotify.attr('title', options.title)
  106. }
  107. stack.addNotification(pnotify);
  108. }
  109. if (options.sticky !== null) {
  110. pnotifyOptions.pnotify_hide = !options.sticky;
  111. }
  112. $(document).ready(function() {
  113. if (options.delay) {
  114. setTimeout(function() {
  115. display();
  116. }, options.delay);
  117. } else {
  118. display();
  119. }
  120. });
  121. };
  122. })(RichFaces.jQuery, RichFaces);