2016-11-30 17:21:38 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MWSaveDialogAction class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2016 VisualEditor Team and others; see http://ve.mit-license.org
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TODO: Can perhaps extract a lot of the dialog lifecycle management code
|
|
|
|
// from ArticleTarget and put it here.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save action.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.Action
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {ve.ui.Surface} surface Surface to act on
|
|
|
|
*/
|
|
|
|
ve.ui.MWSaveDialogAction = function VeUiMWSaveDialogAction() {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.MWSaveDialogAction.super.apply( this, arguments );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWSaveDialogAction, ve.ui.Action );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
|
|
|
ve.ui.MWSaveDialogAction.static.name = 'mwSaveDialog';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of allowed methods for the action.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @property
|
|
|
|
*/
|
2016-12-13 21:55:01 +00:00
|
|
|
ve.ui.MWSaveDialogAction.static.methods = [ 'save', 'review', 'preview' ];
|
2016-11-30 17:21:38 +00:00
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the save dialog
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @return {boolean} Action was executed
|
|
|
|
*/
|
|
|
|
ve.ui.MWSaveDialogAction.prototype.save = function () {
|
|
|
|
ve.init.target.showSaveDialog();
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the save dialog, and set it to the review panel
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @return {boolean} Action was executed
|
|
|
|
*/
|
|
|
|
ve.ui.MWSaveDialogAction.prototype.review = function () {
|
2016-12-13 21:55:01 +00:00
|
|
|
ve.init.target.showSaveDialog( 'review' );
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open the save dialog, and set it to the preview panel
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @return {boolean} Action was executed
|
|
|
|
*/
|
|
|
|
ve.ui.MWSaveDialogAction.prototype.preview = function () {
|
|
|
|
ve.init.target.showSaveDialog( 'preview' );
|
2016-11-30 17:21:38 +00:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ui.actionFactory.register( ve.ui.MWSaveDialogAction );
|
|
|
|
|
|
|
|
ve.ui.commandRegistry.register(
|
|
|
|
new ve.ui.Command(
|
2016-12-13 21:55:01 +00:00
|
|
|
'showSave', 'mwSaveDialog', 'save',
|
2016-11-30 17:21:38 +00:00
|
|
|
{ supportedSelections: [ 'linear', 'table' ] }
|
|
|
|
)
|
|
|
|
);
|
|
|
|
ve.ui.commandRegistry.register(
|
|
|
|
new ve.ui.Command(
|
2016-12-13 21:55:01 +00:00
|
|
|
'showChanges', 'mwSaveDialog', 'review',
|
2016-11-30 17:21:38 +00:00
|
|
|
{ supportedSelections: [ 'linear', 'table' ] }
|
|
|
|
)
|
|
|
|
);
|
2016-12-13 21:55:01 +00:00
|
|
|
if ( mw.libs.ve.isWikitextAvailable ) {
|
|
|
|
// wikitextCommandRegistry has been requested already, but hasn't
|
|
|
|
// loaded yet.
|
|
|
|
mw.loader.using( 'ext.visualEditor.mwwikitext' ).then( function () {
|
|
|
|
ve.ui.wikitextCommandRegistry.register(
|
|
|
|
new ve.ui.Command(
|
|
|
|
'showPreview', 'mwSaveDialog', 'preview',
|
|
|
|
{ supportedSelections: [ 'linear', 'table' ] }
|
|
|
|
)
|
|
|
|
);
|
|
|
|
} );
|
|
|
|
}
|
2016-11-30 17:21:38 +00:00
|
|
|
( function () {
|
2016-12-13 21:55:01 +00:00
|
|
|
var accessKeyPrefix = $.fn.updateTooltipAccessKeys.getAccessKeyPrefix().replace( /-/g, '+' ),
|
|
|
|
saveShortcut = ve.msg( 'accesskey-save' ),
|
|
|
|
changesShortcut = ve.msg( 'accesskey-diff' ),
|
|
|
|
previewShortcut = ve.msg( 'accesskey-preview' );
|
2016-11-30 17:21:38 +00:00
|
|
|
|
|
|
|
if ( saveShortcut !== '-' && saveShortcut !== '' ) {
|
|
|
|
ve.ui.triggerRegistry.register(
|
|
|
|
'showSave', new ve.ui.Trigger( accessKeyPrefix + saveShortcut )
|
|
|
|
);
|
2016-12-13 21:55:01 +00:00
|
|
|
ve.ui.commandHelpRegistry.register( 'other', 'showSave', {
|
2016-11-30 17:21:38 +00:00
|
|
|
trigger: 'showSave',
|
|
|
|
label: function () { return ve.init.target.getSaveButtonLabel(); }
|
|
|
|
} );
|
2016-12-13 21:55:01 +00:00
|
|
|
ve.ui.MWCommandHelpDialog.static.commandGroups.other.demote.push( 'showSave' );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( changesShortcut !== '-' && changesShortcut !== '' ) {
|
|
|
|
ve.ui.triggerRegistry.register(
|
|
|
|
'showChanges', new ve.ui.Trigger( accessKeyPrefix + changesShortcut )
|
|
|
|
);
|
|
|
|
ve.ui.commandHelpRegistry.register( 'other', 'showChanges', {
|
|
|
|
trigger: 'showChanges',
|
|
|
|
label: OO.ui.deferMsg( 'visualeditor-savedialog-label-review' )
|
|
|
|
} );
|
|
|
|
ve.ui.MWCommandHelpDialog.static.commandGroups.other.demote.push( 'showChanges' );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( previewShortcut !== '-' && previewShortcut !== '' ) {
|
|
|
|
ve.ui.triggerRegistry.register(
|
|
|
|
'showPreview', new ve.ui.Trigger( accessKeyPrefix + previewShortcut )
|
|
|
|
);
|
|
|
|
ve.ui.commandHelpRegistry.register( 'other', 'showPreview', {
|
|
|
|
trigger: 'showPreview',
|
|
|
|
label: OO.ui.deferMsg( 'showpreview' )
|
|
|
|
} );
|
|
|
|
ve.ui.MWCommandHelpDialog.static.commandGroups.other.demote.push( 'showPreview' );
|
2016-11-30 17:21:38 +00:00
|
|
|
}
|
|
|
|
}() );
|