mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
7a3267467a
Switch to using FieldLayout for laying out forms. New changes: 64650c6 Update OOjs UI to v0.1.0-pre (424b40373e) Change-Id: I757aecf3485673f54aa9e7f38e88c079dda4451d
100 lines
2.8 KiB
JavaScript
100 lines
2.8 KiB
JavaScript
/*!
|
|
* VisualEditor user interface MWTemplateParameterPage class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki transclusion dialog template page.
|
|
*
|
|
* @class
|
|
* @extends OO.ui.PageLayout
|
|
*
|
|
* @constructor
|
|
* @param {ve.dm.MWTemplateParameterModel} parameter Template parameter
|
|
* @param {string} name Unique symbolic name of page
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWTemplateParameterPage = function VeUiMWTemplateParameter( parameter, name, config ) {
|
|
var spec = parameter.getTemplate().getSpec();
|
|
|
|
// Parent constructor
|
|
OO.ui.PageLayout.call( this, name, config );
|
|
|
|
// Properties
|
|
this.parameter = parameter;
|
|
this.spec = spec;
|
|
this.valueInput = new OO.ui.TextInputWidget( {
|
|
'$': this.$,
|
|
'multiline': true,
|
|
'classes': [ 've-ui-mwTransclusionDialog-input' ]
|
|
} )
|
|
.setValue( this.parameter.getValue() )
|
|
.connect( this, { 'change': 'onTextInputChange' } );
|
|
this.valueField = new OO.ui.FieldLayout( this.valueInput, {
|
|
'$': this.$,
|
|
'align': 'top',
|
|
'label': this.spec.getParameterDescription( this.parameter.getName() ) || ''
|
|
} );
|
|
this.removeButton = new OO.ui.ButtonWidget( {
|
|
'$': this.$,
|
|
'frameless': true,
|
|
'icon': 'remove',
|
|
'title': ve.msg( 'visualeditor-dialog-transclusion-remove-param' ),
|
|
'flags': ['destructive'],
|
|
'classes': [ 've-ui-mwTransclusionDialog-removeButton' ]
|
|
} )
|
|
.connect( this, { 'click': 'onRemoveButtonClick' } );
|
|
this.valueFieldset = new OO.ui.FieldsetLayout( {
|
|
'$': this.$,
|
|
'label': this.spec.getParameterLabel( this.parameter.getName() ),
|
|
'icon': 'parameter',
|
|
'items': [ this.valueInput ]
|
|
} );
|
|
|
|
// TODO: Use spec.required
|
|
// TODO: Use spec.deprecation
|
|
// TODO: Use spec.default
|
|
// TODO: Use spec.type
|
|
|
|
// Initialization
|
|
this.$element.append( this.valueFieldset.$element, this.removeButton.$element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWTemplateParameterPage, OO.ui.PageLayout );
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWTemplateParameterPage.prototype.setOutlineItem = function ( outlineItem ) {
|
|
// Parent method
|
|
OO.ui.PageLayout.prototype.setOutlineItem.call( this, outlineItem );
|
|
|
|
if ( this.outlineItem ) {
|
|
this.outlineItem
|
|
.setIcon( 'parameter' )
|
|
.setMovable( false )
|
|
.setLevel( 1 )
|
|
.setLabel( this.spec.getParameterLabel( this.parameter.getName() ) );
|
|
|
|
if ( this.parameter.isRequired() ) {
|
|
this.outlineItem
|
|
.setIndicator( 'required' )
|
|
.setIndicatorTitle( ve.msg( 'visualeditor-dialog-transclusion-required-parameter' ) );
|
|
}
|
|
}
|
|
};
|
|
|
|
ve.ui.MWTemplateParameterPage.prototype.onTextInputChange = function () {
|
|
this.parameter.setValue( this.valueInput.getValue() );
|
|
};
|
|
|
|
ve.ui.MWTemplateParameterPage.prototype.onRemoveButtonClick = function () {
|
|
this.parameter.remove();
|
|
};
|