Localisation updates from http://translatewiki.net.
[mediawiki.git] / resources / jquery / jquery.badge.js
blob16e71969c11e4fabab5d58e288afd3de87c7d243
1 /**
2  * jQuery Badge plugin
3  *
4  * @license MIT
5  */
7 /**
8  * @author Ryan Kaldari <rkaldari@wikimedia.org>, 2012
9  * @author Andrew Garrett <agarrett@wikimedia.org>, 2012
10  * @author Marius Hoch <hoo@online.de>, 2012
11  *
12  * Permission is hereby granted, free of charge, to any person obtaining a copy
13  * of this software and associated documentation files (the "Software"), to deal
14  * in the Software without restriction, including without limitation the rights
15  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16  * copies of the Software, and to permit persons to whom the Software is
17  * furnished to do so, subject to the following conditions:
18  *
19  * The above copyright notice and this permission notice shall be included in
20  * all copies or substantial portions of the Software.
21  *
22  * This program is distributed WITHOUT ANY WARRANTY.
23  */
24 ( function ( $ ) {
25         /**
26          * Allows you to put a "badge" on an item on the page. The badge container
27          * will be appended to the selected element(s).
28          * See mediawiki.org/wiki/ResourceLoader/Default_modules#jQuery.badge
29          *
30          * @param {number|string} text The value to display in the badge. If the value is falsey (0,
31          *   null, false, '', etc.), any existing badge will be removed.
32          * @param {boolean} inline True if the badge should be displayed inline, false
33          *   if the badge should overlay the parent element (default is inline)
34          * @param {boolean} displayZero True if the number zero should be displayed,
35          *   false if the number zero should result in the badge being hidden
36          *   (default is zero will result in the badge being hidden)
37          */
38         $.fn.badge = function ( text, inline, displayZero ) {
39                 var $badge = this.find( '.mw-badge' ),
40                         badgeStyleClass = 'mw-badge-' + ( inline ? 'inline' : 'overlay' ),
41                         isImportant = true;
43                 // If we're displaying zero, ensure style to be non-important
44                 if ( text === 0 && displayZero ) {
45                         isImportant = false;
46                         text = '0';
47                 }
49                 if ( text ) {
50                         // If a badge already exists, reuse it
51                         if ( $badge.length ) {
52                                 $badge
53                                         .toggleClass( 'mw-badge-important', isImportant )
54                                         .find( '.mw-badge-content' )
55                                                 .text( text );
56                         } else {
57                                 // Otherwise, create a new badge with the specified text and style
58                                 $badge = $( '<div class="mw-badge"></div>' )
59                                         .addClass( badgeStyleClass )
60                                         .toggleClass( 'mw-badge-important', isImportant )
61                                         .append(
62                                                 $( '<span class="mw-badge-content"></span>' ).text ( text )
63                                         )
64                                         .appendTo( this );
65                         }
66                 } else {
67                         $badge.remove();
68                 }
69                 return this;
70         };
71 }( jQuery ) );