/*! * VisualEditor DataModel MWTransclusionNode class. * * @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt * @license The MIT License (MIT); see LICENSE.txt */ /** * DataModel MediaWiki transclusion node. * * @class * @abstract * @extends ve.dm.LeafNode * @mixins ve.dm.GeneratedContentNode * * @constructor * @param {number} [length] Length of content data in document; ignored and overridden to 0 * @param {Object} [element] Reference to element in linear model */ ve.dm.MWTransclusionNode = function VeDmMWTransclusionNode( length, element ) { // Parent constructor ve.dm.LeafNode.call( this, 0, element ); // Mixin constructors ve.dm.GeneratedContentNode.call( this ); }; /* Inheritance */ ve.inheritClass( ve.dm.MWTransclusionNode, ve.dm.LeafNode ); ve.mixinClass( ve.dm.MWTransclusionNode, ve.dm.GeneratedContentNode ); /* Static members */ ve.dm.MWTransclusionNode.static.name = 'mwTransclusion'; ve.dm.MWTransclusionNode.static.matchTagNames = null; ve.dm.MWTransclusionNode.static.matchRdfaTypes = [ 'mw:Transclusion', // We're interested in all nodes that have mw:Transclusion, even if they also have other mw: // types. So we match all mw: types, then use a matchFunction to assert that mw:Transclusion // is in there. /^mw:/ ]; ve.dm.MWTransclusionNode.static.matchFunction = function ( domElement ) { return ve.indexOf( 'mw:Transclusion', ( domElement.getAttribute( 'typeof' ) || '' ).split( ' ' ) ) !== -1; }; ve.dm.MWTransclusionNode.static.getHashObject = function ( dataElement ) { return { type: dataElement.type, mw: dataElement.attributes.mw }; }; ve.dm.MWTransclusionNode.static.toDataElement = function ( domElements, converter ) { var dataElement, mw = JSON.parse( domElements[0].getAttribute( 'data-mw' ) ), isInline = this.isHybridInline( domElements, converter ), type = isInline ? 'mwTransclusionInline' : 'mwTransclusionBlock'; dataElement = { 'type': type, 'attributes': { 'mw': mw, 'mwOriginal': ve.copyObject( mw ) } }; this.storeDomElements( dataElement, domElements, converter.getStore() ); return dataElement; }; ve.dm.MWTransclusionNode.static.toDomElements = function ( dataElement, doc, converter ) { var span, index; if ( ve.compare( dataElement.attributes.mw, dataElement.attributes.mwOriginal ) ) { // If the transclusion is unchanged just send back the original dom elements so selser can // skip over it index = converter.getStore().indexOfHash( ve.getHash( this.getHashObject( dataElement ) ) ); // The object in the store is also used for rendering so return a copy return ve.copyArray( converter.getStore().value( index ) ); } else { span = doc.createElement( 'span' ); // All we need to send back to Parsoid is the original transclusion marker, with a // reconstructed data-mw property. span.setAttribute( 'typeof', 'mw:Transclusion' ); span.setAttribute( 'data-mw', JSON.stringify( dataElement.attributes.mw ) ); return [ span ]; } }; /** * Escape a template parameter. Helper function for getWikitext(). * @param {string} param Parameter value * @returns {string} Escaped parameter value */ ve.dm.MWTransclusionNode.static.escapeParameter = function ( param ) { var match, input = param, output = '', inNowiki = false; while ( input.length > 0 ) { match = input.match( /(?:\}\})+|\|+|<\/?nowiki>|/ ); if ( !match ) { output += input; break; } output += input.substr( 0, match.index ); input = input.substr( match.index + match[0].length ); if ( inNowiki ) { if ( match[0] === '' ) { inNowiki = false; output += match[0]; } else { output += match[0]; } } else { if ( match[0] === '' ) { inNowiki = true; output += match[0]; } else if ( match[0] === '' || match[0].match( // ) ) { output += match[0]; } else { output += '' + match[0] + ''; } } } return output; }; /* Methods */ /** * Get the wikitext for this transclusion. * * @method * @returns {string} Wikitext like `{{foo|1=bar|baz=quux}}` */ ve.dm.MWTransclusionNode.prototype.getWikitext = function () { var i, len, part, template, param, content = this.getAttribute( 'mw' ), wikitext = ''; // Normalize to multi template format if ( content.params ) { content = { 'parts': [ { 'template': content } ] }; } // Build wikitext from content for ( i = 0, len = content.parts.length; i < len; i++ ) { part = content.parts[i]; if ( part.template ) { // Template template = part.template; wikitext += '{{' + template.target.wt; for ( param in template.params ) { wikitext += '|' + param + '=' + this.constructor.static.escapeParameter( template.params[param].wt ); } wikitext += '}}'; } else { // Plain wikitext wikitext += part; } } return wikitext; }; /* Concrete subclasses */ /** * DataModel MediaWiki transclusion block node. * * @class * @extends ve.dm.MWTransclusionNode * @constructor * @param {number} [length] Length of content data in document; ignored and overridden to 0 * @param {Object} [element] Reference to element in linear model */ ve.dm.MWTransclusionBlockNode = function VeDmMWTransclusionBlockNode( length, element ) { // Parent constructor ve.dm.MWTransclusionNode.call( this, length, element ); }; ve.inheritClass( ve.dm.MWTransclusionBlockNode, ve.dm.MWTransclusionNode ); ve.dm.MWTransclusionBlockNode.static.matchTagNames = []; ve.dm.MWTransclusionBlockNode.static.name = 'mwTransclusionBlock'; /** * DataModel MediaWiki transclusion inline node. * * @class * @extends ve.dm.MWTransclusionNode * @constructor * @param {number} [length] Length of content data in document; ignored and overridden to 0 * @param {Object} [element] Reference to element in linear model */ ve.dm.MWTransclusionInlineNode = function VeDmMWTransclusionInlineNode( length, element ) { // Parent constructor ve.dm.MWTransclusionNode.call( this, length, element ); }; ve.inheritClass( ve.dm.MWTransclusionInlineNode, ve.dm.MWTransclusionNode ); ve.dm.MWTransclusionInlineNode.static.matchTagNames = []; ve.dm.MWTransclusionInlineNode.static.name = 'mwTransclusionInline'; ve.dm.MWTransclusionInlineNode.static.isContent = true; /* Registration */ ve.dm.modelRegistry.register( ve.dm.MWTransclusionNode ); ve.dm.modelRegistry.register( ve.dm.MWTransclusionBlockNode ); ve.dm.modelRegistry.register( ve.dm.MWTransclusionInlineNode );