mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
4c2d4c14ea
Also update use of OO.ui.PageLayout to work with changes in OOUI. See: I58a279dd949a867a4698a791103d5a6f2bd4b67f New changes: 8b545f4 Update OOjs UI to v0.1.0-pre (3a9a4c1da8) Change-Id: Ib5063db055a63082d08b2858bffb9f854d76c01b
80 lines
2.2 KiB
JavaScript
80 lines
2.2 KiB
JavaScript
/*!
|
|
* VisualEditor user interface MWTransclusionContentPage class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki transclusion dialog content page.
|
|
*
|
|
* @class
|
|
* @extends OO.ui.PageLayout
|
|
*
|
|
* @constructor
|
|
* @param {ve.dm.MWTransclusionContentModel} content Transclusion content
|
|
* @param {string} name Unique symbolic name of page
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWTransclusionContentPage = function VeUiMWTransclusionContent( content, name, config ) {
|
|
// Parent constructor
|
|
OO.ui.PageLayout.call( this, name, config );
|
|
|
|
// Properties
|
|
this.content = content;
|
|
this.textInput = new OO.ui.TextInputWidget( {
|
|
'$': this.$,
|
|
'multiline': true,
|
|
'classes': [ 've-ui-mwTransclusionDialog-input' ]
|
|
} )
|
|
.setValue( this.content.getValue() )
|
|
.connect( this, { 'change': 'onTextInputChange' } );
|
|
this.removeButton = new OO.ui.ButtonWidget( {
|
|
'$': this.$,
|
|
'frameless': true,
|
|
'icon': 'remove',
|
|
'title': ve.msg( 'visualeditor-dialog-transclusion-remove-content' ),
|
|
'flags': [ 'destructive' ],
|
|
'classes': [ 've-ui-mwTransclusionDialog-removeButton' ]
|
|
} )
|
|
.connect( this, { 'click': 'onRemoveButtonClick' } );
|
|
this.valueFieldset = new OO.ui.FieldsetLayout( {
|
|
'$': this.$,
|
|
'label': ve.msg( 'visualeditor-dialog-transclusion-content' ),
|
|
'icon': 'source',
|
|
'$content': this.textInput.$element
|
|
} );
|
|
|
|
// Initialization
|
|
this.$element.append( this.valueFieldset.$element, this.removeButton.$element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWTransclusionContentPage, OO.ui.PageLayout );
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWTransclusionContentPage.prototype.setOutlineItem = function ( outlineItem ) {
|
|
// Parent method
|
|
OO.ui.PageLayout.prototype.setOutlineItem.call( this, outlineItem );
|
|
|
|
if ( this.outlineItem ) {
|
|
this.outlineItem
|
|
.setIcon( 'source' )
|
|
.setMovable( true )
|
|
.setLabel( ve.msg( 'visualeditor-dialog-transclusion-content' ) );
|
|
}
|
|
};
|
|
|
|
ve.ui.MWTransclusionContentPage.prototype.onTextInputChange = function () {
|
|
this.content.setValue( this.textInput.getValue() );
|
|
};
|
|
|
|
ve.ui.MWTransclusionContentPage.prototype.onRemoveButtonClick = function () {
|
|
this.content.remove();
|
|
};
|