mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.ListNode.js
Trevor Parscal 255ce870e2 Puttin' em white-spacers where they aught'a be
function() -> function ()
){ -> ) {

Change-Id: I20a85fcf79d7aec64f7f2559e84c0279550d4eea
2012-08-06 18:52:19 -07:00

69 lines
1.5 KiB
JavaScript

/**
* VisualEditor data model ListNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel node for a list.
*
* @class
* @constructor
* @extends {ve.dm.BranchNode}
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
* @param {Object} [attributes] Reference to map of attribute key/value pairs
*/
ve.dm.ListNode = function ( children, attributes ) {
// Inheritance
ve.dm.BranchNode.call( this, 'list', children, attributes );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.ListNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'childNodeTypes': ['listItem'],
'parentNodeTypes': null
};
/**
* Node converters.
*
* @see {ve.dm.Converter}
* @static
* @member
*/
ve.dm.ListNode.converters = {
'domElementTypes': ['ul', 'ol'],
'toDomElement': function ( type, element ) {
return element.attributes && ( {
'bullet': document.createElement( 'ul' ),
'number': document.createElement( 'ol' )
} )[element.attributes.style];
},
'toDataElement': function ( tag, element ) {
return ( {
'ul': { 'type': 'list', 'attributes': { 'style': 'bullet' } },
'ol': { 'type': 'list', 'attributes': { 'style': 'number' } }
} )[tag];
}
};
/* Registration */
ve.dm.nodeFactory.register( 'list', ve.dm.ListNode );
/* Inheritance */
ve.extendClass( ve.dm.ListNode, ve.dm.BranchNode );