mediawiki-extensions-Visual.../modules/ve-mw/ui/dialogs/ve.ui.MWWikitextSwitchConfirmDialog.js
Ed Sanders 7739b1c79b Fix switching without changes
* Remove 'discardChanges' from switchToWikitext. This was
  intended to discard changes even when the document was
  modified, but it is no longer used as we always keep
  changes if we can.
* Remove 'leaveVE' param, it was only used once and has
  been replaced with a direct call to switchToFallbackWikitextEditor.
* Don't reset 'section' if there are no changes.

Bug: T221981
Change-Id: Ia39345da44d203ba67ae331917c8d5ece7d42ef7
2019-04-30 14:52:58 +01:00

84 lines
2.2 KiB
JavaScript

/*!
* VisualEditor user interface MWWikitextSwitchConfirmDialog class.
*
* @copyright 2011-2019 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.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', 'back' ]
},
{
action: 'switch',
label: OO.ui.deferMsg( 'visualeditor-mweditmodesource-warning-switch' ),
flags: [ 'progressive', 'primary' ]
}
];
/* Methods */
/**
* @inheritdoc
*/
ve.ui.MWWikitextSwitchConfirmDialog.prototype.getActionProcess = function ( action ) {
if ( action === 'switch' ) {
return new OO.ui.Process( function () {
this.getActions().setAbilities( { cancel: false } );
this.getActions().get()[ 1 ].pushPending();
this.target.switchToWikitextEditor( true );
}, this );
} else if ( action === 'cancel' ) {
return new OO.ui.Process( function () {
this.close( { action: action } );
}, 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 );
};
/* Registration */
ve.ui.windowFactory.register( ve.ui.MWWikitextSwitchConfirmDialog );