mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 19:09:29 +00:00
cebb0ad9da
This escaped the icon -> indicator migration because it was rolling its own class (!). Now using IndicatedElement to render the indicator. Also, cleaned up some incorrectly named CSS classes. Change-Id: I7f3369f2ffd3c34f0d29c0a235d1a15ddd68d1e3
97 lines
2.2 KiB
JavaScript
97 lines
2.2 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWCategoryItemWidget class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Creates an ve.ui.MWCategoryItemWidget object.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @extends OO.ui.Widget
|
|
* @mixins OO.ui.IndicatedElement
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
* @cfg {Object} [item] Category item
|
|
*/
|
|
ve.ui.MWCategoryItemWidget = function VeUiMWCategoryItemWidget( config ) {
|
|
// Config intialization
|
|
config = ve.extendObject( { 'indicator': 'down' }, config );
|
|
|
|
// Parent constructor
|
|
OO.ui.Widget.call( this, config );
|
|
|
|
// Mixin constructors
|
|
OO.ui.IndicatedElement.call( this, this.$( '<span>' ), config );
|
|
|
|
// Properties
|
|
this.name = config.item.name;
|
|
this.value = config.item.value;
|
|
this.sortKey = config.item.sortKey || '';
|
|
this.metaItem = config.item.metaItem;
|
|
this.menuOpen = false;
|
|
this.$label = this.$( '<span>' );
|
|
this.$categoryItem = this.$( '<div>' );
|
|
|
|
// Events
|
|
this.$categoryItem.on( {
|
|
'click': ve.bind( this.onClick, this ),
|
|
'mousedown': ve.bind( this.onMouseDown, this )
|
|
} );
|
|
|
|
// Initialization
|
|
this.$label
|
|
.addClass( 've-ui-mwCategoryItemWidget-label' )
|
|
.text( this.value );
|
|
this.$categoryItem
|
|
.addClass( 've-ui-mwCategoryItemWidget-button' )
|
|
.append( this.$label, this.$indicator );
|
|
this.$element
|
|
.addClass( 've-ui-mwCategoryItemWidget' )
|
|
.append( this.$categoryItem );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWCategoryItemWidget, OO.ui.Widget );
|
|
|
|
OO.mixinClass( ve.ui.MWCategoryItemWidget, OO.ui.IndicatedElement );
|
|
|
|
/* Events */
|
|
|
|
/**
|
|
* @event savePopupState
|
|
*/
|
|
|
|
/**
|
|
* @event togglePopupMenu
|
|
* @param {ve.ui.MWCategoryItemWidget} item Item to load into popup
|
|
*/
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Handle mouse down events.
|
|
*
|
|
* @method
|
|
* @param {jQuery.Event} e Mouse down event
|
|
* @fires savePopupState on mousedown.
|
|
*/
|
|
ve.ui.MWCategoryItemWidget.prototype.onMouseDown = function () {
|
|
this.emit( 'savePopupState' );
|
|
};
|
|
|
|
/**
|
|
* Handle mouse click events.
|
|
*
|
|
* @method
|
|
* @param {jQuery.Event} e Mouse click event
|
|
* @fires togglePopupMenu on mousedown.
|
|
*/
|
|
ve.ui.MWCategoryItemWidget.prototype.onClick = function () {
|
|
this.emit( 'togglePopupMenu', this );
|
|
};
|