Current File : /home/jvzmxxx/wiki1/extensions/Echo/modules/ui/mw.echo.ui.ReadStateButtonSelectWidget.js
( function ( $, mw ) {
	/**
	 * 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 ) {
		config = config || {};

		// Parent
		mw.echo.ui.ReadStateButtonSelectWidget.parent.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 );
		}
	};
} )( jQuery, mediaWiki );