2012-07-19 00:11:26 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor content editable TableCellNode class.
|
2012-07-19 21:25:16 +00:00
|
|
|
*
|
2012-07-19 00:11:26 +00:00
|
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2012-03-08 12:27:02 +00:00
|
|
|
/**
|
2012-06-20 01:20:28 +00:00
|
|
|
* ContentEditable node for a table cell.
|
|
|
|
*
|
2012-03-08 12:27:02 +00:00
|
|
|
* @class
|
|
|
|
* @constructor
|
|
|
|
* @extends {ve.ce.BranchNode}
|
2012-06-20 01:20:28 +00:00
|
|
|
* @param model {ve.dm.TableCellNode} Model to observe
|
2012-03-08 12:27:02 +00:00
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.ce.TableCellNode = function ( model ) {
|
2012-03-08 12:27:02 +00:00
|
|
|
// Inheritance
|
2012-06-20 01:20:28 +00:00
|
|
|
ve.ce.BranchNode.call(
|
|
|
|
this, 'tableCell', model, ve.ce.BranchNode.getDomWrapper( model, 'style' )
|
|
|
|
);
|
2012-03-08 12:27:02 +00:00
|
|
|
|
2012-06-20 01:20:28 +00:00
|
|
|
// Events
|
|
|
|
this.model.addListenerMethod( this, 'update', 'onUpdate' );
|
2012-03-08 12:27:02 +00:00
|
|
|
};
|
|
|
|
|
2012-06-20 01:20:28 +00:00
|
|
|
/* Static Members */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Node rules.
|
|
|
|
*
|
|
|
|
* @see ve.ce.NodeFactory
|
|
|
|
* @static
|
|
|
|
* @member
|
|
|
|
*/
|
|
|
|
ve.ce.TableCellNode.rules = {
|
|
|
|
'canBeSplit': false
|
|
|
|
};
|
2012-03-08 12:27:02 +00:00
|
|
|
|
2012-06-20 01:20:28 +00:00
|
|
|
/**
|
|
|
|
* Mapping of list item style values and DOM wrapper element types.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @member
|
|
|
|
*/
|
|
|
|
ve.ce.TableCellNode.domWrapperElementTypes = {
|
|
|
|
'data': 'td',
|
|
|
|
'header': 'th'
|
2012-03-08 12:27:02 +00:00
|
|
|
};
|
|
|
|
|
2012-06-20 01:20:28 +00:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Responds to model update events.
|
|
|
|
*
|
|
|
|
* If the style changed since last update the DOM wrapper will be replaced with an appropriate one.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.ce.TableCellNode.prototype.onUpdate = function () {
|
2012-06-20 01:20:28 +00:00
|
|
|
this.updateDomWrapper( 'style' );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ce.nodeFactory.register( 'tableCell', ve.ce.TableCellNode );
|
|
|
|
|
2012-03-08 12:27:02 +00:00
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.extendClass( ve.ce.TableCellNode, ve.ce.BranchNode );
|