mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
26a1d8986b
Change-Id: I2717300e6cc6102296a2b8d063d344fa5897c825
44 lines
973 B
JavaScript
44 lines
973 B
JavaScript
/*!
|
|
* VisualEditor UserInterface ActionFactory class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Action factory.
|
|
*
|
|
* @class
|
|
* @extends OO.Factory
|
|
* @constructor
|
|
*/
|
|
ve.ui.ActionFactory = function VeUiActionFactory() {
|
|
// Parent constructor
|
|
OO.Factory.call( this );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.ActionFactory, OO.Factory );
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Check if an action supports a method.
|
|
*
|
|
* @method
|
|
* @param {string} action Name of action
|
|
* @param {string} method Name of method
|
|
* @returns {boolean} The action supports the method
|
|
*/
|
|
ve.ui.ActionFactory.prototype.doesActionSupportMethod = function ( action, method ) {
|
|
if ( action in this.registry ) {
|
|
return this.registry[action].static.methods.indexOf( method ) !== -1;
|
|
}
|
|
throw new Error( 'Unknown action: ' + action );
|
|
};
|
|
|
|
/* Initialization */
|
|
|
|
ve.ui.actionFactory = new ve.ui.ActionFactory();
|