mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
0413c5bc7e
Change-Id: I041f4c1d28a44797101da278c70e5e1759ebe6d2
75 lines
1.7 KiB
JavaScript
75 lines
1.7 KiB
JavaScript
/**
|
|
* Creates an ve.ui.HistoryButtonTool object.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.ui.ButtonTool}
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {String} name
|
|
*/
|
|
ve.ui.HistoryButtonTool = function( toolbar, name, title, data ) {
|
|
// Inheritance
|
|
ve.ui.ButtonTool.call( this, toolbar, name, title );
|
|
|
|
// Properties
|
|
this.data = data;
|
|
this.enabled = false;
|
|
|
|
var _this = this;
|
|
this.toolbar.surfaceView.model.on( 'history', function() {
|
|
_this.updateState();
|
|
});
|
|
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.HistoryButtonTool.prototype.onClick = function() {
|
|
this.toolbar.surfaceView.stopPolling();
|
|
switch ( this.name ) {
|
|
case 'undo':
|
|
var selection = this.toolbar.surfaceView.model.undo( 1 ) || this.toolbar.surfaceView.model.selection;
|
|
this.toolbar.surfaceView.showSelection( selection );
|
|
break;
|
|
case 'redo':
|
|
var selection = this.toolbar.surfaceView.model.redo( 1 ) || this.toolbar.surfaceView.model.selection;
|
|
this.toolbar.surfaceView.showSelection( selection );
|
|
break;
|
|
}
|
|
this.toolbar.surfaceView.clearPollData();
|
|
this.toolbar.surfaceView.startPolling();
|
|
};
|
|
|
|
ve.ui.HistoryButtonTool.prototype.updateState = function( annotations ) {
|
|
var surfaceModel = this.toolbar.surfaceView.model;
|
|
switch( this.name ) {
|
|
case 'undo':
|
|
this.enabled = surfaceModel.bigStack.length - surfaceModel.undoIndex > 0;
|
|
break;
|
|
case 'redo':
|
|
this.enabled = surfaceModel.undoIndex > 0;
|
|
break;
|
|
}
|
|
|
|
this.updateEnabled();
|
|
};
|
|
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.Tool.tools.undo = {
|
|
'constructor': ve.ui.HistoryButtonTool,
|
|
'name': 'undo',
|
|
'title': 'Undo (ctrl/cmd + Z)'
|
|
};
|
|
|
|
ve.ui.Tool.tools.redo = {
|
|
'constructor': ve.ui.HistoryButtonTool,
|
|
'name': 'redo',
|
|
'title': 'Redo (ctrl/cmd + shift + Z)'
|
|
};
|
|
|
|
/* Inhertiance */
|
|
|
|
ve.extendClass( ve.ui.HistoryButtonTool, ve.ui.ButtonTool );
|