/*! * 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' } ] } ); };