mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
65b232a35b
Instead of doing a blocking overlay, we're simply keeping the dialog open, which is necessary for the pending status of the action buttons anyway. Requires Ib2c8f336 in OOUI Bug: 65012 Change-Id: I65b5de4a1666a81b157a71f6fec490007689eb44
118 lines
3.3 KiB
JavaScript
118 lines
3.3 KiB
JavaScript
/*
|
|
* VisualEditor user interface MWWikitextSwitchConfirmDialog class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Dialog for letting the user choose how to switch to wikitext mode.
|
|
*
|
|
* @class
|
|
* @extends OO.ui.MessageDialog
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWWikitextSwitchConfirmDialog = function VeUiMWWikitextSwitchConfirmDialog( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWWikitextSwitchConfirmDialog.super.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWWikitextSwitchConfirmDialog, OO.ui.MessageDialog );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.name = 'wikitextswitchconfirm';
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.verbose = true;
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.size = 'small';
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.icon = 'help';
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-mweditmodesource-title' );
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.message =
|
|
OO.ui.deferMsg( 'visualeditor-mweditmodesource-warning' );
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.actions = [
|
|
{
|
|
action: 'cancel',
|
|
label: OO.ui.deferMsg( 'visualeditor-mweditmodesource-warning-cancel' ),
|
|
flags: 'safe'
|
|
},
|
|
{
|
|
action: 'switch',
|
|
label: OO.ui.deferMsg( 'visualeditor-mweditmodesource-warning-switch' ),
|
|
flags: 'primary'
|
|
},
|
|
{
|
|
action: 'discard',
|
|
label: OO.ui.deferMsg( 'visualeditor-mweditmodesource-warning-switch-discard' ),
|
|
flags: 'destructive'
|
|
}
|
|
];
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWWikitextSwitchConfirmDialog.prototype.getActionProcess = function ( action ) {
|
|
if ( action === 'switch' ) {
|
|
return new OO.ui.Process( function () {
|
|
this.getActions().setAbilities( { cancel: false, discard: false } );
|
|
this.getActions().get()[1].pushPending();
|
|
this.target.switchToWikitextEditor( false );
|
|
}, this );
|
|
} else if ( action === 'discard' ) {
|
|
return new OO.ui.Process( function () {
|
|
this.getActions().setAbilities( { cancel: false, switch: false } );
|
|
this.getActions().get()[2].pushPending();
|
|
this.target.switchToWikitextEditor( true );
|
|
}, this );
|
|
} else if ( action === 'cancel' ) {
|
|
return new OO.ui.Process( function () {
|
|
this.close( { action: action } );
|
|
this.target.resetDocumentOpacity();
|
|
}, this );
|
|
}
|
|
|
|
// Parent method
|
|
return ve.ui.MWWikitextSwitchConfirmDialog.super.prototype.getActionProcess.call( this, action );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
**/
|
|
ve.ui.MWWikitextSwitchConfirmDialog.prototype.setup = function ( data ) {
|
|
this.target = data.target;
|
|
|
|
// Parent method
|
|
return ve.ui.MWWikitextSwitchConfirmDialog.super.prototype.setup.call( this, data );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWWikitextSwitchConfirmDialog.prototype.getTeardownProcess = function ( data ) {
|
|
data = data || {};
|
|
return ve.ui.MWWikitextSwitchConfirmDialog.super.prototype.getTeardownProcess.call( this, data )
|
|
.first( function () {
|
|
// EVIL HACK - we shouldn't be reaching into the manager for these promises
|
|
if ( data.action === 'switch' || data.action === 'discard' ) {
|
|
this.manager.closing.resolve( data );
|
|
} else {
|
|
this.manager.closing.reject( data );
|
|
}
|
|
}, this );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWWikitextSwitchConfirmDialog );
|