mediawiki-extensions-Visual.../modules/ve-mw/ui/tools/ve.ui.MWSaveTool.js
Bartosz Dziewoński 4984c5ffbb Avoid using mw.ArticleTarget methods on global ve.init.target in tools
Bug: T278399
Change-Id: I49475db2aa014ef4807ff55755c1b773e6aa0e6a
2021-03-30 15:27:54 +00:00

67 lines
2.1 KiB
JavaScript

/**
* MediaWiki save tool
*
* @class
* @abstract
* @extends ve.ui.Tool
* @constructor
* @param {OO.ui.ToolGroup} toolGroup
* @param {Object} [config] Configuration options
*/
ve.ui.MWSaveTool = function VeUiMWSaveTool() {
// Parent constructor
ve.ui.MWSaveTool.super.apply( this, arguments );
// NOTE (phuedx, 2014-08-20): This class is used by the firsteditve guided
// tour to attach a guider to the "Save page" button.
this.$link.addClass( 've-ui-toolbar-saveButton' );
if ( this.toolbar instanceof ve.ui.TargetToolbar ) {
if ( ve.msg( 'accesskey-save' ) !== '-' && ve.msg( 'accesskey-save' ) !== '' ) {
// FlaggedRevs tries to use this - it's useless on VE pages because all that stuff gets hidden, but it will still conflict so get rid of it
this.toolbar.target.$saveAccessKeyElements = $( '[accesskey="' + ve.msg( 'accesskey-save' ) + '"]' ).removeAttr( 'accesskey' );
this.$link.attr( 'accesskey', ve.msg( 'accesskey-save' ) );
}
this.setTitle( this.toolbar.target.getSaveButtonLabel( true ) );
}
};
/* Inheritance */
OO.inheritClass( ve.ui.MWSaveTool, ve.ui.Tool );
/* Static properties */
ve.ui.MWSaveTool.static.name = 'showSave';
ve.ui.MWSaveTool.static.flags = [ 'primary', 'progressive' ];
ve.ui.MWSaveTool.static.displayBothIconAndLabel = true;
ve.ui.MWSaveTool.static.group = 'save';
ve.ui.MWSaveTool.static.commandName = 'showSave';
ve.ui.MWSaveTool.static.autoAddToCatchall = false;
ve.ui.MWSaveTool.static.autoAddToGroup = false;
/* Methods */
/**
* @inheritdoc
*/
ve.ui.MWSaveTool.prototype.onUpdateState = function () {
var wasSaveable = !this.isDisabled(),
isSaveable = this.toolbar instanceof ve.ui.TargetToolbar &&
this.toolbar.target.isSaveable();
// This could be a ve.ui.WindowTool that becomes active
// when the save dialog is open, but onUpdateState is
// called without arguments in ArticleTarget for speed.
if ( wasSaveable !== isSaveable ) {
this.setDisabled( !isSaveable );
mw.hook( 've.toolbarSaveButton.stateChanged' ).fire( !isSaveable );
}
};
/* Registration */
ve.ui.toolFactory.register( ve.ui.MWSaveTool );