2012-04-30 22:42:36 +00:00
|
|
|
/**
|
2012-04-30 23:25:44 +00:00
|
|
|
* DataModel node factory.
|
2012-05-14 22:05:09 +00:00
|
|
|
*
|
2012-04-30 22:42:36 +00:00
|
|
|
* @class
|
|
|
|
* @extends {ve.NodeFactory}
|
|
|
|
* @constructor
|
|
|
|
*/
|
|
|
|
ve.dm.NodeFactory = function() {
|
|
|
|
// Inheritance
|
|
|
|
ve.NodeFactory.call( this );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list of allowed child node types for a given node.
|
2012-05-14 22:05:09 +00:00
|
|
|
*
|
2012-04-30 22:42:36 +00:00
|
|
|
* @param {String} type Node type
|
|
|
|
* @returns {String[]|null} List of node types allowed as children or null if any type is allowed
|
|
|
|
* @throws 'Unknown node type'
|
|
|
|
*/
|
|
|
|
ve.dm.NodeFactory.prototype.getChildNodeTypes = function( type ) {
|
|
|
|
if ( type in this.registry ) {
|
|
|
|
return this.registry[type].rules.childNodeTypes;
|
|
|
|
}
|
|
|
|
throw 'Unknown node type: ' + type;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list of allowed parent node types for a given node.
|
2012-05-14 22:05:09 +00:00
|
|
|
*
|
2012-04-30 22:42:36 +00:00
|
|
|
* @param {String} type Node type
|
|
|
|
* @returns {String[]|null} List of node types allowed as parents or null if any type is allowed
|
|
|
|
* @throws 'Unknown node type'
|
|
|
|
*/
|
|
|
|
ve.dm.NodeFactory.prototype.getParentNodeTypes = function( type ) {
|
|
|
|
if ( type in this.registry ) {
|
|
|
|
return this.registry[type].rules.parentNodeTypes;
|
|
|
|
}
|
|
|
|
throw 'Unknown node type: ' + type;
|
|
|
|
};
|
|
|
|
|
2012-05-10 04:11:09 +00:00
|
|
|
/**
|
|
|
|
* Checks if a given node type can have child nodes.
|
2012-05-14 22:05:09 +00:00
|
|
|
*
|
2012-05-10 04:11:09 +00:00
|
|
|
* @method
|
|
|
|
* @param {String} type Node type
|
|
|
|
* @returns {Boolean} The node can have children
|
|
|
|
* @throws 'Unknown node type'
|
|
|
|
*/
|
|
|
|
ve.dm.NodeFactory.prototype.canNodeHaveChildren = function( type ) {
|
|
|
|
if ( type in this.registry ) {
|
|
|
|
return this.registry[type].rules.canHaveChildren;
|
|
|
|
}
|
|
|
|
throw 'Unknown node type: ' + type;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a given node type can have grandchild nodes.
|
2012-05-14 22:05:09 +00:00
|
|
|
*
|
2012-05-10 04:11:09 +00:00
|
|
|
* @method
|
|
|
|
* @param {String} type Node type
|
|
|
|
* @returns {Boolean} The node can have grandchildren
|
|
|
|
* @throws 'Unknown node type'
|
|
|
|
*/
|
|
|
|
ve.dm.NodeFactory.prototype.canNodeHaveGrandchildren = function( type ) {
|
|
|
|
if ( type in this.registry ) {
|
|
|
|
return this.registry[type].rules.canHaveGrandchildren;
|
|
|
|
}
|
|
|
|
throw 'Unknown node type: ' + type;
|
|
|
|
};
|
|
|
|
|
2012-05-07 19:00:07 +00:00
|
|
|
/**
|
|
|
|
* Checks if a given node type has a wrapping element.
|
2012-05-14 22:05:09 +00:00
|
|
|
*
|
2012-05-07 19:00:07 +00:00
|
|
|
* @method
|
|
|
|
* @param {String} type Node type
|
|
|
|
* @returns {Boolean} Whether the node has a wrapping element
|
|
|
|
* @throws 'Unknown node type'
|
|
|
|
*/
|
|
|
|
ve.dm.NodeFactory.prototype.isNodeWrapped = function( type ) {
|
|
|
|
if ( type in this.registry ) {
|
|
|
|
return this.registry[type].rules.isWrapped;
|
|
|
|
}
|
|
|
|
throw 'Unknown node type: ' + type;
|
|
|
|
};
|
|
|
|
|
2012-04-30 22:42:36 +00:00
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.extendClass( ve.dm.NodeFactory, ve.NodeFactory );
|
|
|
|
|
|
|
|
/* Initialization */
|
|
|
|
|
|
|
|
ve.dm.factory = new ve.dm.NodeFactory();
|