mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
853e4872b4
* Move description to a popup behind a little info icon button * Make required indicator generic status indicator (required/deprecated) and move to left of the field * Move param name and actions to above the field * Show deprecated status and description Bonus: * Use auto-focus on CitationDialog (whoops!) * Make pages that aren't meant to scroll not scroll (whoops again!?) Depends on I59211b2 in OOUI Bug: 53612 Change-Id: I3b968ad14aa6c43b6484e2565a9367d2ebc72fc5
89 lines
2.4 KiB
JavaScript
89 lines
2.4 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 VeUiMWTransclusionContentPage( content, name, config ) {
|
|
// Configuration initialization
|
|
config = ve.extendObject( {
|
|
'scrollable': false
|
|
}, config );
|
|
|
|
// Parent constructor
|
|
OO.ui.PageLayout.call( this, name, config );
|
|
|
|
// Properties
|
|
this.content = content;
|
|
this.textInput = new OO.ui.TextInputWidget( {
|
|
'$': this.$,
|
|
'multiline': true,
|
|
'autosize': 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
|
|
.addClass( 've-ui-mwTransclusionContentPage' )
|
|
.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 )
|
|
.setRemovable( 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();
|
|
};
|