mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
fbdff76263
New changes: 56de6f5 Localisation updates from https://translatewiki.net. f8bda64 Widgetise demo menu 6ac48d8 Localisation updates from https://translatewiki.net. 365e131 builderloader: Omit value for boolean "disabled" attribute per HTML5 706e4b3 Prevent double counting of DM nodes in getNodeAndOffset b141a7d Update OOjs UI to v0.1.0-pre (d2451ac748) c5b3921 Localisation updates from https://translatewiki.net. 1606983 Update reference to ConfirmationDialog to use MessageDialog Deletions: * Styles for ve.ui.MWBetaWelcomeDialog - not needed anymore because OO.ui.MessageDialog provides them * Styles for ve.ui.MWGalleryInspector - not needed anymore because ve.ui.MWExtensionInspector provides part of them and the rest are being replaced by programatic sizing Modifications: * ve.ui.MWLinkTargetInputWidget - Added support for validation and href getter * Split message between tool and dialog title for ve.ui.MWEditModeTool and ve.ui.MWWikitextSwitchConfirmDialog General changes: * Updated inheritance. * Added manager param to constructors of dialogs and inspectors. * Updated use of show/hide with toggle. * Added meaningful descriptions of dialog and inspector classes. * Configured dialog and inspector sizes statically. * Configured dialog action buttons statically. * Interfaced with OO.ui.ActionSet to control action buttons. * Moved applyChanges code into getActionProcess methods. * Always using .next in setup/ready process getters and .first in hold/teardown process getters. Change-Id: Ia74732e6e32c0808eee021f0a26225b9e6c3f971
97 lines
2.6 KiB
JavaScript
97 lines
2.6 KiB
JavaScript
/*
|
|
* VisualEditor user interface MWWikitextSwitchConfirmDialog class.
|
|
*
|
|
* @copyright 2011-2014 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 {OO.ui.WindowManager} manager Manager of window
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWWikitextSwitchConfirmDialog = function VeUiMWWikitextSwitchConfirmDialog( manager, config ) {
|
|
// Parent constructor
|
|
ve.ui.MWWikitextSwitchConfirmDialog.super.call( this, manager, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWWikitextSwitchConfirmDialog, OO.ui.MessageDialog );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.name = 'wikitextswitchconfirm';
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.verbose = true;
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.size = 'small';
|
|
|
|
ve.ui.MWWikitextSwitchConfirmDialog.static.icon = 'help';
|
|
|
|
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'
|
|
},
|
|
{
|
|
'action': 'switch',
|
|
'label': OO.ui.deferMsg( 'visualeditor-mweditmodesource-warning-switch' ),
|
|
'flags': 'primary'
|
|
},
|
|
{
|
|
'action': 'discard',
|
|
'label': OO.ui.deferMsg( 'visualeditor-mweditmodesource-warning-switch-discard' ),
|
|
'flags': 'destructive'
|
|
}
|
|
];
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWWikitextSwitchConfirmDialog.prototype.getActionProcess = function ( action ) {
|
|
if ( action === 'switch' || action === 'discard' ) {
|
|
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.getTeardownProcess = function ( data ) {
|
|
return ve.ui.MWWikitextSwitchConfirmDialog.super.prototype.getTeardownProcess.call( this, data )
|
|
.first( function () {
|
|
data = data || {};
|
|
|
|
// EVIL HACK - we shouldn't be reaching into the manager for these promises
|
|
if ( data.action === 'switch' || data.action === 'discard' ) {
|
|
this.manager.closing.resolve( data );
|
|
} else {
|
|
this.manager.closing.reject( data );
|
|
}
|
|
}, this );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWWikitextSwitchConfirmDialog );
|