5 // The #mw-notification-area div that all notifications are contained inside.
7 // Number of open notification boxes at any time
8 openNotificationCount
= 0,
10 preReadyNotifQueue
= [],
11 rAF
= window
.requestAnimationFrame
|| setTimeout
;
14 * A Notification object for 1 message.
16 * The underscore in the name is to avoid a bug <https://github.com/senchalabs/jsduck/issues/304>.
17 * It is not part of the actual class name.
19 * The constructor is not publicly accessible; use mw.notification#notify instead.
20 * This does not insert anything into the document (see #start).
22 * @class mw.Notification_
23 * @alternateClassName mw.Notification
26 * @param {mw.Message|jQuery|HTMLElement|string} message
27 * @param {Object} options
29 function Notification( message
, options
) {
30 var $notification
, $notificationContent
;
32 $notification
= $( '<div class="mw-notification"></div>' )
33 .data( 'mw.notification', this )
34 .addClass( options
.autoHide
? 'mw-notification-autohide' : 'mw-notification-noautohide' );
37 // Sanitize options.tag before it is used by any code. (Including Notification class methods)
38 options
.tag
= options
.tag
.replace( /[ _\-]+/g, '-' ).replace( /[^\-a-z0-9]+/ig, '' );
40 $notification
.addClass( 'mw-notification-tag-' + options
.tag
);
47 // Sanitize options.type
48 options
.type
= options
.type
.replace( /[ _\-]+/g, '-' ).replace( /[^\-a-z0-9]+/ig, '' );
49 $notification
.addClass( 'mw-notification-type-' + options
.type
);
52 if ( options
.title
) {
53 $( '<div class="mw-notification-title"></div>' )
54 .text( options
.title
)
55 .appendTo( $notification
);
58 $notificationContent
= $( '<div class="mw-notification-content"></div>' );
60 if ( typeof message
=== 'object' ) {
61 // Handle mw.Message objects separately from DOM nodes and jQuery objects
62 if ( message
instanceof mw
.Message
) {
63 $notificationContent
.html( message
.parse() );
65 $notificationContent
.append( message
);
68 $notificationContent
.text( message
);
71 $notificationContent
.appendTo( $notification
);
73 // Private state parameters, meant for internal use only
74 // autoHideSeconds: String alias for number of seconds for timeout of auto-hiding notifications.
75 // isOpen: Set to true after .start() is called to avoid double calls.
76 // Set back to false after .close() to avoid duplicating the close animation.
77 // isPaused: false after .resume(), true after .pause(). Avoids duplicating or breaking the hide timeouts.
78 // Set to true initially so .start() can call .resume().
79 // message: The message passed to the notification. Unused now but may be used in the future
80 // to stop replacement of a tagged notification with another notification using the same message.
81 // options: The options passed to the notification with a little sanitization. Used by various methods.
82 // $notification: jQuery object containing the notification DOM node.
83 this.autoHideSeconds
= options
.autoHideSeconds
&&
84 notification
.autoHideSeconds
[ options
.autoHideSeconds
] ||
85 notification
.autoHideSeconds
.short;
88 this.message
= message
;
89 this.options
= options
;
90 this.$notification
= $notification
;
94 * Start the notification. Called automatically by mw.notification#notify
95 * (possibly asynchronously on document-ready).
97 * This inserts the notification into the page, closes any matching tagged notifications,
98 * handles the fadeIn animations and replacement transitions, and starts autoHide timers.
102 Notification
.prototype.start = function () {
103 var options
, $notification
, $tagMatches
, autohideCount
;
112 openNotificationCount
++;
114 options
= this.options
;
115 $notification
= this.$notification
;
118 // Find notifications with the same tag
119 $tagMatches
= $area
.find( '.mw-notification-tag-' + options
.tag
);
122 // If we found existing notification with the same tag, replace them
123 if ( options
.tag
&& $tagMatches
.length
) {
125 // While there can be only one "open" notif with a given tag, there can be several
126 // matches here because they remain in the DOM until the animation is finished.
127 $tagMatches
.each( function () {
128 var notif
= $( this ).data( 'mw.notification' );
129 if ( notif
&& notif
.isOpen
) {
130 // Detach from render flow with position absolute so that the new tag can
131 // occupy its space instead.
134 position
: 'absolute',
135 width
: notif
.$notification
.width()
137 .css( notif
.$notification
.position() )
138 .addClass( 'mw-notification-replaced' );
144 .insertBefore( $tagMatches
.first() )
145 .addClass( 'mw-notification-visible' );
147 $area
.append( $notification
);
149 // This frame renders the element in the area (invisible)
151 $notification
.addClass( 'mw-notification-visible' );
156 // By default a notification is paused.
157 // If this notification is within the first {autoHideLimit} notifications then
158 // start the auto-hide timer as soon as it's created.
159 autohideCount
= $area
.find( '.mw-notification-autohide' ).length
;
160 if ( autohideCount
<= notification
.autoHideLimit
) {
166 * Pause any running auto-hide timer for this notification
168 Notification
.prototype.pause = function () {
169 if ( this.isPaused
) {
172 this.isPaused
= true;
174 if ( this.timeout
) {
175 clearTimeout( this.timeout
);
181 * Start autoHide timer if not already started.
182 * Does nothing if autoHide is disabled.
183 * Either to resume from pause or to make the first start.
185 Notification
.prototype.resume = function () {
187 if ( !notif
.isPaused
) {
190 // Start any autoHide timeouts
191 if ( notif
.options
.autoHide
) {
192 notif
.isPaused
= false;
193 notif
.timeout
= setTimeout( function () {
194 // Already finished, so don't try to re-clear it
195 delete notif
.timeout
;
197 }, this.autoHideSeconds
* 1000 );
202 * Close the notification.
204 Notification
.prototype.close = function () {
207 if ( !this.isOpen
) {
212 openNotificationCount
--;
214 // Clear any remaining timeout on close
217 // Remove the mw-notification-autohide class from the notification to avoid
218 // having a half-closed notification counted as a notification to resume
219 // when handling {autoHideLimit}.
220 this.$notification
.removeClass( 'mw-notification-autohide' );
222 // Now that a notification is being closed. Start auto-hide timers for any
223 // notification that has now become one of the first {autoHideLimit} notifications.
224 notification
.resume();
227 notif
.$notification
.removeClass( 'mw-notification-visible' );
229 setTimeout( function () {
230 if ( openNotificationCount
=== 0 ) {
231 // Hide the area after the last notification closes. Otherwise, the padding on
232 // the area can be obscure content, despite the area being empty/invisible (T54659). // FIXME
234 notif
.$notification
.remove();
236 notif
.$notification
.slideUp( 'fast', function () {
245 * Helper function, take a list of notification divs and call
246 * a function on the Notification instance attached to them.
250 * @param {jQuery} $notifications A jQuery object containing notification divs
251 * @param {string} fn The name of the function to call on the Notification instance
253 function callEachNotification( $notifications
, fn
) {
254 $notifications
.each( function () {
255 var notif
= $( this ).data( 'mw.notification' );
264 * Must only be called once, and not before the document is ready.
272 $area
= $( '<div id="mw-notification-area" class="mw-notification-area mw-notification-area-layout"></div>' )
273 // Pause auto-hide timers when the mouse is in the notification area.
275 mouseenter
: notification
.pause
,
276 mouseleave
: notification
.resume
278 // When clicking on a notification close it.
279 .on( 'click', '.mw-notification', function () {
280 var notif
= $( this ).data( 'mw.notification' );
285 // Stop click events from <a> tags from propogating to prevent clicking.
286 // on links from hiding a notification.
287 .on( 'click', 'a', function ( e
) {
291 // Prepend the notification area to the content area and save it's object.
292 mw
.util
.$content
.prepend( $area
);
293 offset
= $area
.offset();
296 function updateAreaMode() {
297 var shouldFloat
= window
.pageYOffset
> offset
.top
;
298 if ( isFloating
=== shouldFloat
) {
301 isFloating
= shouldFloat
;
303 .toggleClass( 'mw-notification-area-floating', isFloating
)
304 .toggleClass( 'mw-notification-area-layout', !isFloating
);
307 $( window
).on( 'scroll', updateAreaMode
);
314 * @class mw.notification
319 * Pause auto-hide timers for all notifications.
320 * Notifications will not auto-hide until resume is called.
322 * @see mw.Notification#pause
325 callEachNotification(
326 $area
.children( '.mw-notification' ),
332 * Resume any paused auto-hide timers from the beginning.
333 * Only the first #autoHideLimit timers will be resumed.
335 resume: function () {
336 callEachNotification(
337 // Only call resume on the first #autoHideLimit notifications.
338 // Exclude noautohide notifications to avoid bugs where #autoHideLimit
339 // `{ autoHide: false }` notifications are at the start preventing any
340 // auto-hide notifications from being autohidden.
341 $area
.children( '.mw-notification-autohide' ).slice( 0, notification
.autoHideLimit
),
347 * Display a notification message to the user.
349 * @param {HTMLElement|HTMLElement[]|jQuery|mw.Message|string} message
350 * @param {Object} options The options to use for the notification.
351 * See #defaults for details.
352 * @return {mw.Notification} Notification object
354 notify: function ( message
, options
) {
356 options
= $.extend( {}, notification
.defaults
, options
);
358 notif
= new Notification( message
, options
);
363 preReadyNotifQueue
.push( notif
);
371 * The defaults for #notify options parameter.
374 * A boolean indicating whether the notifification should automatically
375 * be hidden after shown. Or if it should persist.
378 * Key to #autoHideSeconds for number of seconds for timeout of auto-hide
382 * An optional string. When a notification is tagged only one message
383 * with that tag will be displayed. Trying to display a new notification
384 * with the same tag as one already being displayed will cause the other
385 * notification to be closed and this new notification to open up inside
386 * the same place as the previous notification.
389 * An optional title for the notification. Will be displayed above the
390 * content. Usually in bold.
393 * An optional string for the type of the message used for styling:
394 * Examples: 'info', 'warn', 'error'.
398 autoHideSeconds
: 'short',
415 * Maximum number of simultaneous notifications to start auto-hide timers for.
416 * Only this number of notifications being displayed will be auto-hidden at one time.
417 * Any additional notifications in the list will only start counting their timeout for
418 * auto-hiding after the previous messages have been closed.
420 * This basically represents the minimal number of notifications the user should
421 * be able to process during the {@link #defaults default} #autoHideSeconds time.
431 // Handle pre-ready queue.
433 while ( preReadyNotifQueue
.length
) {
434 notif
= preReadyNotifQueue
.shift();
439 mw
.notification
= notification
;
441 }( mediaWiki
, jQuery
) );