2012-07-19 00:11:26 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor data model BranchNode 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
|
|
|
|
*/
|
|
|
|
|
2011-11-03 21:48:40 +00:00
|
|
|
/**
|
2012-06-20 01:20:28 +00:00
|
|
|
* DataModel node that can have branch or leaf children.
|
|
|
|
*
|
2011-11-03 21:48:40 +00:00
|
|
|
* @class
|
|
|
|
* @abstract
|
|
|
|
* @constructor
|
2012-02-06 23:50:56 +00:00
|
|
|
* @extends {ve.BranchNode}
|
|
|
|
* @extends {ve.dm.Node}
|
2011-11-03 21:48:40 +00:00
|
|
|
* @param {String} type Symbolic name of node type
|
2012-06-20 01:20:28 +00:00
|
|
|
* @param {ve.dm.Node[]} [children] Child nodes to attach
|
|
|
|
* @param {Object} [attributes] Reference to map of attribute key/value pairs
|
2011-11-03 21:48:40 +00:00
|
|
|
*/
|
2012-06-20 01:20:28 +00:00
|
|
|
ve.dm.BranchNode = function( type, children, attributes ) {
|
2011-11-03 21:48:40 +00:00
|
|
|
// Inheritance
|
2012-06-20 01:20:28 +00:00
|
|
|
ve.dm.Node.call( this, type, 0, attributes );
|
2012-02-06 23:50:56 +00:00
|
|
|
ve.BranchNode.call( this );
|
2011-11-03 21:48:40 +00:00
|
|
|
|
2012-06-20 01:20:28 +00:00
|
|
|
if ( ve.isArray( children ) && children.length ) {
|
|
|
|
this.splice.apply( this, [0, 0].concat( children ) );
|
2011-11-03 21:48:40 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
2012-06-20 01:20:28 +00:00
|
|
|
* Adds a node to the end of this node's children.
|
|
|
|
*
|
2011-11-03 21:48:40 +00:00
|
|
|
* @method
|
2012-06-20 01:20:28 +00:00
|
|
|
* @param {ve.dm.BranchNode} childModel Item to add
|
|
|
|
* @returns {Integer} New number of children
|
|
|
|
* @emits splice (index, 0, [childModel])
|
|
|
|
* @emits update
|
2011-11-03 21:48:40 +00:00
|
|
|
*/
|
2012-06-20 01:20:28 +00:00
|
|
|
ve.dm.BranchNode.prototype.push = function( childModel ) {
|
|
|
|
this.splice( this.children.length, 0, childModel );
|
|
|
|
return this.children.length;
|
2011-11-03 21:48:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2012-06-20 01:20:28 +00:00
|
|
|
* Removes a node from the end of this node's children
|
|
|
|
*
|
2011-11-03 21:48:40 +00:00
|
|
|
* @method
|
2012-06-20 01:20:28 +00:00
|
|
|
* @returns {ve.dm.BranchNode} Removed childModel
|
|
|
|
* @emits splice (index, 1, [])
|
2011-11-03 21:48:40 +00:00
|
|
|
* @emits update
|
|
|
|
*/
|
2012-06-20 01:20:28 +00:00
|
|
|
ve.dm.BranchNode.prototype.pop = function() {
|
|
|
|
if ( this.children.length ) {
|
|
|
|
var childModel = this.children[this.children.length - 1];
|
|
|
|
this.splice( this.children.length - 1, 1 );
|
|
|
|
return childModel;
|
2011-11-03 21:48:40 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2012-06-20 01:20:28 +00:00
|
|
|
* Adds a node to the beginning of this node's children.
|
|
|
|
*
|
2011-11-03 21:48:40 +00:00
|
|
|
* @method
|
2012-06-20 01:20:28 +00:00
|
|
|
* @param {ve.dm.BranchNode} childModel Item to add
|
|
|
|
* @returns {Integer} New number of children
|
|
|
|
* @emits splice (0, 0, [childModel])
|
2011-11-03 21:48:40 +00:00
|
|
|
* @emits update
|
|
|
|
*/
|
2012-06-20 01:20:28 +00:00
|
|
|
ve.dm.BranchNode.prototype.unshift = function( childModel ) {
|
|
|
|
this.splice( 0, 0, childModel );
|
|
|
|
return this.children.length;
|
2011-11-03 21:48:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2012-06-20 01:20:28 +00:00
|
|
|
* Removes a node from the beginning of this node's children
|
|
|
|
*
|
2011-11-03 21:48:40 +00:00
|
|
|
* @method
|
2012-06-20 01:20:28 +00:00
|
|
|
* @returns {ve.dm.BranchNode} Removed childModel
|
|
|
|
* @emits splice (0, 1, [])
|
2011-11-03 21:48:40 +00:00
|
|
|
* @emits update
|
|
|
|
*/
|
2012-06-20 01:20:28 +00:00
|
|
|
ve.dm.BranchNode.prototype.shift = function() {
|
|
|
|
if ( this.children.length ) {
|
|
|
|
var childModel = this.children[0];
|
|
|
|
this.splice( 0, 1 );
|
|
|
|
return childModel;
|
2011-11-03 21:48:40 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2012-06-20 01:20:28 +00:00
|
|
|
* Adds and removes nodes from this node's children.
|
|
|
|
*
|
2011-11-03 21:48:40 +00:00
|
|
|
* @method
|
2012-06-20 01:20:28 +00:00
|
|
|
* @param {Integer} index Index to remove and or insert nodes at
|
|
|
|
* @param {Integer} howmany Number of nodes to remove
|
|
|
|
* @param {ve.dm.BranchNode} [...] Variadic list of nodes to insert
|
|
|
|
* @returns {ve.dm.BranchNode[]} Removed nodes
|
|
|
|
* @emits splice (index, howmany, [...])
|
2011-11-03 21:48:40 +00:00
|
|
|
*/
|
2012-06-20 01:20:28 +00:00
|
|
|
ve.dm.BranchNode.prototype.splice = function( index, howmany ) {
|
|
|
|
var i,
|
|
|
|
length,
|
|
|
|
args = Array.prototype.slice.call( arguments, 0 ),
|
|
|
|
diff = 0;
|
|
|
|
if ( args.length >= 3 ) {
|
|
|
|
length = args.length;
|
|
|
|
for ( i = 2; i < length; i++ ) {
|
|
|
|
args[i].attach( this );
|
|
|
|
diff += args[i].getOuterLength();
|
|
|
|
}
|
2011-11-03 21:48:40 +00:00
|
|
|
}
|
2012-06-20 01:20:28 +00:00
|
|
|
var removals = this.children.splice.apply( this.children, args );
|
|
|
|
for ( i = 0, length = removals.length; i < length; i++ ) {
|
|
|
|
removals[i].detach();
|
|
|
|
diff -= removals[i].getOuterLength();
|
|
|
|
}
|
|
|
|
this.adjustLength( diff, true );
|
|
|
|
this.emit.apply( this, ['splice'].concat( args ) );
|
|
|
|
return removals;
|
2011-11-03 21:48:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2012-06-22 17:50:41 +00:00
|
|
|
ve.extendClass( ve.dm.BranchNode, ve.BranchNode, ve.dm.Node );
|