mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 06:46:26 +00:00
b1d9c83b5d
* For the most common case: - replace ve.extendClass with ve.inheritClass (chose slightly different names to detect usage of the old/new one, and I like 'inherit' better). - move it up to below the constructor, see doc block for why. * Cases where more than 2 arguments were passed to ve.extendClass are handled differently depending on the case. In case of a longer inheritance tree, the other arguments could be omitted (like in "ve.ce.FooBar, ve.FooBar, ve.Bar". ve.ce.FooBar only needs to inherit from ve.FooBar, because ve.ce.FooBar inherits from ve.Bar). In the case of where it previously had two mixins with ve.extendClass(), either one becomes inheritClass and one a mixin, both to mixinClass(). No visible changes should come from this commit as the instances still all have the same visible properties in the end. No more or less than before. * Misc.: - Be consistent in calling parent constructors in the same order as the inheritance. - Add missing @extends and @param documentation. - Replace invalid {Integer} type hint with {Number}. - Consistent doc comments order: @class, @abstract, @constructor, @extends, @params. - Fix indentation errors A fairly common mistake was a superfluous space before the identifier on the assignment line directly below the documentation comment. $ ack "^ [^*]" --js modules/ve - Typo "Inhertiance" -> "Inheritance". - Replacing the other confusing comment "Inheritance" (inside the constructor) with "Parent constructor". - Add missing @abstract for ve.ui.Tool. - Corrected ve.FormatDropdownTool to ve.ui.FormatDropdownTool.js - Add function names to all @constructor functions. Now that we have inheritance it is important and useful to have these functions not be anonymous. Example of debug shot: http://cl.ly/image/1j3c160w3D45 Makes the difference between < documentNode; > ve_dm_DocumentNode ... : ve_dm_BranchNode ... : ve_dm_Node ... : ve_dm_Node ... : Object ... without names (current situation): < documentNode; > Object ... : Object ... : Object ... : Object ... : Object ... though before this commit, it really looks like this (flattened since ve.extendClass really did a mixin): < documentNode; > Object ... ... ... Pattern in Sublime (case-sensitive) to find nameless constructor functions: "^ve\..*\.([A-Z])([^\.]+) = function \(" Change-Id: Iab763954fb8cf375900d7a9a92dec1c755d5407e
197 lines
5.2 KiB
JavaScript
197 lines
5.2 KiB
JavaScript
/**
|
|
* VisualEditor EventEmitter class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Event emitter.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @constructor
|
|
* @property events {Object}
|
|
*/
|
|
ve.EventEmitter = function ve_EventEmitter() {
|
|
this.events = {};
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Emits an event.
|
|
*
|
|
* @method
|
|
* @param type {String} Type of event
|
|
* @param args {Mixed} First in a list of variadic arguments passed to event handler (optional)
|
|
* @returns {Boolean} If event was handled by at least one listener
|
|
*/
|
|
ve.EventEmitter.prototype.emit = function ( type ) {
|
|
if ( type === 'error' && !( 'error' in this.events ) ) {
|
|
throw new Error( 'Missing error handler error.' );
|
|
}
|
|
if ( !( type in this.events ) ) {
|
|
return false;
|
|
}
|
|
var i,
|
|
listeners = this.events[type].slice(),
|
|
length = listeners.length,
|
|
args = Array.prototype.slice.call( arguments, 1 );
|
|
for ( i = 0; i < length; i++ ) {
|
|
listeners[i].apply( this, args );
|
|
}
|
|
return true;
|
|
};
|
|
|
|
/**
|
|
* Adds a listener to events of a specific type.
|
|
*
|
|
* @method
|
|
* @param type {String} Type of event to listen to
|
|
* @param listener {Function} Listener to call when event occurs
|
|
* @returns {ve.EventEmitter} This object
|
|
* @throws "Invalid listener error" if listener argument is not a function
|
|
*/
|
|
ve.EventEmitter.prototype.addListener = function ( type, listener ) {
|
|
if ( typeof listener !== 'function' ) {
|
|
throw new Error( 'Invalid listener error. Function expected.' );
|
|
}
|
|
this.emit( 'newListener', type, listener );
|
|
if ( type in this.events ) {
|
|
this.events[type].push( listener );
|
|
} else {
|
|
this.events[type] = [listener];
|
|
}
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Add multiple listeners at once.
|
|
*
|
|
* @method
|
|
* @param listeners {Object} List of event/callback pairs
|
|
* @returns {ve.EventEmitter} This object
|
|
*/
|
|
ve.EventEmitter.prototype.addListeners = function ( listeners ) {
|
|
for ( var event in listeners ) {
|
|
this.addListener( event, listeners[event] );
|
|
}
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Add a listener, mapped to a method on a target object.
|
|
*
|
|
* @method
|
|
* @param target {Object} Object to call methods on when events occur
|
|
* @param event {String} Name of event to trigger on
|
|
* @param method {String} Name of method to call
|
|
* @returns {ve.EventEmitter} This object
|
|
*/
|
|
ve.EventEmitter.prototype.addListenerMethod = function ( target, event, method ) {
|
|
return this.addListener( event, function () {
|
|
if ( typeof target[method] === 'function' ) {
|
|
target[method].apply( target, Array.prototype.slice.call( arguments, 0 ) );
|
|
} else {
|
|
throw new Error( 'Listener method error. Target has no such method: ' + method );
|
|
}
|
|
} );
|
|
};
|
|
|
|
/**
|
|
* Add multiple listeners, each mapped to a method on a target object.
|
|
*
|
|
* @method
|
|
* @param target {Object} Object to call methods on when events occur
|
|
* @param methods {Object} List of event/method name pairs
|
|
* @returns {ve.EventEmitter} This object
|
|
*/
|
|
ve.EventEmitter.prototype.addListenerMethods = function ( target, methods ) {
|
|
for ( var event in methods ) {
|
|
this.addListenerMethod( target, event, methods[event] );
|
|
}
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Alias for addListener
|
|
*
|
|
* @method
|
|
*/
|
|
ve.EventEmitter.prototype.on = ve.EventEmitter.prototype.addListener;
|
|
|
|
/**
|
|
* Adds a one-time listener to a specific event.
|
|
*
|
|
* @method
|
|
* @param type {String} Type of event to listen to
|
|
* @param listener {Function} Listener to call when event occurs
|
|
* @returns {ve.EventEmitter} This object
|
|
*/
|
|
ve.EventEmitter.prototype.once = function ( type, listener ) {
|
|
var eventEmitter = this;
|
|
return this.addListener( type, function listenerWrapper() {
|
|
eventEmitter.removeListener( type, listenerWrapper );
|
|
listener.apply( eventEmitter, Array.prototype.slice.call( arguments, 0 ) );
|
|
} );
|
|
};
|
|
|
|
/**
|
|
* Removes a specific listener from a specific event.
|
|
*
|
|
* @method
|
|
* @param type {String} Type of event to remove listener from
|
|
* @param listener {Function} Listener to remove
|
|
* @returns {ve.EventEmitter} This object
|
|
* @throws "Invalid listener error" if listener argument is not a function
|
|
*/
|
|
ve.EventEmitter.prototype.removeListener = function ( type, listener ) {
|
|
if ( typeof listener !== 'function' ) {
|
|
throw new Error( 'Invalid listener error. Function expected.' );
|
|
}
|
|
if ( !( type in this.events ) || !this.events[type].length ) {
|
|
return this;
|
|
}
|
|
var i,
|
|
handlers = this.events[type];
|
|
if ( handlers.length === 1 && handlers[0] === listener ) {
|
|
delete this.events[type];
|
|
} else {
|
|
i = ve.indexOf( listener, handlers );
|
|
if ( i < 0 ) {
|
|
return this;
|
|
}
|
|
handlers.splice( i, 1 );
|
|
if ( handlers.length === 0 ) {
|
|
delete this.events[type];
|
|
}
|
|
}
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Removes all listeners from a specific event.
|
|
*
|
|
* @method
|
|
* @param type {String} Type of event to remove listeners from
|
|
* @returns {ve.EventEmitter} This object
|
|
*/
|
|
ve.EventEmitter.prototype.removeAllListeners = function ( type ) {
|
|
if ( type in this.events ) {
|
|
delete this.events[type];
|
|
}
|
|
return this;
|
|
};
|
|
|
|
/**
|
|
* Gets a list of listeners attached to a specific event.
|
|
*
|
|
* @method
|
|
* @param type {String} Type of event to get listeners for
|
|
* @returns {Array} List of listeners to an event
|
|
*/
|
|
ve.EventEmitter.prototype.listeners = function ( type ) {
|
|
return type in this.events ? this.events[type] : [];
|
|
};
|