mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
05828cc3f1
For nodes that handle their own children (as well as leaf nodes and meta items), store the first child's attributes in html/0-0/*, the second child's attributes in html/0-1/*, the second element's third child's fourth child's attributes in html/1-2-3/* , etc. This obsoletes the ad-hoc code that basically did the same thing in MWInlineImageNode. Change-Id: If5abd2d5d9c361b359617ff4b0f3d6ba4c9b0142
59 lines
1.7 KiB
JavaScript
59 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.ImageNode
|
|
* @constructor
|
|
* @param {number} [length] Length of content data in document
|
|
* @param {Object} [element] Reference to element in linear model
|
|
*/
|
|
ve.dm.MWInlineImageNode = function VeDmMWInlineImageNode( length, element ) {
|
|
ve.dm.ImageNode.call( this, 0, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.MWInlineImageNode, ve.dm.ImageNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.MWInlineImageNode.static.name = 'MWinlineimage';
|
|
|
|
ve.dm.MWInlineImageNode.static.matchTagNames = null;
|
|
|
|
// TODO: Develop better method to test for generated content
|
|
ve.dm.MWInlineImageNode.static.generatedContent = true;
|
|
|
|
ve.dm.MWInlineImageNode.static.matchRdfaTypes = [ 'mw:Image' ];
|
|
|
|
ve.dm.MWInlineImageNode.static.toDataElement = function ( domElements ) {
|
|
var children = Array.prototype.slice.call( domElements[0].children, 0 ),
|
|
parentResult = ve.dm.ImageNode.static.toDataElement.apply(
|
|
this, [ children ].concat( Array.prototype.slice.call( arguments, 1 ) )
|
|
);
|
|
return ve.extendObject( true, parentResult, {
|
|
'type': 'MWinlineimage',
|
|
'attributes': {
|
|
'isLinked': domElements[0].nodeName.toLowerCase() === 'a'
|
|
}
|
|
} );
|
|
};
|
|
|
|
ve.dm.MWInlineImageNode.static.toDomElements = function ( dataElement, doc ) {
|
|
var wrapper = doc.createElement( dataElement.attributes.isLinked ? 'a' : 'span' ),
|
|
imageDomElement = ve.dm.ImageNode.static.toDomElements.apply( this, arguments )[0];
|
|
wrapper.appendChild( imageDomElement );
|
|
return [ wrapper ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWInlineImageNode );
|