mediawiki-extensions-Visual.../modules/ve/ui/ve.ui.CommandRegistry.js
Trevor Parscal 6774cd74f3 Detangle triggers from OOUI
Changes:

* Pass toolGroup into tools instead of toolbar
* Split tool labels into title and accel
* Make toolbars provide accelerator labels
* Remove getLabelText method since it's not being used and is likely not useful
* Make tools update their own labels
* Only show accelerator information for triggers that are active in the surface
* Make surface toolbars listen to commands being added and update tools accordingly
* Introduce command object to encapsulate command info

Change-Id: Ieac4bfa63b63ac0a9dee154af3007a33b4d447ff
2013-10-29 05:50:30 +00:00

117 lines
3.4 KiB
JavaScript

/*!
* VisualEditor CommandRegistry class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Command registry.
*
* @class
* @extends OO.Registry
* @constructor
*/
ve.ui.CommandRegistry = function VeCommandRegistry() {
// Parent constructor
OO.Registry.call( this );
};
/* Inheritance */
OO.inheritClass( ve.ui.CommandRegistry, OO.Registry );
/* Methods */
/**
* Register a constructor with the factory.
*
* @method
* @param {string|string[]} name Symbolic name or list of symbolic names
* @param {ve.ui.Command} command Command object
* @throws {Error} If command is not an instance of ve.ui.Command
*/
ve.ui.CommandRegistry.prototype.register = function ( name, command ) {
// Validate arguments
if ( !( command instanceof ve.ui.Command ) ) {
throw new Error(
'command must be an instance of ve.ui.Command, cannot be a ' + typeof command
);
}
OO.Registry.prototype.register.call( this, name, command );
};
/* Initialization */
ve.ui.commandRegistry = new ve.ui.CommandRegistry();
/* Registrations */
ve.ui.commandRegistry.register(
'bold', new ve.ui.Command( 'annotation', 'toggle', 'textStyle/bold' )
);
ve.ui.commandRegistry.register(
'italic', new ve.ui.Command( 'annotation', 'toggle', 'textStyle/italic' )
);
ve.ui.commandRegistry.register(
'code', new ve.ui.Command( 'annotation', 'toggle', 'textStyle/code' )
);
ve.ui.commandRegistry.register(
'strikethrough', new ve.ui.Command( 'annotation', 'toggle', 'textStyle/strike' )
);
ve.ui.commandRegistry.register(
'underline', new ve.ui.Command( 'annotation', 'toggle', 'textStyle/underline' )
);
ve.ui.commandRegistry.register(
'subscript', new ve.ui.Command( 'annotation', 'toggle', 'textStyle/subscript' )
);
ve.ui.commandRegistry.register(
'superscript', new ve.ui.Command( 'annotation', 'toggle', 'textStyle/superscript' )
);
ve.ui.commandRegistry.register(
'clear', new ve.ui.Command( 'annotation', 'clearAll' )
);
ve.ui.commandRegistry.register(
'indent', new ve.ui.Command( 'indentation', 'increase' )
);
ve.ui.commandRegistry.register(
'outdent', new ve.ui.Command( 'indentation', 'decrease' )
);
ve.ui.commandRegistry.register(
'link', new ve.ui.Command( 'inspector', 'open', 'link' )
);
ve.ui.commandRegistry.register(
'language', new ve.ui.Command( 'inspector', 'open', 'language' )
);
ve.ui.commandRegistry.register(
'redo', new ve.ui.Command( 'history', 'redo' )
);
ve.ui.commandRegistry.register(
'undo', new ve.ui.Command( 'history', 'undo' )
);
ve.ui.commandRegistry.register(
'paragraph', new ve.ui.Command( 'format', 'convert', 'paragraph' )
);
ve.ui.commandRegistry.register(
'heading1', new ve.ui.Command( 'format', 'convert', 'heading', { 'level': 1 } )
);
ve.ui.commandRegistry.register(
'heading2', new ve.ui.Command( 'format', 'convert', 'heading', { 'level': 2 } )
);
ve.ui.commandRegistry.register(
'heading3', new ve.ui.Command( 'format', 'convert', 'heading', { 'level': 3 } )
);
ve.ui.commandRegistry.register(
'heading4', new ve.ui.Command( 'format', 'convert', 'heading', { 'level': 4 } )
);
ve.ui.commandRegistry.register(
'heading5', new ve.ui.Command( 'format', 'convert', 'heading', { 'level': 5 } )
);
ve.ui.commandRegistry.register(
'heading6', new ve.ui.Command( 'format', 'convert', 'heading', { 'level': 6 } )
);
ve.ui.commandRegistry.register(
'preformatted', new ve.ui.Command( 'format', 'convert', 'preformatted' )
);