mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
4192cbc4d5
Changes: * Cleanup the window API to use more consistent and intuitive methods - we now use initialize/setup/teardown instead of initialize/onSetup/onOpen/onClose as methods which are overridden, and use open/close methods to control the window * Change events around to have opening/open and closing/close events which act as before/after points during the opening/closing process * Make WindowSet and Context respond to windows being opened, rather than opening them directly * Fix a LinkInspector creation mode bug where the initial text doesn't get reset * Move inspector, a VisualEditor concept, back to VE * Cleanup naming of SurfaceDialog, SurfaceToolbar, etc. to use shorter names, they were given Surface* names when the generic ones were also in VE, but now the generic ones are in OO, so they can return to their original names Change-Id: I82c4fed8bcb3fb5630938c8bc4dd9b2d5f1a8c1d
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.WindowSet} 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 */
|
|
|
|
OO.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 */
|
|
|
|
/**
|
|
* 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 );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWBetaWelcomeDialog.prototype.initialize = function () {
|
|
// Parent method
|
|
ve.ui.MWDialog.prototype.initialize.call( this );
|
|
|
|
// Properties
|
|
this.contentLayout = new OO.ui.PanelLayout( {
|
|
'$': this.$,
|
|
'scrollable': true,
|
|
'padded': true
|
|
} );
|
|
this.continueButton = new OO.ui.PushButtonWidget( {
|
|
'$': this.$,
|
|
'label': ve.msg( 'visualeditor-dialog-beta-welcome-action-continue' ),
|
|
'flags': ['primary']
|
|
} );
|
|
|
|
// Events
|
|
this.continueButton.connect( this, { 'click': [ 'close', { 'action': 'close' } ] } );
|
|
|
|
// Initialization
|
|
this.contentLayout.$element
|
|
.addClass( 've-ui-mwBetaWelcomeDialog-content' )
|
|
.text( ve.msg( 'visualeditor-dialog-beta-welcome-content', $( '#ca-edit' ).text() ) );
|
|
this.$body.append( this.contentLayout.$element );
|
|
this.$foot.append( this.continueButton.$element );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.dialogFactory.register( ve.ui.MWBetaWelcomeDialog );
|