mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 19:09:29 +00:00
efafed3231
Change-Id: I8df9226a358a76b661eab6e967ff0d63d361f691
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel TableCellNode class.
|
|
*
|
|
* @copyright 2011-2013 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, children, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.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 ( domElements ) {
|
|
var style = domElements[0].nodeName.toLowerCase() === 'th' ? 'header' : 'data';
|
|
return { 'type': 'tableCell', 'attributes': { 'style': style } };
|
|
};
|
|
|
|
ve.dm.TableCellNode.static.toDomElements = function ( dataElement, doc ) {
|
|
var tag = dataElement.attributes && dataElement.attributes.style === 'header' ? 'th' : 'td';
|
|
return [ doc.createElement( tag ) ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.TableCellNode );
|