mediawiki-extensions-Visual.../modules/ve-mw/ui/dialogs/ve.ui.MWExtensionDialog.js
Zoë a6f826e989 Confirm abort if saving would make a change to the underlying document
Bug: T334513
Change-Id: Ia8935b5b1acb87a351fd02d07f72875e4d7a005c
2024-04-30 16:20:45 +01:00

137 lines
3.5 KiB
JavaScript

/*!
* VisualEditor UserInterface MWExtensionDialog class.
*
* @copyright See AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Dialog for editing generic MediaWiki extensions.
*
* @class
* @abstract
* @extends ve.ui.NodeDialog
* @mixes ve.ui.MWExtensionWindow
*
* @constructor
* @param {Object} [config] Configuration options
*/
ve.ui.MWExtensionDialog = function VeUiMWExtensionDialog() {
// Parent constructor
ve.ui.MWExtensionDialog.super.apply( this, arguments );
// Mixin constructors
ve.ui.MWExtensionWindow.call( this );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWExtensionDialog, ve.ui.NodeDialog );
OO.mixinClass( ve.ui.MWExtensionDialog, ve.ui.MWExtensionWindow );
/* Methods */
/**
* @inheritdoc
*/
ve.ui.MWExtensionDialog.prototype.initialize = function () {
// Parent method
ve.ui.MWExtensionDialog.super.prototype.initialize.call( this );
// Mixin method
ve.ui.MWExtensionWindow.prototype.initialize.call( this );
// Initialization
this.$element.addClass( 've-ui-mwExtensionDialog' );
};
/**
* @inheritdoc
*/
ve.ui.MWExtensionDialog.prototype.getSetupProcess = function ( data ) {
data = data || {};
// Parent process
var process = ve.ui.MWExtensionDialog.super.prototype.getSetupProcess.call( this, data );
// Mixin process
return ve.ui.MWExtensionWindow.prototype.getSetupProcess.call( this, data, process );
};
/**
* @inheritdoc
*/
ve.ui.MWExtensionDialog.prototype.getReadyProcess = function ( data ) {
data = data || {};
// Parent process
var process = ve.ui.MWExtensionDialog.super.prototype.getReadyProcess.call( this, data );
// Mixin process
return ve.ui.MWExtensionWindow.prototype.getReadyProcess.call( this, data, process );
};
/**
* @inheritdoc
*/
ve.ui.MWExtensionDialog.prototype.getTeardownProcess = function ( data ) {
data = data || {};
// Parent process
var process = ve.ui.MWExtensionDialog.super.prototype.getTeardownProcess.call( this, data );
// Mixin process
return ve.ui.MWExtensionWindow.prototype.getTeardownProcess.call( this, data, process );
};
/**
* @inheritdoc
*/
ve.ui.MWExtensionDialog.prototype.getActionProcess = function ( action ) {
if ( action === '' ) {
if ( this.hasMeaningfulEdits() ) {
return new OO.ui.Process( function () {
var dialog = this;
return dialog.confirmAbandon().then( function ( confirm ) {
if ( confirm ) {
/* We may need to rethink this if something in the
dependency chain adds to the current behaviour */
dialog.close();
}
} );
}, this );
}
}
// Parent process
var process = ve.ui.MWExtensionDialog.super.prototype.getActionProcess.call( this, action );
// Mixin process
return ve.ui.MWExtensionWindow.prototype.getActionProcess.call( this, action, process ).next( function () {
if ( action === 'done' ) {
this.close( { action: 'done' } );
}
}, this );
};
/**
* Show a confirmation prompt before closing the dialog.
* Displays a default prompt of `mw-widgets-abandonedit`.
*
* @param prompt Prompt (optional)
* @return {jQuery.Promise} Close promise
*/
ve.ui.MWExtensionDialog.prototype.confirmAbandon = function ( prompt ) {
if ( prompt === undefined ) {
prompt = ve.msg( 'visualeditor-dialog-extension-abandonedit' );
}
return OO.ui.confirm( prompt, {
actions: [
{
action: 'reject',
label: ve.msg( 'mw-widgets-abandonedit-keep' ),
flags: 'safe'
},
{
action: 'accept',
label: ve.msg( 'mw-widgets-abandonedit-discard' ),
flags: 'destructive'
}
]
} );
};