mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
4568274949
Objective: * Allow browsing, searching and adding documented parameters Changes: ve.ui.MWTransclusionDialog.js * Replace regular text input with ve.ui.ParameterSearchWidget * Fix uses of $(), this.frame.$$ is correct ve.ui.Dialog.css * Change rules for addParameterFieldset to make search widget auto-size vertically ve.ui.Widget.css * Add styles for ve.ui.MWParameterResultWidget ve.ui.MWParameterSearchWidget.js, ve.ui.MWParameterResultWidget.js * New classes * Provides a way to search and select parameter for a template * Displays parameter label, name, aliases and description *.php * Links to new files and messages Change-Id: Ie5dbe8c44ce5d64c4b49b09517fb66cd30dd7304
64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWParameterResultWidget class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Creates an ve.ui.MWParameterResultWidget object.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.OptionWidget
|
|
*
|
|
* @constructor
|
|
* @param {Mixed} data Item data
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.MWParameterResultWidget = function VeUiMWParameterResultWidget( data, config ) {
|
|
// Parent constructor
|
|
ve.ui.OptionWidget.call( this, data, config );
|
|
|
|
// Initialization
|
|
this.$.addClass( 've-ui-mwParameterResultWidget ve-ui-icon-parameter' );
|
|
this.setLabel( this.buildLabel() );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.MWParameterResultWidget, ve.ui.OptionWidget );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWParameterResultWidget.static.highlightable = false;
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.MWParameterResultWidget.prototype.buildLabel = function () {
|
|
var i, len,
|
|
$label = this.$$( '<div>' )
|
|
.addClass( 've-ui-mwParameterResultWidget-label' )
|
|
.text( this.data.label ),
|
|
$names = this.$$( '<div>' )
|
|
.addClass( 've-ui-mwParameterResultWidget-names' ),
|
|
$description = this.$$( '<div>' )
|
|
.addClass( 've-ui-mwParameterResultWidget-description' )
|
|
.text( this.data.description || '' );
|
|
|
|
if ( this.data.name ) {
|
|
$names.append(
|
|
this.$$( '<span>' )
|
|
.addClass( 've-ui-mwParameterResultWidget-name' )
|
|
.text( this.data.name )
|
|
);
|
|
}
|
|
for ( i = 0, len = this.data.aliases.length; i < len; i++ ) {
|
|
$names.append(
|
|
this.$$( '<span>' )
|
|
.addClass( 've-ui-mwParameterResultWidget-name' )
|
|
.text( this.data.aliases[i] )
|
|
);
|
|
}
|
|
|
|
return $label.add( $names ).add( $description );
|
|
}; |