mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.TableCellNode.js
Ed Sanders edcaaf9edc Use static.name once for ce and dm nodes
Add a static.name property to ce nodes and make sure both ce
and dm nodes always use the static.name property in constructors
and registration calls.

The result of this is that any given node type should now only
appear once in the code as a string.

Bug: 45701
Change-Id: Ibf31de16ab28ad58209c1443cd74f93dda278998
2013-03-07 17:19:39 -08:00

61 lines
1.2 KiB
JavaScript

/*!
* VisualEditor ContentEditable TableCellNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable table cell node.
*
* @class
* @extends ve.ce.BranchNode
* @constructor
* @param {ve.dm.TableCellNode} model Model to observe
*/
ve.ce.TableCellNode = function VeCeTableCellNode( model ) {
// Parent constructor
ve.ce.BranchNode.call(
this, model, ve.ce.BranchNode.getDomWrapper( model, 'style' )
);
// Events
this.model.addListenerMethod( this, 'update', 'onUpdate' );
};
/* Inheritance */
ve.inheritClass( ve.ce.TableCellNode, ve.ce.BranchNode );
/* Static Properties */
ve.ce.TableCellNode.static.name = 'tableCell';
/**
* Mapping of list item style values and DOM wrapper element types.
*
* @static
* @property
*/
ve.ce.TableCellNode.domWrapperElementTypes = {
'data': 'td',
'header': 'th'
};
/* Methods */
/**
* Handle model update events.
*
* If the style changed since last update the DOM wrapper will be replaced with an appropriate one.
*
* @method
*/
ve.ce.TableCellNode.prototype.onUpdate = function () {
this.updateDomWrapper( 'style' );
};
/* Registration */
ve.ce.nodeFactory.register( ve.ce.TableCellNode );