mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.MWInlineImageNode.js
Christian Williams e71655304e RelocatableNode for Inline and Block Images
HTML5's drag and drop has a ton of benefits and a couple of
limitations. To achieve a native drag marker, an image tag helper
is used to indicate the size of the relocatable node. Chrome
shades the marker gray natively, Firefox is styled to match.

Change-Id: I755b698a3d968cc7e6ff125109d68ac83fd8a8a2
2013-06-21 14:53:10 -07:00

77 lines
2.1 KiB
JavaScript

/*!
* VisualEditor ContentEditable MWEntityNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable MediaWiki image node.
*
* @class
* @extends ve.ce.LeafNode
*
* @constructor
* @param {ve.dm.MWInlineImageNode} model Model to observe
* @param {Object} [config] Config options
*/
ve.ce.MWInlineImageNode = function VeCeMWInlineImageNode( model, config ) {
var valign;
// Parent constructor
ve.ce.LeafNode.call( this, model, config );
if ( this.model.getAttribute( 'isLinked' ) ) {
this.$ = this.$$( '<a>' ).addClass( 'image' );
this.$image = this.$$( '<img>' ).appendTo( this.$ );
} else {
// For inline images that are not linked (empty linkto=) we intentionally don't match output
// of MW Parser, instead we wrap those images in span so selection and hover (based on
// shields) can work well. It might change in the future when we improve our selection.
this.$ = this.$$( '<span>' );
this.$image = this.$$( '<img>' ).appendTo( this.$ );
}
// Mixin constructors
ve.ce.ProtectedNode.call( this );
ve.ce.FocusableNode.call( this );
ve.ce.RelocatableNode.call( this );
this.$image
.attr( 'src', this.model.getAttribute( 'src' ) )
.attr( 'width', this.model.getAttribute( 'width' ) )
.attr( 'height', this.model.getAttribute( 'height' ) );
if ( this.model.getAttribute( 'border' ) ) {
this.$image.addClass( 'thumbborder' );
}
valign = this.model.getAttribute( 'valign' );
if ( valign !== 'default' ) {
this.$image.css( 'vertical-align', valign );
}
// DOM changes
this.$.addClass( 've-ce-mwInlineImageNode' );
};
/* Inheritance */
ve.inheritClass( ve.ce.MWInlineImageNode, ve.ce.LeafNode );
ve.mixinClass( ve.ce.MWInlineImageNode, ve.ce.ProtectedNode );
ve.mixinClass( ve.ce.MWInlineImageNode, ve.ce.FocusableNode );
ve.mixinClass( ve.ce.MWInlineImageNode, ve.ce.RelocatableNode );
/* Static Properties */
ve.ce.MWInlineImageNode.static.name = 'mwInlineImage';
ve.ce.MWInlineImageNode.static.tagName = 'img';
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWInlineImageNode );