mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 11:16:16 +00:00
a09db3ea59
Bug: T200184 Change-Id: Iaf321f88322e8a9686be62eb9b055c6544cf0ad6
128 lines
3.5 KiB
JavaScript
128 lines
3.5 KiB
JavaScript
( function () {
|
|
/**
|
|
* Widget for the settings menu in the Special:Notifications page
|
|
*
|
|
* @param {mw.echo.dm.ModelManager} manager Model manager
|
|
* @param {Object} config Configuration object
|
|
* @cfg {string} [prefLink] Link to preferences page
|
|
*/
|
|
mw.echo.ui.SpecialHelpMenuWidget = function MwEchoUiSpecialHelpMenuWidget( manager, config ) {
|
|
config = config || {};
|
|
|
|
// Parent constructor
|
|
mw.echo.ui.SpecialHelpMenuWidget.super.call( this, $.extend( {
|
|
icon: 'settings',
|
|
indicator: 'down',
|
|
menu: {
|
|
classes: [ 'mw-echo-ui-specialHelpMenuWidget-menu' ],
|
|
horizontalPosition: 'end',
|
|
width: 'auto'
|
|
}
|
|
}, config ) );
|
|
|
|
this.manager = manager;
|
|
|
|
this.markAllReadOption = new OO.ui.MenuOptionWidget( {
|
|
icon: 'checkAll',
|
|
label: this.getMarkAllReadOptionLabel(),
|
|
data: 'markAllRead'
|
|
} );
|
|
this.markAllReadOption.toggle( false );
|
|
|
|
this.menu.addItems( [ this.markAllReadOption ] );
|
|
if ( config.prefLink ) {
|
|
this.menu.addItems( [
|
|
// Preferences link
|
|
new OO.ui.MenuOptionWidget( {
|
|
// Use link for accessibility
|
|
$element: $( '<a>' ).attr( 'href', config.prefLink ),
|
|
icon: 'settings',
|
|
label: mw.msg( 'mypreferences' ),
|
|
data: { href: config.prefLink }
|
|
} )
|
|
] );
|
|
}
|
|
|
|
// Events
|
|
this.manager.connect( this, {
|
|
localCountChange: 'onLocalCountChange'
|
|
} );
|
|
this.manager.getFiltersModel().getSourcePagesModel().connect( this, { update: 'onSourcePageUpdate' } );
|
|
this.menu.connect( this, { choose: 'onMenuChoose' } );
|
|
|
|
this.$element.addClass( 'mw-echo-ui-specialHelpMenuWidget' );
|
|
};
|
|
|
|
/* Initialization */
|
|
|
|
OO.inheritClass( mw.echo.ui.SpecialHelpMenuWidget, OO.ui.DropdownWidget );
|
|
|
|
/* Events */
|
|
|
|
/**
|
|
* @event markAllRead
|
|
*
|
|
* Mark all notifications as read in the selected wiki
|
|
*/
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Respond to source page change
|
|
*/
|
|
mw.echo.ui.SpecialHelpMenuWidget.prototype.onSourcePageUpdate = function () {
|
|
this.markAllReadOption.setLabel( this.getMarkAllReadOptionLabel() );
|
|
|
|
};
|
|
|
|
/**
|
|
* Respond to local counter update event
|
|
*
|
|
* @param {number} count New count
|
|
*/
|
|
mw.echo.ui.SpecialHelpMenuWidget.prototype.onLocalCountChange = function ( count ) {
|
|
this.markAllReadOption.toggle( count > 0 );
|
|
};
|
|
|
|
/**
|
|
* Handle dropdown menu choose events
|
|
*
|
|
* @param {OO.ui.MenuOptionWidget} item Chosen item
|
|
*/
|
|
mw.echo.ui.SpecialHelpMenuWidget.prototype.onMenuChoose = function ( item ) {
|
|
var data = item.getData();
|
|
if ( data.href ) {
|
|
location.href = data.href;
|
|
} else if ( data === 'markAllRead' ) {
|
|
// Log this action
|
|
mw.echo.logger.logInteraction(
|
|
mw.echo.Logger.static.actions.markAllReadClick,
|
|
mw.echo.Logger.static.context.archive,
|
|
null, // Notification ID is irrelevant
|
|
this.manager.getTypeString(), // The type of the list in general
|
|
null, // The Logger has logic to decide whether this is mobile or not
|
|
this.manager.getFiltersModel().getSourcePagesModel().getCurrentSource() // Source name
|
|
);
|
|
this.emit( 'markAllRead' );
|
|
}
|
|
// Clear selection so handle doesn't change
|
|
this.menu.selectItem();
|
|
};
|
|
|
|
/**
|
|
* Build the button label
|
|
*
|
|
* @return {string} Mark all read button label
|
|
*/
|
|
mw.echo.ui.SpecialHelpMenuWidget.prototype.getMarkAllReadOptionLabel = function () {
|
|
var pageModel = this.manager.getFiltersModel().getSourcePagesModel(),
|
|
source = pageModel.getCurrentSource(),
|
|
sourceTitle = pageModel.getSourceTitle( source );
|
|
|
|
return sourceTitle ?
|
|
mw.msg( 'echo-mark-wiki-as-read', sourceTitle ) :
|
|
mw.msg( 'echo-mark-all-as-read' );
|
|
};
|
|
|
|
}() );
|