mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
735ed96f5f
Moved implementation of all the tools into a reusable action system. To execute an action just call surface.execute( actionName, method, param1, param2, ... ); This helps keep tools simple, and opens the door to key commands reusing the same code. Change-Id: Ie786fa3d38d1ea17d39b5dfb8eeeb5f2256267ce
58 lines
999 B
JavaScript
58 lines
999 B
JavaScript
/**
|
|
* VisualEditor HistoryAction class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* History action.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.Action}
|
|
* @param {ve.Surface} surface Surface to act on
|
|
*/
|
|
ve.HistoryAction = function VeHistoryAction( surface ) {
|
|
// Parent constructor
|
|
ve.Action.call( this, surface );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.HistoryAction, ve.Action );
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* List of allowed methods for this action.
|
|
*
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.HistoryAction.static.methods = ['undo', 'redo'];
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Steps backwards in time.
|
|
*
|
|
* @method
|
|
*/
|
|
ve.HistoryAction.prototype.undo = function () {
|
|
this.surface.getModel().undo();
|
|
};
|
|
|
|
/**
|
|
* Steps forwards in time.
|
|
*
|
|
* @method
|
|
*/
|
|
ve.HistoryAction.prototype.redo = function () {
|
|
this.surface.getModel().redo();
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.actionFactory.register( 'history', ve.HistoryAction );
|