2015-06-29 21:11:39 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor user interface MWWelcomeDialog class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dialog for welcoming new users to VisualEditor.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends OO.ui.MessageDialog
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
*/
|
|
|
|
ve.ui.MWWelcomeDialog = function VeUiMWWelcomeDialog( config ) {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.MWWelcomeDialog.super.call( this, config );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWWelcomeDialog, OO.ui.MessageDialog );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
|
|
|
ve.ui.MWWelcomeDialog.static.name = 'welcome';
|
|
|
|
|
|
|
|
ve.ui.MWWelcomeDialog.static.size = 'medium';
|
|
|
|
|
|
|
|
ve.ui.MWWelcomeDialog.static.verbose = true;
|
|
|
|
|
|
|
|
ve.ui.MWWelcomeDialog.static.icon = 'help';
|
|
|
|
|
|
|
|
ve.ui.MWWelcomeDialog.static.actions = [
|
|
|
|
{
|
|
|
|
label: OO.ui.deferMsg( 'visualeditor-welcomedialog-action' ),
|
|
|
|
flags: [ 'progressive', 'primary' ]
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.ui.MWWelcomeDialog.prototype.getSetupProcess = function ( data ) {
|
|
|
|
// Provide default title and message
|
|
|
|
data = $.extend( {
|
|
|
|
title: ve.msg( 'visualeditor-welcomedialog-title', mw.user, mw.config.get( 'wgSiteName' ) ),
|
|
|
|
message: $( '<div>' ).addClass( 'visualeditor-welcomedialog-content' )
|
2015-09-15 23:25:48 +00:00
|
|
|
.append(
|
|
|
|
$( '<span>' )
|
|
|
|
.addClass( 'visualeditor-welcomedialog-content-text' )
|
2015-09-16 21:54:11 +00:00
|
|
|
.html(
|
2015-09-15 23:25:48 +00:00
|
|
|
ve.msg( 'visualeditor-welcomedialog-content' ) +
|
|
|
|
'<br />' +
|
|
|
|
ve.msg( 'visualeditor-welcomedialog-content-thanks' )
|
|
|
|
)
|
|
|
|
)
|
2015-06-29 21:11:39 +00:00
|
|
|
}, data );
|
|
|
|
|
|
|
|
return ve.ui.MWWelcomeDialog.super.prototype.getSetupProcess.call( this, data );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWWelcomeDialog );
|