mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.TableCellNode.js
Catrope 49963c75fd Store the data model element in the DM tree
This is cleaner than passing around the attributes separately, and it
allows us to access the annotations in dm.LeafNode as well.

Change-Id: Ie5b90988114835831cbe5cdccf63c7cd45719e31
2012-11-27 14:36:29 -08:00

70 lines
1.6 KiB
JavaScript

/**
* VisualEditor data model TableCellNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel node for a table cell.
*
* @class
* @constructor
* @extends {ve.dm.BranchNode}
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
* @param {Object} [element] Reference to element in linear model
*/
ve.dm.TableCellNode = function VeDmTableCellNode( children, element ) {
// Parent constructor
ve.dm.BranchNode.call( this, 'tableCell', children, element );
};
/* Inheritance */
ve.inheritClass( ve.dm.TableCellNode, ve.dm.BranchNode );
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.TableCellNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'hasSignificantWhitespace': false,
'childNodeTypes': null,
'parentNodeTypes': ['tableRow']
};
/**
* Node converters.
*
* @see {ve.dm.Converter}
* @static
* @member
*/
ve.dm.TableCellNode.converters = {
'domElementTypes': ['td', 'th'],
'toDomElement': function ( type, element ) {
return element.attributes && ( {
'data': document.createElement( 'td' ),
'header': document.createElement( 'th' )
} )[element.attributes.style];
},
'toDataElement': function ( tag ) {
return ( {
'td': { 'type': 'tableCell', 'attributes': { 'style': 'data' } },
'th': { 'type': 'tableCell', 'attributes': { 'style': 'header' } }
} )[tag];
}
};
/* Registration */
ve.dm.nodeFactory.register( 'tableCell', ve.dm.TableCellNode );