( function ( $, mw ) { /** * An option widget for the page filter in PageFilterWidget * * @class * @extends OO.ui.OptionWidget * @mixins OO.ui.mixin.IconElement * * @constructor * @param {Object} [config] Configuration object * @cfg {number} [unreadCount] Number of unread notifications */ mw.echo.ui.PageNotificationsOptionWidget = function MwEchoUiPageNotificationsOptionWidget( config ) { config = config || {}; // Parent mw.echo.ui.PageNotificationsOptionWidget.parent.call( this, config ); // Mixin constructors OO.ui.mixin.IconElement.call( this, config ); this.count = config.unreadCount || 0; this.$label .addClass( 'mw-echo-ui-pageNotificationsOptionWidget-title-label' ); this.unreadCountLabel = new OO.ui.LabelWidget( { classes: [ 'mw-echo-ui-pageNotificationsOptionWidget-label-count' ], label: String( this.count ) } ); // Initialization this.$element .addClass( 'mw-echo-ui-pageNotificationsOptionWidget' ) .append( $( '