mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
dc6e7027a8
Bug: T205807 Change-Id: Icd7e4fddcee8687d9c3dbbda144aa0989d659ac8
122 lines
3.2 KiB
JavaScript
122 lines
3.2 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWExtensionDialog class.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Dialog for editing generic MediaWiki extensions.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @extends ve.ui.NodeDialog
|
|
* @mixins 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 );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWExtensionDialog.static.actions = ve.ui.MWExtensionDialog.super.static.actions.concat( [
|
|
{
|
|
label: OO.ui.deferMsg( 'visualeditor-dialog-action-cancel' ),
|
|
flags: [ 'safe', 'back' ],
|
|
modes: [ 'edit', 'insert' ]
|
|
},
|
|
{
|
|
action: 'done',
|
|
label: OO.ui.deferMsg( 'visualeditor-dialog-action-apply' ),
|
|
flags: [ 'progressive', 'primary' ],
|
|
modes: 'edit'
|
|
},
|
|
{
|
|
action: 'done',
|
|
label: OO.ui.deferMsg( 'visualeditor-dialog-action-insert' ),
|
|
flags: [ 'progressive', 'primary' ],
|
|
modes: 'insert'
|
|
}
|
|
] );
|
|
|
|
/* 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 ) {
|
|
var process;
|
|
data = data || {};
|
|
// Parent process
|
|
process = ve.ui.MWExtensionDialog.super.prototype.getSetupProcess.call( this, data );
|
|
// Mixin process
|
|
return ve.ui.MWExtensionWindow.prototype.getSetupProcess.call( this, data, process ).next( function () {
|
|
this.actions.setMode( this.fragment.getSelectedModels().length ? 'edit' : 'insert' );
|
|
}, this );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWExtensionDialog.prototype.getReadyProcess = function ( data ) {
|
|
var process;
|
|
data = data || {};
|
|
// Parent process
|
|
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 ) {
|
|
var process;
|
|
data = data || {};
|
|
// Parent process
|
|
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 ) {
|
|
// 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 );
|
|
};
|