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
|
|
|
|
*/
|
|
|
|
|
2014-03-06 23:40:43 +00:00
|
|
|
/*global mw */
|
|
|
|
|
2013-12-02 20:10:55 +00:00
|
|
|
/**
|
|
|
|
* 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 ) {
|
2014-03-06 23:40:43 +00:00
|
|
|
var title;
|
|
|
|
|
2014-04-25 23:50:21 +00:00
|
|
|
// Configuration initialization
|
|
|
|
config = ve.extendObject( {
|
|
|
|
'scrollable': false
|
|
|
|
}, config );
|
|
|
|
|
2013-12-02 20:10:55 +00:00
|
|
|
// Parent constructor
|
|
|
|
OO.ui.PageLayout.call( this, name, config );
|
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.template = template;
|
2014-02-27 23:58:37 +00:00
|
|
|
this.spec = template.getSpec();
|
2014-03-04 22:56:14 +00:00
|
|
|
this.$more = this.$( '<div>' );
|
2014-03-06 23:40:43 +00:00
|
|
|
this.$description = this.$( '<div>' );
|
2014-01-17 14:24:12 +00:00
|
|
|
this.removeButton = new OO.ui.ButtonWidget( {
|
2013-12-02 20:10:55 +00:00
|
|
|
'$': this.$,
|
2014-01-17 14:24:12 +00:00
|
|
|
'frameless': true,
|
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(),
|
2014-03-06 23:40:43 +00:00
|
|
|
'icon': 'template'
|
2013-12-02 20:10:55 +00:00
|
|
|
} );
|
2014-03-04 22:56:14 +00:00
|
|
|
this.addButton = new OO.ui.ButtonWidget( {
|
|
|
|
'$': this.$,
|
|
|
|
'frameless': true,
|
|
|
|
'icon': 'parameter',
|
|
|
|
'label': ve.msg( 'visualeditor-dialog-transclusion-add-param' ),
|
|
|
|
'tabIndex': -1
|
|
|
|
} )
|
|
|
|
.connect( this, { 'click': 'onAddButtonClick' } );
|
2013-12-02 20:10:55 +00:00
|
|
|
|
|
|
|
// Initialization
|
2014-03-06 23:40:43 +00:00
|
|
|
this.$description.addClass( 've-ui-mwTemplatePage-description' );
|
|
|
|
if ( this.spec.getDescription() ) {
|
|
|
|
this.$description.text( this.spec.getDescription() );
|
|
|
|
} else {
|
|
|
|
title = new mw.Title( this.template.getTitle() );
|
|
|
|
this.$description
|
|
|
|
.addClass( 've-ui-mwTemplatePage-description-missing' )
|
|
|
|
.append( ve.msg(
|
|
|
|
'visualeditor-dialog-transclusion-no-template-description',
|
2014-06-26 19:37:06 +00:00
|
|
|
title.getMainText(),
|
2014-04-18 20:50:08 +00:00
|
|
|
ve.getHtmlAttributes( { 'target': '_blank', 'href': title.getUrl() } ),
|
|
|
|
mw.user
|
2014-03-06 23:40:43 +00:00
|
|
|
) );
|
|
|
|
}
|
|
|
|
this.infoFieldset.$element.append( this.$description );
|
2014-03-04 22:56:14 +00:00
|
|
|
this.$more
|
|
|
|
.addClass( 've-ui-mwTemplatePage-more' )
|
|
|
|
.append( this.addButton.$element );
|
2014-02-27 23:58:37 +00:00
|
|
|
this.$element
|
|
|
|
.addClass( 've-ui-mwTemplatePage' )
|
2014-03-04 22:56:14 +00:00
|
|
|
.append( this.infoFieldset.$element, this.removeButton.$element, this.$more );
|
2013-12-02 20:10:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWTemplatePage, OO.ui.PageLayout );
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
2014-02-15 01:37:32 +00:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.ui.MWTemplatePage.prototype.setOutlineItem = function ( outlineItem ) {
|
|
|
|
// Parent method
|
|
|
|
OO.ui.PageLayout.prototype.setOutlineItem.call( this, outlineItem );
|
|
|
|
|
|
|
|
if ( this.outlineItem ) {
|
|
|
|
this.outlineItem
|
|
|
|
.setIcon( 'template' )
|
|
|
|
.setMovable( true )
|
2014-03-01 00:39:02 +00:00
|
|
|
.setRemovable( true )
|
2014-02-15 01:37:32 +00:00
|
|
|
.setLabel( this.spec.getLabel() );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-12-02 20:10:55 +00:00
|
|
|
ve.ui.MWTemplatePage.prototype.onRemoveButtonClick = function () {
|
|
|
|
this.template.remove();
|
|
|
|
};
|
2014-03-04 22:56:14 +00:00
|
|
|
|
|
|
|
ve.ui.MWTemplatePage.prototype.onAddButtonClick = function () {
|
|
|
|
this.template.addParameter( new ve.dm.MWParameterModel( this.template ) );
|
|
|
|
};
|