mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 16:44:51 +00:00
8b09dd7650
By removing the transaction listeners from surface fragments we no longer have to make sure they are always manually destroyed. In order to retain the functionality of having fragments update with transactions elsewhere we keep a pointer to a place in the new complete history stack in the surface. The complete history stack records all transactions, even undone ones. Whenever getRange is called we replay all transactions in the complete history (in the correct order) since the fragment was last updated. Also in this commit: * Updated Format/IndentationAction to test undo(). This increases coverage of surface fragment behaviour. * .range is always accessed by .getRange now, although as an optimisation we can use the noCopy mode when we a sure the returned range will not be modified. * Added undo test to .update (previously .onTransact) Bug: 47343 Change-Id: I9e9818da1baa8319a3002f6d74fd1aad6732a8f5
103 lines
2.4 KiB
JavaScript
103 lines
2.4 KiB
JavaScript
/*!
|
|
* VisualEditor ContentEditable ImageNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* ContentEditable image node.
|
|
*
|
|
* @class
|
|
* @extends ve.ce.LeafNode
|
|
* @mixins ve.ce.FocusableNode
|
|
* @mixins ve.ce.RelocatableNode
|
|
* @mixins ve.ce.ResizableNode
|
|
*
|
|
* @constructor
|
|
* @param {ve.dm.ImageNode} model Model to observe
|
|
*/
|
|
ve.ce.ImageNode = function VeCeImageNode( model ) {
|
|
// Parent constructor
|
|
ve.ce.LeafNode.call( this, model, $( '<img>' ) );
|
|
|
|
// Mixin constructors
|
|
ve.ce.FocusableNode.call( this );
|
|
ve.ce.RelocatableNode.call( this );
|
|
ve.ce.ResizableNode.call( this );
|
|
|
|
// Properties
|
|
this.$image = this.$;
|
|
|
|
// Events
|
|
this.model.addListenerMethod( this, 'update', 'onUpdate' );
|
|
this.$.on( 'click', ve.bind( this.onClick, this ) );
|
|
|
|
// Initialization
|
|
ve.setDomAttributes( this.$image[0], this.model.getAttributes(), ['src', 'width', 'height'] );
|
|
this.$image.addClass( 've-ce-imageNode' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ce.ImageNode, ve.ce.LeafNode );
|
|
|
|
ve.mixinClass( ve.ce.ImageNode, ve.ce.FocusableNode );
|
|
ve.mixinClass( ve.ce.ImageNode, ve.ce.RelocatableNode );
|
|
ve.mixinClass( ve.ce.ImageNode, ve.ce.ResizableNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ce.ImageNode.static.name = 'image';
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Handle attribute change events.
|
|
*
|
|
* Whitelisted attributes will be added or removed in sync with the DOM. They are initially set in
|
|
* the constructor.
|
|
*
|
|
* @method
|
|
* @param {string} key Attribute key
|
|
* @param {string} from Old value
|
|
* @param {string} to New value
|
|
*/
|
|
ve.ce.ImageNode.prototype.onAttributeChange = function ( key, from, to ) {
|
|
if ( ( key === 'width' || key === 'height' ) && from !== to ) {
|
|
this.$image.attr( key, to );
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Update method
|
|
*
|
|
* @method
|
|
*/
|
|
ve.ce.ImageNode.prototype.onUpdate = function () {
|
|
};
|
|
|
|
/**
|
|
* Handle the mouse click.
|
|
*
|
|
* @method
|
|
* @param {jQuery.Event} e Click event
|
|
*/
|
|
ve.ce.ImageNode.prototype.onClick = function ( e ) {
|
|
var surfaceModel = this.getRoot().getSurface().getModel(),
|
|
selectionRange = surfaceModel.getSelection(),
|
|
nodeRange = this.model.getOuterRange();
|
|
|
|
surfaceModel.getFragment(
|
|
e.shiftKey ?
|
|
ve.Range.newCoveringRange(
|
|
[ selectionRange, nodeRange ], selectionRange.from > nodeRange.from
|
|
) :
|
|
nodeRange
|
|
).select();
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.nodeFactory.register( ve.ce.ImageNode );
|