mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
375edf0182
Change-Id: I17482ec84c95e88881ab4bee9b9cadb27b2dc472
77 lines
1.9 KiB
JavaScript
77 lines
1.9 KiB
JavaScript
/*!
|
|
* VisualEditor user interface MWTemplatesUsedPage class.
|
|
*
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki meta dialog TemplatesUsed page.
|
|
*
|
|
* @class
|
|
* @extends OO.ui.PageLayout
|
|
*
|
|
* @constructor
|
|
* @param {string} name Unique symbolic name of page
|
|
* @param {Object} [config] Configuration options
|
|
* @cfg {jQuery} [$overlay] Overlay to render dropdowns in
|
|
*/
|
|
ve.ui.MWTemplatesUsedPage = function VeUiMWTemplatesUsedPage() {
|
|
// Parent constructor
|
|
ve.ui.MWTemplatesUsedPage.super.apply( this, arguments );
|
|
|
|
// Properties
|
|
this.templatesUsedFieldset = new OO.ui.FieldsetLayout( {
|
|
label: ve.msg( 'visualeditor-templatesused-tool' ),
|
|
icon: 'puzzle'
|
|
} );
|
|
|
|
if ( ve.init.target.$templatesUsed && ve.init.target.$templatesUsed.find( 'li' ).length ) {
|
|
this.templatesUsedFieldset.$element.append(
|
|
ve.init.target.$templatesUsed.clone()
|
|
);
|
|
ve.targetLinksToNewWindow( this.templatesUsedFieldset.$element[ 0 ] );
|
|
} else {
|
|
this.templatesUsedFieldset.$element.append(
|
|
$( '<em>' ).text( ve.msg( 'visualeditor-dialog-meta-templatesused-noresults' ) )
|
|
);
|
|
}
|
|
|
|
// Initialization
|
|
this.$element.append( this.templatesUsedFieldset.$element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWTemplatesUsedPage, OO.ui.PageLayout );
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWTemplatesUsedPage.prototype.setOutlineItem = function () {
|
|
// Parent method
|
|
ve.ui.MWTemplatesUsedPage.super.prototype.setOutlineItem.apply( this, arguments );
|
|
|
|
if ( this.outlineItem ) {
|
|
this.outlineItem
|
|
.setIcon( 'puzzle' )
|
|
.setLabel( ve.msg( 'visualeditor-templatesused-tool' ) );
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWTemplatesUsedPage.prototype.focus = function () {
|
|
// No controls, just focus the whole page instead of the first link
|
|
this.$element[ 0 ].focus();
|
|
};
|
|
|
|
ve.ui.MWTemplatesUsedPage.prototype.getFieldsets = function () {
|
|
return [
|
|
this.templatesUsedFieldset
|
|
];
|
|
};
|