mediawiki-extensions-Visual.../modules/ve2/ce/nodes/ve.ce.TableSectionNode.js
Trevor Parscal c614d3391b Add ve.dm.TableSectionNode and ve.ce.TableSectionNode
Yes, this breaks a bunch of tests, because tableRows are now required to be inside tableSections

Change-Id: Idb52d988df69173647c85f7602344650456e078e
2012-06-08 12:26:45 -07:00

64 lines
1.2 KiB
JavaScript

/**
* ContentEditable node for a table section.
*
* @class
* @constructor
* @extends {ve.ce.BranchNode}
* @param model {ve.dm.TableSectionNode} Model to observe
*/
ve.ce.TableSectionNode = function( model ) {
// Inheritance
ve.ce.BranchNode.call(
this, 'tableSection', model, ve.ce.BranchNode.getDomWrapper( model, 'style' )
);
// Events
this.model.addListenerMethod( this, 'update', 'onUpdate' );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.ce.NodeFactory
* @static
* @member
*/
ve.ce.TableSectionNode.rules = {
'canBeSplit': false
};
/**
* Mapping of list item style values and DOM wrapper element types.
*
* @static
* @member
*/
ve.ce.TableSectionNode.domWrapperElementTypes = {
'head': 'thead',
'body': 'tbody',
'foot': 'tfoot'
};
/* Methods */
/**
* Responds to model update events.
*
* If the style changed since last update the DOM wrapper will be replaced with an appropriate one.
*
* @method
*/
ve.ce.TableSectionNode.prototype.onUpdate = function() {
this.updateDomWrapper( 'style' );
};
/* Registration */
ve.ce.nodeFactory.register( 'tableSection', ve.ce.TableSectionNode );
/* Inheritance */
ve.extendClass( ve.ce.TableSectionNode, ve.ce.BranchNode );