mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
c8d24ebd17
Change-Id: Iee1d1b20ed31e636bfb8fc8cf9b18ff328bf608c
100 lines
2.4 KiB
JavaScript
100 lines
2.4 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'.
|
|
* @cfg {string} [selectedSource] Currently selected source
|
|
*/
|
|
mw.echo.dm.FiltersModel = function MwEchoDmFiltersModel( config ) {
|
|
config = config || {};
|
|
|
|
// Mixin constructor
|
|
OO.EventEmitter.call( this );
|
|
|
|
this.readState = config.readState || 'all';
|
|
|
|
this.sourcePagesModel = new mw.echo.dm.SourcePagesModel();
|
|
this.selectedSource = config.selectedSource || '';
|
|
this.selectedSourcePage = null;
|
|
};
|
|
|
|
/* 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;
|
|
};
|
|
|
|
/**
|
|
* Set the currently selected source and page.
|
|
* If no page is given, or if page is null, the source title
|
|
* is assumed to be selected.
|
|
*
|
|
* @param {string} source Source name
|
|
* @param {string} [page] Page name
|
|
*/
|
|
mw.echo.dm.FiltersModel.prototype.setCurrentSourcePage = function ( source, page ) {
|
|
this.sourcePagesModel.setCurrentSourcePage( source, page );
|
|
};
|
|
|
|
/**
|
|
* Get the total count of a source. This sums the count of all
|
|
* sub pages in that source.
|
|
*
|
|
* @param {string} source Symbolic name for source
|
|
* @return {number} Total count
|
|
*/
|
|
mw.echo.dm.FiltersModel.prototype.getSourceTotalCount = function ( source ) {
|
|
return this.sourcePagesModel.getSourceTotalCount( source );
|
|
};
|
|
|
|
/**
|
|
* Get the source page model
|
|
*
|
|
* @return {mw.echo.dm.SourcePagesModel} Source pages model
|
|
*/
|
|
mw.echo.dm.FiltersModel.prototype.getSourcePagesModel = function () {
|
|
return this.sourcePagesModel;
|
|
};
|
|
|
|
}( mediaWiki ) );
|