mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-15 03:35:01 +00:00
e5e19dd0f1
Change-Id: I7b47e76ae48eaf4732d99616baa3b4b1ee4ddff5
65 lines
1.3 KiB
JavaScript
65 lines
1.3 KiB
JavaScript
( function ( mw ) {
|
|
/**
|
|
* Filters model for displaying filtered notification list.
|
|
*
|
|
* @class
|
|
* @mixins OO.EventEmitter
|
|
*
|
|
* @constructor
|
|
* @param {Object} config Configuration object
|
|
* @cfg {string} [readState='all'] Notifications read state. Allowed
|
|
* values are 'all', 'read' or 'unread'.
|
|
*/
|
|
mw.echo.dm.FiltersModel = function MwEchoDmFiltersModel( config ) {
|
|
config = config || {};
|
|
|
|
// Mixin constructor
|
|
OO.EventEmitter.call( this );
|
|
|
|
this.readState = 'all';
|
|
if ( config.readState ) {
|
|
this.setReadState( config.readState );
|
|
}
|
|
};
|
|
|
|
/* Initialization */
|
|
|
|
OO.initClass( mw.echo.dm.FiltersModel );
|
|
OO.mixinClass( mw.echo.dm.FiltersModel, OO.EventEmitter );
|
|
|
|
/* Events */
|
|
|
|
/**
|
|
* @event update
|
|
*
|
|
* The filters have been updated
|
|
*/
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Set the read state filter
|
|
*
|
|
* @param {string} readState Notifications read state
|
|
*/
|
|
mw.echo.dm.FiltersModel.prototype.setReadState = function ( readState ) {
|
|
var allowed = [ 'all', 'read', 'unread' ];
|
|
if (
|
|
this.readState !== readState &&
|
|
allowed.indexOf( readState ) > -1
|
|
) {
|
|
this.readState = readState;
|
|
this.emit( 'update' );
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Get the read state filter
|
|
*
|
|
* @return {string} Notifications read state
|
|
*/
|
|
mw.echo.dm.FiltersModel.prototype.getReadState = function () {
|
|
return this.readState;
|
|
};
|
|
} )( mediaWiki );
|