1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/*!
* 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
const 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
const 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
const 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() ) {
// eslint-disable-next-line arrow-body-style
return new OO.ui.Process( () => {
return this.confirmAbandon().then( ( confirm ) => {
if ( confirm ) {
/* We may need to rethink this if something in the
dependency chain adds to the current behaviour */
this.close();
}
} );
} );
}
}
// Parent process
const process = ve.ui.MWExtensionDialog.super.prototype.getActionProcess.call( this, action );
// Mixin process
return ve.ui.MWExtensionWindow.prototype.getActionProcess.call( this, action, process ).next( () => {
if ( action === 'done' ) {
this.close( { action: 'done' } );
}
} );
};
/**
* Show a confirmation prompt before closing the dialog.
* Displays a default prompt of `mw-widgets-abandonedit`.
*
* @param {jQuery|string|Function} [prompt] Prompt, defaults to visualeditor-dialog-extension-abandonedit
* @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'
}
]
} );
};
|