mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
3f0f302577
Previously, the ve-mw/init/ directory contained two kinds of files: those that were used when initializing VE, and those that may be loaded even if VE is not going to be initialized at all. The latter kind must not use the `ve` global variable. After moving those files to ve-mw/preinit/ we can enforce this with .eslintrc.json in that directory. This would have prevented T228684. (Technically they merely must not use `ve.init`, and may use `ve`, but that's harder to enforce. We should instead move the few non-init methods out of `ve`: now, track, trackSubscribe, trackSubscribeAll). Also, group some files under ve-mw/init/: targets/ now (only) contains ve.init.mw.Target and its subclasses, apiresponsecache/ now contains ve.init.mw.ApiResponseCache and its subclasses. Bug: T228684 Change-Id: I945249a27f6a0fa10a432d5c5dc57bc7e0461fd8
142 lines
3.9 KiB
JavaScript
142 lines
3.9 KiB
JavaScript
/*!
|
|
* VisualEditor MediaWiki edit mode tool classes.
|
|
*
|
|
* @copyright 2011-2019 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
mw.libs.ve = mw.libs.ve || {};
|
|
|
|
/**
|
|
* MediaWiki edit mode tool.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @extends OO.ui.Tool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
mw.libs.ve.MWEditModeTool = function VeUiMWEditModeTool() {
|
|
// Parent constructor
|
|
mw.libs.ve.MWEditModeTool.super.apply( this, arguments );
|
|
|
|
this.modeAvailable = null;
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( mw.libs.ve.MWEditModeTool, OO.ui.Tool );
|
|
|
|
/* Static Properties */
|
|
|
|
mw.libs.ve.MWEditModeTool.static.editMode = null;
|
|
|
|
mw.libs.ve.MWEditModeTool.static.group = 'editMode';
|
|
|
|
mw.libs.ve.MWEditModeTool.static.autoAddToCatchall = false;
|
|
|
|
mw.libs.ve.MWEditModeTool.static.autoAddToGroup = false;
|
|
|
|
mw.libs.ve.MWEditModeTool.static.unavailableTooltip = null;
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Switch editors
|
|
*/
|
|
mw.libs.ve.MWEditModeTool.prototype.switch = function () {
|
|
this.toolbar.emit( 'switchEditor', this.constructor.static.editMode );
|
|
};
|
|
|
|
/**
|
|
* Get current edit mode
|
|
*
|
|
* @return {string} Current edit mode
|
|
*/
|
|
mw.libs.ve.MWEditModeTool.prototype.getMode = function () {
|
|
return 'source';
|
|
};
|
|
|
|
/**
|
|
* Check if edit mode is available
|
|
*
|
|
* @param {string} Edit mode
|
|
* @return {boolean} Edit mode is available
|
|
*/
|
|
mw.libs.ve.MWEditModeTool.prototype.isModeAvailable = function () {
|
|
return true;
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
mw.libs.ve.MWEditModeTool.prototype.onSelect = function () {
|
|
if ( this.getMode() !== this.constructor.static.editMode ) {
|
|
this.switch();
|
|
}
|
|
this.setActive( this.getMode() === this.constructor.static.editMode );
|
|
};
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
mw.libs.ve.MWEditModeTool.prototype.onUpdateState = function () {
|
|
var modeAvailable = this.isModeAvailable( this.constructor.static.editMode );
|
|
|
|
// Change title if state has changed
|
|
if ( this.modeAvailable !== modeAvailable ) {
|
|
this.$link.attr( 'title', modeAvailable ?
|
|
OO.ui.resolveMsg( this.constructor.static.title ) :
|
|
OO.ui.resolveMsg( this.constructor.static.unavailableTooltip )
|
|
);
|
|
this.setDisabled( !modeAvailable );
|
|
this.modeAvailable = modeAvailable;
|
|
}
|
|
this.setActive( this.getMode() === this.constructor.static.editMode );
|
|
};
|
|
|
|
/**
|
|
* MediaWiki edit mode source tool.
|
|
*
|
|
* @class
|
|
* @extends mw.libs.ve.MWEditModeTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
mw.libs.ve.MWEditModeSourceTool = function VeUiMWEditModeSourceTool() {
|
|
// Parent constructor
|
|
mw.libs.ve.MWEditModeSourceTool.super.apply( this, arguments );
|
|
};
|
|
OO.inheritClass( mw.libs.ve.MWEditModeSourceTool, mw.libs.ve.MWEditModeTool );
|
|
mw.libs.ve.MWEditModeSourceTool.static.editMode = 'source';
|
|
mw.libs.ve.MWEditModeSourceTool.static.name = 'editModeSource';
|
|
mw.libs.ve.MWEditModeSourceTool.static.icon = 'wikiText';
|
|
mw.libs.ve.MWEditModeSourceTool.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-mweditmodesource-tool-current' );
|
|
mw.libs.ve.MWEditModeSourceTool.static.unavailableTooltip =
|
|
OO.ui.deferMsg( 'visualeditor-mweditmodesource-tool-unavailable' );
|
|
|
|
/**
|
|
* MediaWiki edit mode visual tool.
|
|
*
|
|
* @class
|
|
* @extends mw.libs.ve.MWEditModeTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
mw.libs.ve.MWEditModeVisualTool = function VeUiMWEditModeVisualTool() {
|
|
// Parent constructor
|
|
mw.libs.ve.MWEditModeVisualTool.super.apply( this, arguments );
|
|
};
|
|
OO.inheritClass( mw.libs.ve.MWEditModeVisualTool, mw.libs.ve.MWEditModeTool );
|
|
mw.libs.ve.MWEditModeVisualTool.static.editMode = 'visual';
|
|
mw.libs.ve.MWEditModeVisualTool.static.name = 'editModeVisual';
|
|
mw.libs.ve.MWEditModeVisualTool.static.icon = 'eye';
|
|
mw.libs.ve.MWEditModeVisualTool.static.title =
|
|
OO.ui.deferMsg( 'visualeditor-mweditmodeve-tool-current' );
|
|
mw.libs.ve.MWEditModeVisualTool.static.unavailableTooltip =
|
|
OO.ui.deferMsg( 'visualeditor-mweditmodeve-tool-unavailable' );
|