mediawiki-extensions-Visual.../modules/ve/ui/tools/ve.ui.HistoryTool.js
Trevor Parscal d2dfb9ac4f Split oojs-ui from ve.ui
* Move and rename generic parts of ve.ui to OO.ui
* We now have a UI test suite because ve.Element (outside ve.ui)
  is now part of oojs-ui, so it needs a test suite.
* Added to the MW test run (just like we do for unicodejs).
* Updated csslint config (also added ve-mw and syntaxhighlight
  which were missing).

oojs-ui still depends on the TriggerRegistry in VE, this is addressed
in a follow-up commit.

Change-Id: Iec147155c1ddf20b73a4d15d87b8742207032312
2013-10-28 22:40:08 -07:00

127 lines
3.4 KiB
JavaScript

/*!
* VisualEditor UserInterface HistoryTool classes.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* UserInterface history tool.
*
* @class
* @extends OO.ui.Tool
* @constructor
* @param {ve.ui.SurfaceToolbar} toolbar
* @param {Object} [config] Configuration options
*/
ve.ui.HistoryTool = function VeUiHistoryTool( toolbar, config ) {
// Parent constructor
OO.ui.Tool.call( this, toolbar, config );
// Events
this.toolbar.getSurface().getModel().connect( this, { 'history': 'onUpdateState' } );
// Initialization
this.setDisabled( true );
};
/* Inheritance */
OO.inheritClass( ve.ui.HistoryTool, OO.ui.Tool );
/* Static Properties */
/**
* History action method to use.
*
* @abstract
* @static
* @property {string}
* @inheritable
*/
ve.ui.HistoryTool.static.method = '';
/**
* Surface model method to check state with.
*
* @abstract
* @static
* @property {string}
* @inheritable
*/
ve.ui.HistoryTool.static.check = '';
/* Methods */
/**
* Handle the tool being selected.
*
* @method
*/
ve.ui.HistoryTool.prototype.onSelect = function () {
this.toolbar.getSurface().execute( 'history', this.constructor.static.method );
this.setActive( false );
};
/**
* 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.HistoryTool.prototype.onUpdateState = function () {
this.setDisabled( !this.toolbar.getSurface().getModel()[this.constructor.static.check]() );
};
/**
* @inheritdoc
*/
ve.ui.HistoryTool.prototype.destroy = function () {
this.toolbar.getSurface().getModel().disconnect( this );
OO.ui.Tool.prototype.destroy.call( this );
};
/**
* UserInterface undo tool.
*
* @class
* @extends ve.ui.HistoryTool
* @constructor
* @param {ve.ui.SurfaceToolbar} toolbar
* @param {Object} [config] Configuration options
*/
ve.ui.UndoHistoryTool = function VeUiUndoHistoryTool( toolbar, config ) {
ve.ui.HistoryTool.call( this, toolbar, config );
};
OO.inheritClass( ve.ui.UndoHistoryTool, ve.ui.HistoryTool );
ve.ui.UndoHistoryTool.static.name = 'undo';
ve.ui.UndoHistoryTool.static.group = 'history';
ve.ui.UndoHistoryTool.static.icon = 'undo';
ve.ui.UndoHistoryTool.static.titleMessage = 'visualeditor-historybutton-undo-tooltip';
ve.ui.UndoHistoryTool.static.method = 'undo';
ve.ui.UndoHistoryTool.static.check = 'hasPastState';
ve.ui.toolFactory.register( ve.ui.UndoHistoryTool );
/**
* UserInterface redo tool.
*
* @class
* @extends ve.ui.HistoryTool
* @constructor
* @param {ve.ui.SurfaceToolbar} toolbar
* @param {Object} [config] Configuration options
*/
ve.ui.RedoHistoryTool = function VeUiRedoHistoryTool( toolbar, config ) {
ve.ui.HistoryTool.call( this, toolbar, config );
};
OO.inheritClass( ve.ui.RedoHistoryTool, ve.ui.HistoryTool );
ve.ui.RedoHistoryTool.static.name = 'redo';
ve.ui.RedoHistoryTool.static.group = 'history';
ve.ui.RedoHistoryTool.static.icon = 'redo';
ve.ui.RedoHistoryTool.static.titleMessage = 'visualeditor-historybutton-redo-tooltip';
ve.ui.RedoHistoryTool.static.method = 'redo';
ve.ui.RedoHistoryTool.static.check = 'hasFutureState';
ve.ui.toolFactory.register( ve.ui.RedoHistoryTool );