mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
5a5b4b577a
Change-Id: I74eeab1195455072ae48ac0655582f2bf01806d6
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel TableCellNode class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel table cell node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.BranchNode
|
|
* @constructor
|
|
* @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 Properties */
|
|
|
|
ve.dm.TableCellNode.static.name = 'tableCell';
|
|
|
|
ve.dm.TableCellNode.static.parentNodeTypes = [ 'tableRow' ];
|
|
|
|
ve.dm.TableCellNode.static.defaultAttributes = {
|
|
'style': 'data'
|
|
};
|
|
|
|
ve.dm.TableCellNode.static.matchTagNames = [ 'td', 'th' ];
|
|
|
|
ve.dm.TableCellNode.static.toDataElement = function ( domElement ) {
|
|
var style = domElement.nodeName.toLowerCase() === 'th' ? 'header' : 'data';
|
|
return { 'type': 'tableCell', 'attributes': { 'style': style } };
|
|
};
|
|
|
|
ve.dm.TableCellNode.static.toDomElement = function ( dataElement ) {
|
|
var tag = dataElement.attributes && dataElement.attributes.style === 'header' ? 'th' : 'td';
|
|
return document.createElement( tag );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.TableCellNode );
|