mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
263 lines
7.3 KiB
JavaScript
263 lines
7.3 KiB
JavaScript
/**
|
|
* Serializes a WikiDom plain object into an HTML string.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @param {Object} options List of options for serialization
|
|
*/
|
|
es.HtmlSerializer = function( options ) {
|
|
this.options = $.extend( {
|
|
// defaults
|
|
}, options || {} );
|
|
};
|
|
|
|
/* Static Methods */
|
|
|
|
/**
|
|
* Get a serialized version of data.
|
|
*
|
|
* @static
|
|
* @method
|
|
* @param {Object} data Data to serialize
|
|
* @param {Object} options Options to use, @see {es.WikitextSerializer} for details
|
|
* @returns {String} Serialized version of data
|
|
*/
|
|
es.HtmlSerializer.stringify = function( data, options ) {
|
|
return ( new es.HtmlSerializer( options ) ).document( data );
|
|
};
|
|
|
|
es.HtmlSerializer.getHtmlAttributes = function( attributes ) {
|
|
var htmlAttributes = {},
|
|
count = 0;
|
|
for ( var key in attributes ) {
|
|
if ( key.indexOf( 'html/' ) === 0 ) {
|
|
htmlAttributes[key.substr( 5 )] = attributes[key];
|
|
count++;
|
|
}
|
|
}
|
|
return count ? htmlAttributes : null;
|
|
};
|
|
|
|
es.HtmlSerializer.getExpandedListItems = function( node ) {
|
|
var childNode,
|
|
styles,
|
|
tree = [];
|
|
for ( var i = 0; i < node.children.length; i++ ) {
|
|
childNode = node.children[i];
|
|
styles = childNode.attributes.styles;
|
|
// TODO: Build tree from items
|
|
}
|
|
return [];
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
es.HtmlSerializer.prototype.document = function( node, rawFirstParagraph ) {
|
|
var lines = [];
|
|
for ( var i = 0, length = node.children.length; i < length; i++ ) {
|
|
var childNode = node.children[i];
|
|
if ( childNode.type in this ) {
|
|
// Special case for paragraphs which have particular wrapping needs
|
|
if ( childNode.type === 'paragraph' ) {
|
|
lines.push( this.paragraph( childNode, rawFirstParagraph && i === 0 ) );
|
|
} else {
|
|
lines.push( this[childNode.type].call( this, childNode ) );
|
|
}
|
|
}
|
|
}
|
|
return lines.join( '\n' );
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.comment = function( node ) {
|
|
return '<!--' + node.text + '-->';
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.horizontalRule = function( node ) {
|
|
return es.Html.makeTag( 'hr', {}, false );
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.heading = function( node ) {
|
|
return es.Html.makeTag(
|
|
'h' + node.attributes.level, {}, this.content( node.content )
|
|
);
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.paragraph = function( node, raw ) {
|
|
if ( raw ) {
|
|
return this.content( node.content );
|
|
} else {
|
|
return es.Html.makeTag( 'p', {}, this.content( node.content ) );
|
|
}
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.list = function( node ) {
|
|
var out = [], // List of list nodes
|
|
bstack = [], // Bullet stack, previous element's listStyles
|
|
bnext = [], // Next element's listStyles
|
|
closeTags = []; // Stack of close tags for currently active lists
|
|
|
|
var commonPrefixLength = function (x, y) {
|
|
var minLength = Math.min(x.length, y.length);
|
|
for(var i = 0; i < minLength; i++) {
|
|
if (x[i] !== y[i]) {
|
|
// Both definitiondescription and definitionterm are
|
|
// inside dls, so consider them equivalent here.
|
|
var diffs = [x[i], y[i]].sort();
|
|
if (diffs[0] !== 'definitiondescription'
|
|
&& diffs[1] !== 'definitionterm' ) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return i;
|
|
}
|
|
|
|
var popTags = function ( n ) {
|
|
for (var i = 0; i < n; i++ ) {
|
|
out.push(closeTags.pop());
|
|
}
|
|
}
|
|
|
|
var openLists = function ( bs, bn, attribs ) {
|
|
var prefix = commonPrefixLength (bs, bn);
|
|
// pop close tags from stack
|
|
popTags(closeTags.length - prefix);
|
|
for(var i = prefix; i < bn.length; i++) {
|
|
var c = bn[i];
|
|
switch (c) {
|
|
case 'bullet':
|
|
out.push(es.Html.makeOpeningTag('ul', attribs));
|
|
closeTags.push(es.Html.makeClosingTag('ul'));
|
|
break;
|
|
case 'number':
|
|
out.push(es.Html.makeOpeningTag('ol', attribs));
|
|
closeTags.push(es.Html.makeClosingTag('ol'));
|
|
break;
|
|
case 'definitionterm':
|
|
case 'definitiondescription':
|
|
out.push(es.Html.makeOpeningTag('dl', attribs));
|
|
closeTags.push(es.Html.makeClosingTag('dl'));
|
|
break;
|
|
default:
|
|
throw("Unknown node prefix " + c);
|
|
}
|
|
};
|
|
}
|
|
|
|
for (var i = 0, length = node.children.length; i < length; i++) {
|
|
var e = node.children[i];
|
|
bnext = e.attributes.styles;
|
|
delete e.attributes['styles'];
|
|
openLists( bstack, bnext, e.attributes );
|
|
var tag;
|
|
switch(bnext[bnext.length - 1]) {
|
|
case 'definitionterm':
|
|
tag = 'dt'; break;
|
|
case 'definitiondescription':
|
|
tag = 'dd'; break;
|
|
default:
|
|
tag = 'li'; break;
|
|
}
|
|
out.push( es.Html.makeTag(tag, e.attributes,
|
|
this.content(e.content)
|
|
)
|
|
);
|
|
bstack = bnext;
|
|
};
|
|
popTags(closeTags.length);
|
|
return out.join("\n");
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.table = function( node ) {
|
|
var lines = [],
|
|
attributes = es.HtmlSerializer.getHtmlAttributes( node.attributes );
|
|
lines.push( es.Html.makeOpeningTag( 'table', attributes ) );
|
|
for ( var i = 0, length = node.children.length; i < length; i++ ) {
|
|
var child = node.children[i];
|
|
lines.push( this[child.type]( child ) );
|
|
}
|
|
lines.push( es.Html.makeClosingTag( 'table' ) );
|
|
return lines.join( '\n' );
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.tableRow = function( node ) {
|
|
var lines = [],
|
|
attributes = es.HtmlSerializer.getHtmlAttributes( node.attributes );
|
|
lines.push( es.Html.makeOpeningTag( 'tr', attributes ) );
|
|
for ( var i = 0, length = node.children.length; i < length; i++ ) {
|
|
lines.push( this.tableCell( node.children[i] ) );
|
|
}
|
|
lines.push( es.Html.makeClosingTag( 'tr' ) );
|
|
return lines.join( '\n' );
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.tableCell = function( node ) {
|
|
var symbolTable = {
|
|
'tableHeading': 'th',
|
|
'tableCell': 'td'
|
|
},
|
|
attributes = es.HtmlSerializer.getHtmlAttributes( node.attributes );
|
|
return es.Html.makeTag( symbolTable[node.type], attributes, this.document( node, true ) );
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.tableCaption = function( node ) {
|
|
attributes = es.HtmlSerializer.getHtmlAttributes( node.attributes );
|
|
return es.Html.makeTag( 'caption', attributes, this.content( node.content ) );
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.transclusion = function( node ) {
|
|
var title = [];
|
|
if ( node.namespace !== 'Main' ) {
|
|
title.push( node.namespace );
|
|
}
|
|
title.push( node.title );
|
|
title = title.join( ':' );
|
|
return es.Html.makeTag( 'a', { 'href': '/wiki/' + title }, title );
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.parameter = function( node ) {
|
|
return '{{{' + node.name + '}}}';
|
|
};
|
|
|
|
es.HtmlSerializer.prototype.content = function( node ) {
|
|
if ( 'annotations' in node && node.annotations.length ) {
|
|
var annotationSerializer = new es.AnnotationSerializer(),
|
|
tagTable = {
|
|
'textStyle/bold': 'b',
|
|
'textStyle/italic': 'i',
|
|
'textStyle/strong': 'strong',
|
|
'textStyle/emphasis': 'em',
|
|
'textStyle/big': 'big',
|
|
'textStyle/small': 'small',
|
|
'textStyle/superScript': 'sup',
|
|
'textStyle/subScript': 'sub'
|
|
};
|
|
for ( var i = 0, length = node.annotations.length; i < length; i++ ) {
|
|
var annotation = node.annotations[i];
|
|
if ( annotation.type in tagTable ) {
|
|
annotationSerializer.addTags( annotation.range, tagTable[annotation.type] );
|
|
} else {
|
|
switch ( annotation.type ) {
|
|
case 'link/external':
|
|
annotationSerializer.addTags(
|
|
annotation.range, 'a', { 'href': annotation.data.url }
|
|
);
|
|
break;
|
|
case 'link/internal':
|
|
annotationSerializer.addTags(
|
|
annotation.range, 'a', { 'href': '/wiki/' + annotation.data.title }
|
|
);
|
|
break;
|
|
case 'object/template':
|
|
case 'object/hook':
|
|
annotationSerializer.add( annotation.range, annotation.data.html, '' );
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return annotationSerializer.render( node.text );
|
|
} else {
|
|
return node.text;
|
|
}
|
|
};
|