mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 11:16:16 +00:00
17126b2ab1
Bug: T208951 Change-Id: If51fc6d50b9755c779fd0bf1be7bb0fe276539ea
63 lines
1.4 KiB
JavaScript
63 lines
1.4 KiB
JavaScript
( function () {
|
|
/**
|
|
* A select widget for notification read state: 'all', 'read' or 'unread'
|
|
*
|
|
* @class
|
|
* @extends OO.ui.ButtonSelectWidget
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration object
|
|
*/
|
|
mw.echo.ui.ReadStateButtonSelectWidget = function MwEchoUiReadStateButtonSelectWidget( config ) {
|
|
// Parent constructor
|
|
mw.echo.ui.ReadStateButtonSelectWidget.super.call( this, $.extend( config, {
|
|
items: [
|
|
new OO.ui.ButtonOptionWidget( {
|
|
data: 'all',
|
|
label: mw.msg( 'notification-inbox-filter-all' )
|
|
} ),
|
|
new OO.ui.ButtonOptionWidget( {
|
|
data: 'read',
|
|
label: mw.msg( 'notification-inbox-filter-read' )
|
|
} ),
|
|
new OO.ui.ButtonOptionWidget( {
|
|
data: 'unread',
|
|
label: mw.msg( 'notification-inbox-filter-unread' )
|
|
} )
|
|
]
|
|
} ) );
|
|
|
|
this.connect( this, { choose: 'onChoose' } );
|
|
|
|
this.$element
|
|
.addClass( 'mw-echo-ui-readStateButtonSelectWidget' );
|
|
};
|
|
|
|
/* Initialization */
|
|
|
|
OO.inheritClass( mw.echo.ui.ReadStateButtonSelectWidget, OO.ui.ButtonSelectWidget );
|
|
|
|
/* Events */
|
|
|
|
/**
|
|
* @event filter
|
|
* @param {string} readState The chosen read state
|
|
*/
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Respond to choose event
|
|
*
|
|
* @param {OO.ui.ButtonOptionWidget} item Chosen item
|
|
* @fires filter
|
|
*/
|
|
mw.echo.ui.ReadStateButtonSelectWidget.prototype.onChoose = function ( item ) {
|
|
var data = item && item.getData();
|
|
|
|
if ( data ) {
|
|
this.emit( 'filter', data );
|
|
}
|
|
};
|
|
}() );
|