mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-26 07:15:32 +00:00
316fdab450
It's been passed in for a while, but nothing ever used it. As we know some browsers don't like it when we create elements in the wrong document, and this ensures we always use the correct document for createElement(). Change-Id: Ia3d2fabe0516956105ad2b5625ed2f76c015c26e
64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel MWEntityNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel MediaWiki image node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.LeafNode
|
|
* @constructor
|
|
* @param {number} [length] Length of content data in document
|
|
* @param {Object} [element] Reference to element in linear model
|
|
*/
|
|
ve.dm.MWImageNode = function VeDmMWImageNode( length, element ) {
|
|
ve.dm.LeafNode.call( this, 0, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.MWImageNode, ve.dm.LeafNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.MWImageNode.static.name = 'MWimage';
|
|
|
|
ve.dm.MWImageNode.static.isContent = true;
|
|
|
|
ve.dm.MWImageNode.static.matchRdfaTypes = [ 'mw:Image' ];
|
|
|
|
ve.dm.MWImageNode.static.storeHtmlAttributes = false;
|
|
|
|
ve.dm.MWImageNode.static.toDataElement = function ( domElements ) {
|
|
var $node = $( domElements[0].childNodes[0] ),
|
|
width = $node.attr( 'width' ),
|
|
height = $node.attr( 'height' ),
|
|
html = $( '<div>', domElements[0].ownerDocument ).append( $( domElements ).clone() ).html();
|
|
|
|
return {
|
|
'type': this.name,
|
|
'attributes': {
|
|
'src': $node.attr( 'src' ),
|
|
'width': width !== '' ? Number( width ) : null,
|
|
'height': height !== '' ? Number( height ) : null,
|
|
// TODO: don't store html, just enough attributes to rebuild
|
|
'html': html
|
|
},
|
|
};
|
|
};
|
|
|
|
ve.dm.MWImageNode.static.toDomElements = function ( dataElement, doc ) {
|
|
//TODO: rebuild html from attributes
|
|
var wrapper = doc.createElement( 'div' );
|
|
wrapper.innerHTML = dataElement.attributes.html;
|
|
// Convert wrapper.children to an array
|
|
return Array.prototype.slice.call( wrapper.childNodes, 0 );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWImageNode );
|