2013-12-02 20:10:55 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor user interface MWTemplatePage class.
|
|
|
|
*
|
2014-01-05 12:05:05 +00:00
|
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
2013-12-02 20:10:55 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MediaWiki transclusion dialog template page.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends OO.ui.PageLayout
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {ve.dm.MWTemplateModel} parameter Template
|
|
|
|
* @param {string} name Unique symbolic name of page
|
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
*/
|
|
|
|
ve.ui.MWTemplatePage = function VeUiMWTemplatePage( template, name, config ) {
|
|
|
|
// Configuration initialization
|
2013-12-06 20:24:36 +00:00
|
|
|
config = ve.extendObject( { 'icon': 'template', 'movable': true }, config );
|
2013-12-02 20:10:55 +00:00
|
|
|
|
|
|
|
// Parent constructor
|
|
|
|
OO.ui.PageLayout.call( this, name, config );
|
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.template = template;
|
|
|
|
this.spec = this.template.getSpec();
|
|
|
|
this.label = this.spec.getLabel();
|
|
|
|
this.addParameterSearch = new ve.ui.MWParameterSearchWidget( this.template, { '$': this.$ } )
|
|
|
|
.connect( this, { 'select': 'onParameterSelect' } );
|
2013-12-06 20:24:36 +00:00
|
|
|
this.removeButton = new OO.ui.IconButtonWidget( {
|
2013-12-02 20:10:55 +00:00
|
|
|
'$': this.$,
|
2013-12-06 20:24:36 +00:00
|
|
|
'icon': 'remove',
|
|
|
|
'title': ve.msg( 'visualeditor-dialog-transclusion-remove-template' ),
|
2013-12-02 20:10:55 +00:00
|
|
|
'flags': ['destructive'],
|
|
|
|
'classes': [ 've-ui-mwTransclusionDialog-removeButton' ]
|
|
|
|
} )
|
|
|
|
.connect( this, { 'click': 'onRemoveButtonClick' } );
|
|
|
|
this.infoFieldset = new OO.ui.FieldsetLayout( {
|
|
|
|
'$': this.$,
|
|
|
|
'label': this.spec.getLabel(),
|
|
|
|
'icon': 'template',
|
|
|
|
'$content': this.$( '<div>' ).text( this.template.getSpec().getDescription() || '' )
|
|
|
|
} );
|
|
|
|
this.addParameterFieldset = new OO.ui.FieldsetLayout( {
|
|
|
|
'$': this.$,
|
|
|
|
'label': ve.msg( 'visualeditor-dialog-transclusion-add-param' ),
|
|
|
|
'icon': 'parameter',
|
|
|
|
'classes': [ 've-ui-mwTransclusionDialog-addParameterFieldset' ],
|
|
|
|
'$content': this.addParameterSearch.$element
|
|
|
|
} );
|
|
|
|
|
|
|
|
// Initialization
|
|
|
|
this.$element.append(
|
|
|
|
this.infoFieldset.$element,
|
|
|
|
this.addParameterFieldset.$element,
|
|
|
|
this.removeButton.$element
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWTemplatePage, OO.ui.PageLayout );
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
ve.ui.MWTemplatePage.prototype.onParameterSelect = function ( name ) {
|
|
|
|
var param;
|
|
|
|
|
|
|
|
if ( name ) {
|
|
|
|
param = new ve.dm.MWTemplateParameterModel( this.template, name );
|
|
|
|
this.template.addParameter( param );
|
|
|
|
this.addParameterSearch.query.setValue();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ve.ui.MWTemplatePage.prototype.onRemoveButtonClick = function () {
|
|
|
|
this.template.remove();
|
|
|
|
};
|