2018-11-12 13:56:38 +00:00
|
|
|
( function () {
|
2016-01-30 00:27:47 +00:00
|
|
|
/**
|
|
|
|
* Secondary menu item
|
|
|
|
*
|
|
|
|
* @class
|
2018-03-24 20:52:04 +00:00
|
|
|
* @extends OO.ui.DecoratedOptionWidget
|
2016-08-05 21:44:55 +00:00
|
|
|
* @mixins OO.ui.mixin.PendingElement
|
2016-01-30 00:27:47 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {Object} [config] Configuration object
|
2018-05-22 14:57:23 +00:00
|
|
|
* @cfg {string} [type] Optional action type. Used to note a dynamic action, by setting it to 'dynamic-action'
|
|
|
|
* @cfg {string} [url] Item URL for links
|
|
|
|
* @cfg {string} [tooltip] Tooltip for links
|
2016-01-30 00:27:47 +00:00
|
|
|
* @cfg {string} [description] An optional description for the item
|
2018-05-22 14:57:23 +00:00
|
|
|
* @cfg {Object} [actionData] Action data
|
2016-01-30 00:27:47 +00:00
|
|
|
* @cfg {boolean} [prioritized] The item is prioritized outside the
|
|
|
|
* popup menu.
|
|
|
|
*/
|
|
|
|
mw.echo.ui.MenuItemWidget = function MwEchoUiMenuItemWidget( config ) {
|
|
|
|
config = config || {};
|
|
|
|
|
2018-03-24 20:52:04 +00:00
|
|
|
this.dynamic = config.type === 'dynamic-action';
|
|
|
|
// Needs to be set before parent constructor is called
|
|
|
|
// as it changes the value of getTagName.
|
|
|
|
this.isLink = config.url && !this.isDynamicAction();
|
|
|
|
|
2016-01-30 00:27:47 +00:00
|
|
|
// Parent constructor
|
2018-05-22 14:56:46 +00:00
|
|
|
mw.echo.ui.MenuItemWidget.super.call( this, config );
|
2016-01-30 00:27:47 +00:00
|
|
|
|
|
|
|
// Mixin constructors
|
2016-08-05 21:44:55 +00:00
|
|
|
OO.ui.mixin.PendingElement.call( this, config );
|
2016-01-30 00:27:47 +00:00
|
|
|
|
|
|
|
this.prioritized = !!config.prioritized;
|
2016-08-05 21:44:55 +00:00
|
|
|
this.messages = this.isDynamicAction() ?
|
|
|
|
config.actionData.messages :
|
2016-08-24 23:45:02 +00:00
|
|
|
{};
|
2016-08-05 21:44:55 +00:00
|
|
|
|
|
|
|
this.actionData = config.actionData || {};
|
|
|
|
|
2016-01-30 00:27:47 +00:00
|
|
|
// Optional description
|
|
|
|
this.descriptionLabel = new OO.ui.LabelWidget( {
|
2018-03-24 20:52:04 +00:00
|
|
|
classes: [ 'mw-echo-ui-menuItemWidget-description' ],
|
2016-08-24 23:45:02 +00:00
|
|
|
label: config.description || ''
|
2016-01-30 00:27:47 +00:00
|
|
|
} );
|
2016-08-24 23:45:02 +00:00
|
|
|
this.descriptionLabel.toggle( !this.prioritized && config.description );
|
2016-01-30 00:27:47 +00:00
|
|
|
|
2018-03-24 20:52:04 +00:00
|
|
|
this.$label.append( this.descriptionLabel.$element );
|
|
|
|
|
2016-01-30 00:27:47 +00:00
|
|
|
// Build the option
|
|
|
|
this.$element
|
|
|
|
.addClass( 'mw-echo-ui-menuItemWidget' )
|
|
|
|
.toggleClass( 'mw-echo-ui-menuItemWidget-prioritized', this.prioritized )
|
2018-03-24 20:52:04 +00:00
|
|
|
.toggleClass( 'mw-echo-ui-menuItemWidget-dynamic-action', this.isDynamicAction() );
|
|
|
|
|
|
|
|
if ( this.isLink ) {
|
|
|
|
this.$element.attr( {
|
|
|
|
href: config.url,
|
|
|
|
title: config.tooltip
|
|
|
|
} );
|
2016-01-30 00:27:47 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Initialization */
|
|
|
|
|
2018-03-24 20:52:04 +00:00
|
|
|
OO.inheritClass( mw.echo.ui.MenuItemWidget, OO.ui.DecoratedOptionWidget );
|
2016-08-05 21:44:55 +00:00
|
|
|
OO.mixinClass( mw.echo.ui.MenuItemWidget, OO.ui.mixin.PendingElement );
|
2016-01-30 00:27:47 +00:00
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
|
|
|
mw.echo.ui.MenuItemWidget.static.highlightable = false;
|
|
|
|
mw.echo.ui.MenuItemWidget.static.pressable = false;
|
|
|
|
|
2016-03-01 02:34:02 +00:00
|
|
|
/* Methods */
|
|
|
|
|
2018-03-24 20:52:04 +00:00
|
|
|
mw.echo.ui.MenuItemWidget.prototype.getTagName = function () {
|
|
|
|
return this.isLink ? 'a' : 'div';
|
|
|
|
};
|
|
|
|
|
2016-03-01 02:34:02 +00:00
|
|
|
mw.echo.ui.MenuItemWidget.prototype.isSelectable = function () {
|
2016-08-05 21:44:55 +00:00
|
|
|
// If we have a link force selectability to false, otherwise defer to parent method
|
|
|
|
// Without a link (for dynamic actions or specific internal actions) we need this widget
|
|
|
|
// to be selectable so it emits the 'choose' event
|
2018-05-22 14:56:46 +00:00
|
|
|
return !this.isLink && mw.echo.ui.MenuItemWidget.super.prototype.isSelectable.apply( this, arguments );
|
2016-03-01 02:34:02 +00:00
|
|
|
};
|
|
|
|
|
2016-08-05 21:44:55 +00:00
|
|
|
/**
|
|
|
|
* Check whether this item is prioritized
|
|
|
|
*
|
|
|
|
* @return {boolean} Item is prioritized
|
|
|
|
*/
|
|
|
|
mw.echo.ui.MenuItemWidget.prototype.isPrioritized = function () {
|
|
|
|
return this.prioritized;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the messages for the confirmation dialog
|
|
|
|
* We expect optionally two messages - title and description.
|
|
|
|
*
|
|
|
|
* NOTE: The messages are parsed as HTML. If user-input is expected
|
|
|
|
* please make sure to properly escape it.
|
|
|
|
*
|
|
|
|
* @return {Object} Messages for the confirmation dialog
|
|
|
|
* @return {string} return.title Title for the confirmation dialog
|
|
|
|
* @return {string} return.description Description for the confirmation dialog
|
|
|
|
*/
|
|
|
|
mw.echo.ui.MenuItemWidget.prototype.getConfirmationMessages = function () {
|
|
|
|
return this.messages.confirmation;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the action data associated with this item
|
|
|
|
*
|
|
|
|
* @return {Object} Action data
|
|
|
|
*/
|
|
|
|
mw.echo.ui.MenuItemWidget.prototype.getActionData = function () {
|
|
|
|
return this.actionData;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This item is a dynamic action
|
|
|
|
*
|
|
|
|
* @return {boolean} Item is a dynamic action
|
|
|
|
*/
|
|
|
|
mw.echo.ui.MenuItemWidget.prototype.isDynamicAction = function () {
|
|
|
|
return this.dynamic;
|
|
|
|
};
|
2018-11-12 13:56:38 +00:00
|
|
|
}() );
|