mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 08:34:54 +00:00
db9f941fa6
Objectives: * Rename this.$ to this.$element * Rename this.$$ to this.$ * Get rid of the need to use this.frame.$$ * Rename OO.ui.Element.get$$ to OO.ui.Element.getJQuery Changes: (using Sublime Text regex patterns) * Replace "get$$" with "getJQuery" * Replace "\.(\$)([^\$a-zA-Z])" with ".$element$2" * Replace "\.(\$\$)" with ".$" * Replace "'$$'" with "'$'" * Set this.$ to null in constructor of OO.ui.Window * Set this.$ to this.frame.$ in initialize method of OO.ui.Window * Replace "\.(frame.\$)([^\$a-zA-Z])" with ".\$$2" Bonus: * Use this.$() in a bunch of places where $() was erroneously used Change-Id: If3d870124ab8d10f8223532cda95c2b2b075db94
108 lines
2.6 KiB
JavaScript
108 lines
2.6 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
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ce.ImageNode = function VeCeImageNode( model, config ) {
|
|
// Parent constructor
|
|
ve.ce.LeafNode.call( this, model, config );
|
|
|
|
// Mixin constructors
|
|
ve.ce.FocusableNode.call( this );
|
|
ve.ce.RelocatableNode.call( this );
|
|
ve.ce.ResizableNode.call( this );
|
|
|
|
// Properties
|
|
this.$image = this.$element;
|
|
|
|
// Events
|
|
this.$element.on( 'click', ve.bind( this.onClick, this ) );
|
|
this.model.connect( this, { 'attributeChange': 'onAttributeChange' } );
|
|
|
|
// Initialization
|
|
this.$image
|
|
.addClass( 've-ce-imageNode' )
|
|
.attr( {
|
|
'alt': this.model.getAttribute( 'alt' ),
|
|
'src': this.getResolvedAttribute( 'src' )
|
|
} )
|
|
.css( {
|
|
'width': this.model.getAttribute( 'width' ),
|
|
'height': this.model.getAttribute( 'height' )
|
|
} );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ce.ImageNode, ve.ce.LeafNode );
|
|
|
|
OO.mixinClass( ve.ce.ImageNode, ve.ce.FocusableNode );
|
|
OO.mixinClass( ve.ce.ImageNode, ve.ce.RelocatableNode );
|
|
OO.mixinClass( ve.ce.ImageNode, ve.ce.ResizableNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ce.ImageNode.static.name = 'image';
|
|
|
|
ve.ce.ImageNode.static.tagName = 'img';
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Update the rendering of the 'src', 'width' and 'height' attributes when they change in the model.
|
|
*
|
|
* @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 ( from !== to ) {
|
|
if ( key === 'src' ) {
|
|
this.$image.attr( 'src', this.getResolvedAttribute( 'src' ) );
|
|
}
|
|
if ( key === 'width' || key === 'height' ) {
|
|
this.$image.css( key, to );
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* 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 );
|