/*! * VisualEditor user interface MWTemplatePage 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.MWTemplateModel} parameter Template * @param {string} name Unique symbolic name of page * @param {Object} [config] Configuration options */ ve.ui.MWTemplatePage = function VeUiMWTemplatePage( template, name, config ) { // Parent constructor OO.ui.PageLayout.call( this, name, config ); // Properties this.template = template; this.spec = template.getSpec(); this.removeButton = new OO.ui.ButtonWidget( { '$': this.$, 'frameless': true, 'icon': 'remove', 'title': ve.msg( 'visualeditor-dialog-transclusion-remove-template' ), '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.$( '
' ).text( this.spec.getDescription() || '' ) } ); // Initialization this.$element .addClass( 've-ui-mwTemplatePage' ) .append( this.infoFieldset.$element, this.removeButton.$element ); }; /* Inheritance */ OO.inheritClass( ve.ui.MWTemplatePage, OO.ui.PageLayout ); /* Methods */ /** * @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 ) .setRemovable( true ) .setLabel( this.spec.getLabel() ); } }; ve.ui.MWTemplatePage.prototype.onRemoveButtonClick = function () { this.template.remove(); };