mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
9510440640
ve.ce.ImageNode.js * Moved in generic stuff from MWImageNode * Added drag end handler (empty, will be used soon) ve.ce.MWImageNode.js * Changed to inherit ImageNode * Moved generic stuff out ve.dm.ImageNode.js * Added attribute extraction/preservation for src, width and height ve.dm.MWImageNode.js * Changed to inherit ImageNode * Re-using ImageNode's attribute handling to extract/preserve attributes on both the image and wrapper level Change-Id: Ied4e1ece24e6804220eac35330790f7084df55de
89 lines
1.9 KiB
JavaScript
89 lines
1.9 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
|
|
* @constructor
|
|
* @param {ve.dm.ImageNode} model Model to observe
|
|
*/
|
|
ve.ce.ImageNode = function VeCeImageNode( model ) {
|
|
// Parent constructor
|
|
ve.ce.LeafNode.call( this, model, $( '<img>' ) );
|
|
|
|
// Events
|
|
this.model.addListenerMethod( this, 'update', 'onUpdate' );
|
|
this.$.on( {
|
|
'click': ve.bind( this.onClick, this ),
|
|
'dragstart': ve.bind( this.onDragStart, this ),
|
|
'dragend': ve.bind( this.onDragEnd, this )
|
|
} );
|
|
|
|
// Initialization
|
|
ve.setDomAttributes( this.$[0], this.model.getAttributes(), ['src', 'width', 'height'] );
|
|
this.$.addClass( 've-ce-imageNode' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ce.ImageNode, ve.ce.LeafNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ce.ImageNode.static.name = 'image';
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Handle the mouse click.
|
|
*
|
|
* @method
|
|
* @param {jQuery.Event} e Click event
|
|
*/
|
|
ve.ce.ImageNode.prototype.onClick = function ( e ) {
|
|
var range,
|
|
surfaceModel = this.getRoot().getSurface().getModel(),
|
|
selection = surfaceModel.getSelection();
|
|
|
|
range = new ve.Range(
|
|
this.model.getOffset(),
|
|
this.model.getOffset() + this.model.getOuterLength()
|
|
);
|
|
|
|
if ( e.shiftKey ) {
|
|
range = ve.Range.newCoveringRange( [ selection, range ], selection.from > range.from );
|
|
}
|
|
|
|
this.getRoot().getSurface().getModel().change( null, range );
|
|
};
|
|
|
|
/**
|
|
* Handle the dragstart.
|
|
*
|
|
* @method
|
|
* @param {jQuery.Event} e Dragstart event
|
|
*/
|
|
ve.ce.ImageNode.prototype.onDragStart = function () {
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* Handle the dragend.
|
|
*
|
|
* @method
|
|
* @param {jQuery.Event} e Dragstart event
|
|
*/
|
|
ve.ce.ImageNode.prototype.onDragEnd = function () {
|
|
return false;
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.nodeFactory.register( ve.ce.ImageNode );
|