2011-11-03 18:15:24 +00:00
|
|
|
/**
|
|
|
|
* 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 );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* 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 && b === 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( heading ) {
|
|
|
|
return es.Html.makeTag(
|
|
|
|
'h' + heading.level, {}, this.serializeLine( heading.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 ) {
|
|
|
|
// TODO: Convert list from flat to structured format and output it as HTML
|
|
|
|
return '<!-- TODO: Support list and listItem nodes -->';
|
|
|
|
};
|
|
|
|
|
2011-11-03 18:25:04 +00:00
|
|
|
es.HtmlSerializer.prototype.table = function( node ) {
|
2011-11-03 18:15:24 +00:00
|
|
|
var lines = [];
|
|
|
|
lines.push( es.Html.makeOpeningTag( 'table', node.attributes ) );
|
|
|
|
for ( var i = 0, length = node.children.length; i < length; i++ ) {
|
|
|
|
lines.push( this.tableRow( node.children[i] ) );
|
|
|
|
}
|
|
|
|
lines.push( es.Html.makeClosingTag( 'table' ) );
|
|
|
|
return lines.join( '\n' );
|
|
|
|
};
|
|
|
|
|
2011-11-03 18:25:04 +00:00
|
|
|
es.HtmlSerializer.prototype.tableRow = function( node ) {
|
2011-11-03 18:15:24 +00:00
|
|
|
var lines = [];
|
|
|
|
lines.push( es.Html.makeOpeningTag( 'tr', node.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' );
|
|
|
|
};
|
|
|
|
|
2011-11-03 18:25:04 +00:00
|
|
|
es.HtmlSerializer.prototype.tableCell = function( node ) {
|
2011-11-03 18:15:24 +00:00
|
|
|
var symbolTable = {
|
|
|
|
'tableHeading': 'th',
|
|
|
|
'tableCell': 'td'
|
|
|
|
};
|
|
|
|
return es.Html.makeTag( symbolTable[node.type], node.attributes, this.document( node, true ) );
|
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
};
|