mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-14 10:04:52 +00:00
3a4ff4eb5f
Bug: T138731 Change-Id: I96d0a9e5efbe0b462fc4e13a4fa6008987d749cf
95 lines
2.4 KiB
JavaScript
95 lines
2.4 KiB
JavaScript
/*!
|
|
* VisualEditor user interface MWEditingTabDialog class.
|
|
*
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
mw.libs.ve = mw.libs.ve || {};
|
|
/**
|
|
* Dialog for allowing new users to change editing tab preferences.
|
|
*
|
|
* @class
|
|
* @extends OO.ui.MessageDialog
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
mw.libs.ve.EditingTabDialog = function MWLibsVEMWEditingTabDialog( config ) {
|
|
// Parent constructor
|
|
mw.libs.ve.EditingTabDialog.super.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( mw.libs.ve.EditingTabDialog, OO.ui.MessageDialog );
|
|
|
|
/* Static Properties */
|
|
|
|
mw.libs.ve.EditingTabDialog.static.name = 'editingtab';
|
|
|
|
mw.libs.ve.EditingTabDialog.static.size = 'medium';
|
|
|
|
mw.libs.ve.EditingTabDialog.static.verbose = true;
|
|
|
|
mw.libs.ve.EditingTabDialog.static.title = mw.msg( 'visualeditor-editingtabdialog-title' );
|
|
|
|
mw.libs.ve.EditingTabDialog.static.message = mw.msg( 'visualeditor-editingtabdialog-body' );
|
|
|
|
mw.libs.ve.EditingTabDialog.static.actions = [
|
|
|
|
{
|
|
action: 'prefer-wt',
|
|
label: mw.msg( 'visualeditor-preference-tabs-prefer-wt' )
|
|
},
|
|
{
|
|
action: 'prefer-ve',
|
|
label: mw.msg( 'visualeditor-preference-tabs-prefer-ve' )
|
|
},
|
|
{
|
|
action: 'multi-tab',
|
|
label: mw.msg( 'visualeditor-preference-tabs-multi-tab' )
|
|
},
|
|
{
|
|
label: mw.msg( 'visualeditor-editingtabdialog-ok' ),
|
|
flags: [ 'progressive', 'primary' ]
|
|
}
|
|
];
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
mw.libs.ve.EditingTabDialog.prototype.getSetupProcess = function ( action ) {
|
|
return mw.libs.ve.EditingTabDialog.super.prototype.getSetupProcess.call( this, action )
|
|
.next( function () {
|
|
new mw.Api().saveOption( 'visualeditor-hidetabdialog', 1 );
|
|
mw.user.options.set( 'visualeditor-hidetabdialog', 1 );
|
|
} );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
mw.libs.ve.EditingTabDialog.prototype.getActionProcess = function ( action ) {
|
|
var dialog = this,
|
|
act = action;
|
|
if ( act ) {
|
|
return new OO.ui.Process( function () {
|
|
var action = this.getActions().get( { actions: act } )[ 0 ];
|
|
action.pushPending();
|
|
dialog.pushPending();
|
|
|
|
new mw.Api().saveOption( 'visualeditor-tabs', act ).done( function () {
|
|
action.popPending();
|
|
mw.user.options.set( 'visualeditor-tabs', act );
|
|
dialog.close( { action: act } );
|
|
} );
|
|
}, this );
|
|
} else {
|
|
// Parent method
|
|
return mw.libs.ve.EditingTabDialog.super.prototype.getActionProcess.call( this, action );
|
|
}
|
|
};
|