mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
46 lines
955 B
JavaScript
46 lines
955 B
JavaScript
/**
|
|
* Creates an es.DropdownTool object.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @param {es.ToolbarView} toolbar
|
|
* @param {String} name
|
|
* @param {Object[]} items
|
|
*/
|
|
es.DropdownTool = function( toolbar, name, items ) {
|
|
// Inheritance
|
|
es.Tool.call( this, toolbar, name );
|
|
if ( !name ) {
|
|
return;
|
|
}
|
|
|
|
// Properties
|
|
var _this = this;
|
|
this.menuView = new es.MenuView( items, function( item ) {
|
|
_this.onSelect( item );
|
|
_this.$.text( item.label );
|
|
} );
|
|
|
|
// Events
|
|
$( document )
|
|
.add( this.toolbar.surfaceView.$ )
|
|
.mousedown( function( e ) {
|
|
if ( e.button === 0 ) {
|
|
_this.menuView.hide();
|
|
}
|
|
} );
|
|
|
|
// DOM Changes
|
|
this.$.addClass( 'es-toolbarDropdownTool' ).addClass( 'es-toolbarDropdownTool-' + name );
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
es.DropdownTool.prototype.onSelect = function( item ) {
|
|
throw 'DropdownTool.onSelect not implemented in this subclass:' + this.constructor;
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
es.extendClass( es.DropdownTool, es.Tool );
|