mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
75270e24d5
Fix things that 4aa86d0f8
broke:
* Update surface parameter to windowSet in all ve.ui.SurfaceDialog subclasses
* Do the same for ve.ui.SurfaceInspector subclasses
* Fix @extends documentation for SurfaceDialog
* Fix documentation for ve.ui.SurfaceInspector, copypasta from SurfaceDialog
Bonus:
* Add .getMetaList() getter to dm.Surface
Change-Id: I843e99e45e9b013cb9cb559f050384d39bbbddf2
88 lines
2.3 KiB
JavaScript
88 lines
2.3 KiB
JavaScript
/*global mw */
|
|
/*!
|
|
* VisualEditor user interface MWBetaWelcomeDialog class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Dialog for inserting MediaWiki media objects.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWDialog
|
|
*
|
|
* @constructor
|
|
* @param {ve.ui.SurfaceWindowSet} windowSet Window set this dialog is part of
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWBetaWelcomeDialog = function VeUiMWBetaWelcomeDialog( windowSet, config ) {
|
|
// Configuration initialization
|
|
config = ve.extendObject( { 'small': true, 'footless': false }, config );
|
|
|
|
// Parent constructor
|
|
ve.ui.MWDialog.call( this, windowSet, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.MWBetaWelcomeDialog, ve.ui.MWDialog );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWBetaWelcomeDialog.static.name = 'betaWelcome';
|
|
|
|
ve.ui.MWBetaWelcomeDialog.static.titleMessage = 'visualeditor-dialog-beta-welcome-title';
|
|
|
|
ve.ui.MWBetaWelcomeDialog.static.icon = 'help';
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWBetaWelcomeDialog.prototype.initialize = function () {
|
|
// Parent method
|
|
ve.ui.MWDialog.prototype.initialize.call( this );
|
|
|
|
// Properties
|
|
this.contentLayout = new ve.ui.PanelLayout( {
|
|
'$$': this.frame.$$,
|
|
'scrollable': true,
|
|
'padded': true
|
|
} );
|
|
this.continueButton = new ve.ui.PushButtonWidget( {
|
|
'$$': this.$$,
|
|
'label': ve.msg( 'visualeditor-dialog-beta-welcome-action-continue' ),
|
|
'flags': ['primary']
|
|
} );
|
|
|
|
// Events
|
|
this.continueButton.connect( this, { 'click': [ 'close', 'close' ] } );
|
|
|
|
// Initialization
|
|
this.contentLayout.$
|
|
.addClass( 've-ui-mwBetaWelcomeDialog-content' )
|
|
.text( ve.msg( 'visualeditor-dialog-beta-welcome-content', $( '#ca-edit' ).text() ) );
|
|
this.$body.append( this.contentLayout.$ );
|
|
this.$foot.append( this.continueButton.$ );
|
|
};
|
|
|
|
/**
|
|
* Get the title of the window.
|
|
*
|
|
* Send the MediaWiki username along with the message for {{GENDER:}} i18n support
|
|
* @returns {string} Window title
|
|
*/
|
|
ve.ui.MWBetaWelcomeDialog.prototype.getTitle = function () {
|
|
var userName = mw.config.get( 'wgUserName' );
|
|
if ( !userName ) {
|
|
userName = ''; // Make sure 'null' and 'undefined' are sent as empty string
|
|
}
|
|
return ve.msg( this.constructor.static.titleMessage, userName );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.dialogFactory.register( ve.ui.MWBetaWelcomeDialog );
|