mediawiki-extensions-Visual.../modules/oojs-ui/elements/OO.ui.IconedElement.js
Trevor Parscal d2dfb9ac4f Split oojs-ui from ve.ui
* Move and rename generic parts of ve.ui to OO.ui
* We now have a UI test suite because ve.Element (outside ve.ui)
  is now part of oojs-ui, so it needs a test suite.
* Added to the MW test run (just like we do for unicodejs).
* Updated csslint config (also added ve-mw and syntaxhighlight
  which were missing).

oojs-ui still depends on the TriggerRegistry in VE, this is addressed
in a follow-up commit.

Change-Id: Iec147155c1ddf20b73a4d15d87b8742207032312
2013-10-28 22:40:08 -07:00

70 lines
1.4 KiB
JavaScript

/*!
* ObjectOriented UserInterface IconedElement class.
*
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Element containing an icon.
*
* @class
* @abstract
*
* @constructor
* @param {jQuery} $icon Icon node, assigned to #$icon
* @param {Object} [config] Configuration options
* @cfg {Object|string} [icon=''] Symbolic icon name, or map of icon names keyed by language ID
*/
OO.ui.IconedElement = function OoUiIconedElement( $icon, config ) {
// Config intialization
config = config || {};
// Properties
this.$icon = $icon;
this.icon = null;
// Initialization
this.$icon.addClass( 'oo-ui-iconedElement-icon' );
this.setIcon( config.icon );
};
/* Methods */
/**
* Set the icon.
*
* @method
* @param {string} [value] Symbolic name of icon to use
* @chainable
*/
OO.ui.IconedElement.prototype.setIcon = function ( value ) {
var i, len, icon, lang,
langs = OO.ui.getUserLanguages();
if ( OO.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( 'oo-ui-icon-' + this.icon );
}
if ( typeof icon === 'string' ) {
icon = icon.trim();
if ( icon.length ) {
this.$icon.addClass( 'oo-ui-icon-' + icon );
this.icon = icon;
}
}
return this;
};