mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
4984c5ffbb
Bug: T278399 Change-Id: I49475db2aa014ef4807ff55755c1b773e6aa0e6a
67 lines
2.1 KiB
JavaScript
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 );
|