mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
e34ec4b479
Change-Id: Ibe53292f7269736750e03da49e5bb5913c0124ab
62 lines
1.1 KiB
JavaScript
62 lines
1.1 KiB
JavaScript
/**
|
|
* ContentEditable node for an image.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.ce.LeafNode}
|
|
* @param model {ve.dm.ImageNode} Model to observe
|
|
*/
|
|
ve.ce.ImageNode = function( model ) {
|
|
// Inheritance
|
|
ve.ce.LeafNode.call( this, 'image', model, $( '<img>' ) );
|
|
|
|
// Properties
|
|
this.currentSource = null;
|
|
|
|
// Events
|
|
this.model.addListenerMethod( this, 'update', 'onUpdate' );
|
|
|
|
// Intialization
|
|
this.onUpdate();
|
|
};
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* Node rules.
|
|
*
|
|
* @see ve.ce.NodeFactory
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.ce.ImageNode.rules = {
|
|
'canHaveChildren': false,
|
|
'canHaveGrandchildren': false,
|
|
'canBeSplit': false
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Responds to model update events.
|
|
*
|
|
* If the source changed since last update the image's src attribute will be updated accordingly.
|
|
*
|
|
* @method
|
|
*/
|
|
ve.ce.ImageNode.prototype.onUpdate = function() {
|
|
var source = this.model.getAttribute( 'html/src' );
|
|
if ( source !== this.currentSource ) {
|
|
this.currentSource = source;
|
|
this.$.attr( 'src', source );
|
|
}
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.factory.register( 'image', ve.ce.ImageNode );
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.ce.ImageNode, ve.ce.LeafNode );
|