mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.TableSectionNode.js
Catrope 2e36f1542b (bug 45062) Implement the new node API in the converter
This changes the node API to work with multiple elements, so we can
support about groups. Instead of passing in and returning single DOM
elements, we use arrays of DOM elements.

ve.dm.Converter:
* Pass modelRegistry into the constructor
* Remove onNodeRegister handler and its data
* Remove getDataElementFromDomElement() and
  getDataAnnotationFromDomElement(). Most logic moved into
  getDataFromDom(), some into createDataElement()
* Remove createAlien(), replaced with
  createDataElement( ve.dm.AlienNode, ... )
* Replace doAboutGrouping() (which wrapped about groups) with
  getAboutGroup() (which returns an array of the nodes in the group)
* Put in a hack so <meta>/<link> elements with an mw: property aren't
  alienated
* Remove about group wrapping behavior in favor of just outputting
  multiple nodes

ve.dm.AlienNode.js:
* For multi-element aliens, only choose inline if all elements are
  inline, not just the first one

ve.dm.example.js:
* Add html/0 stuff for meta nodes
* Fix test case to reflect new alien behavior

Change-Id: I40dcc27430f778bc00a44b91b7d824bfb2718be6
2013-02-22 15:21:40 -08:00

62 lines
1.6 KiB
JavaScript

/*!
* VisualEditor DataModel TableSelectionNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel table section 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.TableSectionNode = function VeDmTableSectionNode( children, element ) {
// Parent constructor
ve.dm.BranchNode.call( this, 'tableSection', children, element );
};
/* Inheritance */
ve.inheritClass( ve.dm.TableSectionNode, ve.dm.BranchNode );
/* Static Properties */
ve.dm.TableSectionNode.static.name = 'tableSection';
ve.dm.TableSectionNode.static.childNodeTypes = [ 'tableRow' ];
ve.dm.TableSectionNode.static.parentNodeTypes = [ 'table' ];
ve.dm.TableSectionNode.static.defaultAttributes = {
'style': 'body'
};
ve.dm.TableSectionNode.static.matchTagNames = [ 'thead', 'tbody', 'tfoot' ];
ve.dm.TableSectionNode.static.toDataElement = function ( domElements ) {
var styles = {
'thead': 'header',
'tbody': 'body',
'tfoot': 'footer'
},
style = styles[domElements[0].nodeName.toLowerCase()] || 'body';
return { 'type': 'tableSection', 'attributes': { 'style': style } };
};
ve.dm.TableSectionNode.static.toDomElements = function ( dataElement ) {
var tags = {
'header': 'thead',
'body': 'tbody',
'footer': 'tfoot'
},
tag = tags[dataElement.attributes && dataElement.attributes.style || 'body'];
return [ document.createElement( tag ) ];
};
/* Registration */
ve.dm.modelRegistry.register( ve.dm.TableSectionNode );