mediawiki-extensions-Visual.../modules/ve/ui/elements/ve.ui.IconedElement.js
Trevor Parscal 8dfbc5baa5 Make tools generic and add fancy tool groups
Objectives:

* Got rid of mw prefixing in tools, inspectors and dialogs
* Simplify tool classes so they can be generically used as items in bars, lists and menus
* Add support for a catch-all toolbar group
* Simplify tool registration, leaning on tool classes' static name property
* Move default commands to command registry
* Move default triggers to trigger registry
* Get language tool working in standalone

Change-Id: Ic97a636f9a193374728629931b6702bee1b3416a
2013-09-03 11:27:39 -07:00

70 lines
1.4 KiB
JavaScript

/*!
* VisualEditor UserInterface IconedElement class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Iconed element.
*
* @class
* @abstract
*
* @constructor
* @param {jQuery} $icon Icon element
* @param {Object} [config] Config options
* @cfg {Object|string} [icon=''] Symbolic icon name, or map of icon names keyed by language ID
*/
ve.ui.IconedElement = function VeUiIconedElement( $icon, config ) {
// Config intialization
config = config || {};
// Properties
this.$icon = $icon;
this.icon = null;
// Initialization
this.$icon.addClass( 've-ui-iconedElement-icon' );
this.setIcon( config.icon );
};
/* Methods */
/**
* Set the icon.
*
* @method
* @param {string} [value] Symbolic name of icon to use
* @chainable
*/
ve.ui.IconedElement.prototype.setIcon = function ( value ) {
var i, len, icon, lang,
langs = ve.init.platform.getUserLanguages();
if ( ve.isPlainObject( value ) ) {
icon = value['default'];
for ( i = 0, len = langs.length; i < len; i++ ) {
lang = langs[i];
if ( value[lang] ) {
icon = value[lang];
break;
}
}
} else {
icon = value;
}
if ( this.icon ) {
this.$icon.removeClass( 've-ui-icon-' + this.icon );
}
if ( typeof icon === 'string' ) {
icon = icon.trim();
if ( icon.length ) {
this.$icon.addClass( 've-ui-icon-' + icon );
this.icon = icon;
}
}
return this;
};