mediawiki-extensions-Visual.../modules/ve/ui/ve.ui.CommandRegistry.js
Ed Sanders b1e6dfcda6 Plain text paste with paste special
Register ctrl/cmd+shift+v as a trigger which sets a flag for the
next paste event.

When the paste special flag is set, modify the sanitizeData method
to strip all annotations, and any elements other than paragraphs.

Bug: 53781
Change-Id: If814e1786ffa805b52ab32f4a06f52da743fd9af
2013-11-26 18:23:58 +00:00

120 lines
3.5 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' )
);
ve.ui.commandRegistry.register(
'pasteSpecial', new ve.ui.Command( 'content', 'pasteSpecial' )
);