mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.TableSectionNode.js
Catrope 74ed8e8766 Rename ve_foo_bar back to VeFooBar per discussion
Change-Id: Ibf6d4f08c4761727b2e3952a76e474c8221b38f9
2012-09-06 16:15:55 -07:00

72 lines
1.8 KiB
JavaScript

/**
* VisualEditor data model TableSelectionNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel node for a table section.
*
* @class
* @constructor
* @extends {ve.dm.BranchNode}
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
* @param {Object} [attributes] Reference to map of attribute key/value pairs
* @param {Object} [internal] Reference to internal data object
*/
ve.dm.TableSectionNode = function VeDmTableSectionNode( children, attributes, internal ) {
// Parent constructor
ve.dm.BranchNode.call( this, 'tableSection', children, attributes, internal );
};
/* Inheritance */
ve.inheritClass( ve.dm.TableSectionNode, ve.dm.BranchNode );
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.TableSectionNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'childNodeTypes': ['tableRow'],
'parentNodeTypes': ['table']
};
/**
* Node converters.
*
* @see {ve.dm.Converter}
* @static
* @member
*/
ve.dm.TableSectionNode.converters = {
'domElementTypes': ['thead', 'tbody', 'tfoot'],
'toDomElement': function ( type, element ) {
return element.attributes && ( {
'header': document.createElement( 'thead' ),
'body': document.createElement( 'tbody' ),
'footer': document.createElement( 'tfoot' )
} )[element.attributes.style];
},
'toDataElement': function ( tag, element ) {
return ( {
'thead': { 'type': 'tableSection', 'attributes': { 'style': 'header' } },
'tbody': { 'type': 'tableSection', 'attributes': { 'style': 'body' } },
'tfoot': { 'type': 'tableSection', 'attributes': { 'style': 'footer' } }
} )[tag];
}
};
/* Registration */
ve.dm.nodeFactory.register( 'tableSection', ve.dm.TableSectionNode );