mediawiki-extensions-Visual.../modules/ve/ui/tools/buttons/ve.ui.UndoButtonTool.js
Trevor Parscal 7233ea8f1b EventEmitter API cleanup
The EventEmitter API we inherited from Node.js and then bastardized was
getting awkward and cumbersome. The number of uses of ve.bind was getting
out of control, and removing events meant caching the bound method in a
property. Many of the "features" of EventEmitter wasn't even being used,
some causing overhead, others just causing bloat. This change cleans up
how EventEmitter is used throughout the codebase.

The new event emitter API includes:
* emit - identical to the previous API, no longer throws an error if you
  emit error without a handler
* once - identical to the previous API, still introduces a wrapper* on -
  compatible with the previous API but has some new features
* off - identical to removeListener in the previous API
* connect - very similar to addListenerMethods but doesn't wrap callbacks
  in closures anymore
* disconnect - new, basically the opposite of addListenerMethods

Another change that is made in this commit is mixing in rather than
inheriting from EventEmitter.

Finally, there are changes throughout the codebase anywhere
connect/disconnect could be used.

Change-Id: Ic3085d39172a8a719ce7f036690f673e59848d3a
2013-05-02 15:05:59 -07:00

75 lines
1.8 KiB
JavaScript

/*!
* VisualEditor UserInterface UndoButtonTool class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* UserInterface undo button tool.
*
* @class
* @extends ve.ui.ButtonTool
* @constructor
* @param {ve.ui.Toolbar} toolbar
* @param {Object} [config] Config options
*/
ve.ui.UndoButtonTool = function VeUiUndoButtonTool( toolbar, config ) {
// Parent constructor
ve.ui.ButtonTool.call( this, toolbar, config );
// Events
this.toolbar.getSurface().getModel().connect( this, { 'history': 'onUpdateState' } );
// Initialization
this.setDisabled( true );
};
/* Inheritance */
ve.inheritClass( ve.ui.UndoButtonTool, ve.ui.ButtonTool );
/* Static Properties */
ve.ui.UndoButtonTool.static.name = 'undo';
ve.ui.UndoButtonTool.static.icon = 'undo';
ve.ui.UndoButtonTool.static.titleMessage = 'visualeditor-historybutton-undo-tooltip';
/* Methods */
/**
* Handle the button being clicked.
*
* @method
*/
ve.ui.UndoButtonTool.prototype.onClick = function () {
this.toolbar.getSurface().execute( 'history', 'undo' );
};
/**
* Handle the toolbar state being updated.
*
* @method
* @param {ve.dm.Node[]} nodes List of nodes covered by the current selection
* @param {ve.dm.AnnotationSet} full Annotations that cover all of the current selection
* @param {ve.dm.AnnotationSet} partial Annotations that cover some or all of the current selection
*/
ve.ui.UndoButtonTool.prototype.onUpdateState = function () {
this.setDisabled( !this.toolbar.getSurface().getModel().hasPastState() );
};
/* Registration */
ve.ui.toolFactory.register( 'undo', ve.ui.UndoButtonTool );
ve.commandRegistry.register(
'undo', 'history', 'undo'
);
ve.triggerRegistry.register(
'undo', { 'mac': new ve.Trigger( 'cmd+z' ), 'pc': new ve.Trigger( 'ctrl+z' ) }
);