2015-10-16 23:18:25 +00:00
|
|
|
( function ( mw ) {
|
|
|
|
/**
|
|
|
|
* Action menu popup widget for echo items.
|
|
|
|
*
|
|
|
|
* We don't currently have anything that properly answers the complete
|
|
|
|
* design for our popup menus in OOUI, so this widget serves two purposes:
|
2017-06-23 19:42:23 +00:00
|
|
|
* 1. The MenuSelectWidget is intended to deliver a menu that relates
|
2015-10-16 23:18:25 +00:00
|
|
|
* directly to its anchor, so its sizing is dictated by whatever anchors
|
|
|
|
* it. This is not what we require, so we have to override the 'click' event
|
|
|
|
* to reset the width of the menu.
|
|
|
|
* 2. It abstracts the behavior of the item menus for easier management
|
|
|
|
* in the item widget itself (which is fairly large)
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends OO.ui.ButtonWidget
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {Object} [config] Configuration object
|
|
|
|
* @cfg {jQuery} [$overlay] A jQuery element functioning as an overlay
|
|
|
|
* for popups.
|
|
|
|
* @cfg {number} [menuWidth=300] The width of the popup menu
|
|
|
|
*/
|
|
|
|
mw.echo.ui.ActionMenuPopupWidget = function MwEchoUiActionMenuPopupWidget( config ) {
|
|
|
|
config = config || {};
|
|
|
|
|
|
|
|
// Parent constructor
|
|
|
|
mw.echo.ui.ActionMenuPopupWidget.parent.call( this, config );
|
|
|
|
|
|
|
|
this.$overlay = config.$overlay || this.$element;
|
|
|
|
|
|
|
|
this.menuWidth = config.menuWidth || 300;
|
|
|
|
|
|
|
|
// Menu
|
2017-06-23 19:42:23 +00:00
|
|
|
this.menu = new OO.ui.MenuSelectWidget( {
|
|
|
|
$floatableContainer: this.$element,
|
2016-01-18 23:01:17 +00:00
|
|
|
classes: [ 'mw-echo-ui-actionMenuPopupWidget-menu' ],
|
|
|
|
widget: this
|
2015-10-16 23:18:25 +00:00
|
|
|
} );
|
|
|
|
this.$overlay.append( this.menu.$element );
|
|
|
|
|
|
|
|
// Events
|
|
|
|
this.connect( this, { click: 'onAction' } );
|
2016-08-05 21:44:55 +00:00
|
|
|
this.getMenu().connect( this, {
|
|
|
|
remove: 'decideToggle',
|
|
|
|
add: 'decideToggle',
|
|
|
|
clear: 'decideToggle'
|
|
|
|
} );
|
2015-10-16 23:18:25 +00:00
|
|
|
// Initialization
|
|
|
|
this.$element
|
|
|
|
.addClass( 'mw-echo-ui-actionMenuPopupWidget' );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Setup */
|
|
|
|
|
|
|
|
OO.inheritClass( mw.echo.ui.ActionMenuPopupWidget, OO.ui.ButtonWidget );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the button action being triggered.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
mw.echo.ui.ActionMenuPopupWidget.prototype.onAction = function () {
|
|
|
|
this.menu.toggle();
|
|
|
|
// HACK: The menu is attempting to be the same size as the container,
|
|
|
|
// which in our case is not the point at all. We need the menu
|
|
|
|
// to be larger, so force this setting:
|
|
|
|
this.menu.$element.css( 'width', this.menuWidth );
|
2016-03-01 02:46:49 +00:00
|
|
|
// HACK: Prevent ClippableElement from overwriting this width value on scroll
|
|
|
|
// or window resize
|
|
|
|
this.menu.toggleClipping( false );
|
2015-10-16 23:18:25 +00:00
|
|
|
};
|
|
|
|
|
2016-08-05 21:44:55 +00:00
|
|
|
/**
|
|
|
|
* Decide whether the menu should be visible, based on whether it is
|
|
|
|
* empty or not.
|
|
|
|
*/
|
|
|
|
mw.echo.ui.ActionMenuPopupWidget.prototype.decideToggle = function () {
|
|
|
|
this.toggle( !this.getMenu().isEmpty() );
|
|
|
|
};
|
|
|
|
|
2015-10-16 23:18:25 +00:00
|
|
|
/**
|
|
|
|
* Get the widget's action menu
|
|
|
|
*
|
2017-06-23 19:42:23 +00:00
|
|
|
* @return {OO.ui.MenuSelectWidget} Menu
|
2015-10-16 23:18:25 +00:00
|
|
|
*/
|
|
|
|
mw.echo.ui.ActionMenuPopupWidget.prototype.getMenu = function () {
|
|
|
|
return this.menu;
|
|
|
|
};
|
2016-11-18 21:16:43 +00:00
|
|
|
}( mediaWiki ) );
|