/*! * VisualEditor user interface MWTemplatePage class. * * @copyright 2011-2020 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} template Template model * @param {string} name Unique symbolic name of page * @param {Object} [config] Configuration options * @cfg {jQuery} [$overlay] Overlay to render dropdowns in * @cfg {boolean} [isReadOnly] Page is read-only */ ve.ui.MWTemplatePage = function VeUiMWTemplatePage( template, name, config ) { var link = template.getTitle(), veConfig = mw.config.get( 'wgVisualEditorConfig' ); // Configuration initialization config = ve.extendObject( { scrollable: false }, config ); // Parent constructor ve.ui.MWTemplatePage.super.call( this, name, config ); // Properties this.template = template; this.spec = template.getSpec(); this.$description = $( '
' ) .addClass( 've-ui-mwTemplatePage-description' ); this.infoFieldset = new OO.ui.FieldsetLayout( { label: this.spec.getLabel(), icon: 'puzzle' } ); // Initialization this.$description .text( this.spec.getDescription() ); // The transcluded page may be dynamically generated or unspecified in the DOM // for other reasons (T68724). In that case we can't tell the user what the // template is called, nor link to the template page. However, if we know for // certain that the template doesn't exist, be explicit about it (T162694). var linkData = ve.init.platform.linkCache.getCached( '_missing/' + link ), pageMissing = link && linkData && linkData.missing; if ( link ) { if ( this.spec.getDescription() ) { this.$description .append( $( '
' ), $( '' ) .addClass( 've-ui-mwTemplatePage-description-extra' ) .append( !veConfig.transclusionDialogNewSidebar ? mw.message( 'visualeditor-dialog-transclusion-more-template-description', this.spec.getLabel(), link ).parseDom() : mw.message( 'visualeditor-dialog-transclusion-see-template', link ).parseDom() ) ); } else if ( pageMissing ) { var msg, templateLabel = this.spec.getLabel(); if ( veConfig.transclusionDialogNewSidebar ) { msg = mw.message( templateLabel.match( /:/ ) ? 'visualeditor-dialog-transclusion-template-title-modifier' : 'visualeditor-dialog-transclusion-template-title-nonexistent' ); } else { msg = mw.message( 'visualeditor-dialog-transclusion-absent-template', templateLabel ); } this.$description .addClass( 've-ui-mwTemplatePage-description-missing' ) .append( msg.parseDom() ); } else if ( !veConfig.transclusionDialogNewSidebar || this.spec.isDocumented() ) { this.$description .addClass( 've-ui-mwTemplatePage-description-missing' ) .append( mw.message( 'visualeditor-dialog-transclusion-no-template-description', this.spec.getLabel(), link ).parseDom() ); } ve.targetLinksToNewWindow( this.$description[ 0 ] ); } else if ( veConfig.transclusionDialogNewSidebar ) { this.$description .addClass( 've-ui-mwTemplatePage-description-missing' ) .append( mw.message( 'visualeditor-dialog-transclusion-template-title-invalid' ).parseDom() ); } this.$description.find( 'a[href]' ) .on( 'click', function () { ve.track( 'activity.transclusion', { action: 'template-doc-link-click' } ); } ); this.infoFieldset.$element .append( this.$description ); if ( veConfig.transclusionDialogNewSidebar && !pageMissing ) { var noticeWidget; if ( !this.template.getSpec().getDocumentedParameterOrder().length ) { noticeWidget = new OO.ui.MessageWidget( { label: mw.message( 'visualeditor-dialog-transclusion-no-parameters-description' ).parseDom(), classes: [ 've-ui-mwTransclusionDialog-template-note' ] } ); } else if ( !this.template.getSpec().isDocumented() ) { noticeWidget = new OO.ui.MessageWidget( { label: mw.message( 'visualeditor-dialog-transclusion-no-template-data-description', link ).parseDom(), classes: [ 've-ui-mwTransclusionDialog-template-note' ], type: 'warning' } ); } if ( noticeWidget && noticeWidget.$element ) { ve.targetLinksToNewWindow( noticeWidget.$element[ 0 ] ); this.infoFieldset.$element.append( noticeWidget.$element ); } } this.$element .addClass( 've-ui-mwTemplatePage' ) .append( this.infoFieldset.$element ); if ( !config.isReadOnly ) { if ( !veConfig.transclusionDialogBackButton && !veConfig.transclusionDialogNewSidebar ) { var removeButton = new OO.ui.ButtonWidget( { framed: false, icon: 'trash', title: ve.msg( 'visualeditor-dialog-transclusion-remove-template' ), flags: [ 'destructive' ], classes: [ 've-ui-mwTransclusionDialog-removeButton' ] } ) .connect( this, { click: 'onRemoveButtonClick' } ); removeButton.$element.appendTo( this.$element ); } if ( !veConfig.transclusionDialogNewSidebar ) { // This button is only shown as a last resort when this …TemplatePage is neither followed by // a …ParameterPage (i.e. the template doesn't have parameters) nor a // …ParameterPlaceholderPage (i.e. the parameter search widget isn't shown). This state // should be unreachable, but isn't. Hiding this is done via CSS. var addButton = new OO.ui.ButtonWidget( { framed: false, icon: 'parameter', label: ve.msg( 'visualeditor-dialog-transclusion-add-param' ) } ) .connect( this, { click: 'addPlaceholderParameter' } ); $( '
' ) .addClass( 've-ui-mwTemplatePage-more' ) .append( addButton.$element ) .appendTo( this.$element ); } } }; /* Inheritance */ OO.inheritClass( ve.ui.MWTemplatePage, OO.ui.PageLayout ); /* Methods */ /** * @inheritdoc */ ve.ui.MWTemplatePage.prototype.setupOutlineItem = function () { this.outlineItem .setIcon( 'puzzle' ) .setMovable( true ) .setRemovable( true ) .setLabel( this.spec.getLabel() ); }; ve.ui.MWTemplatePage.prototype.onRemoveButtonClick = function () { this.template.remove(); }; ve.ui.MWTemplatePage.prototype.addPlaceholderParameter = function () { this.template.addParameter( new ve.dm.MWParameterModel( this.template ) ); };