2012-04-20 23:34:47 +00:00
|
|
|
/**
|
2012-05-01 00:36:22 +00:00
|
|
|
* DataModel node for a list.
|
2012-05-14 22:05:09 +00:00
|
|
|
*
|
2012-04-20 23:34:47 +00:00
|
|
|
* @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 */
|
|
|
|
|
2012-04-30 22:47:54 +00:00
|
|
|
/**
|
2012-05-02 18:29:44 +00:00
|
|
|
* Node rules.
|
2012-05-14 22:05:09 +00:00
|
|
|
*
|
2012-04-30 22:47:54 +00:00
|
|
|
* @see ve.dm.NodeFactory
|
2012-05-02 18:29:44 +00:00
|
|
|
* @static
|
|
|
|
* @member
|
2012-04-30 22:47:54 +00:00
|
|
|
*/
|
2012-04-20 23:34:47 +00:00
|
|
|
ve.dm.ListNode.rules = {
|
2012-05-07 19:00:07 +00:00
|
|
|
'isWrapped': true,
|
2012-05-22 00:39:03 +00:00
|
|
|
'isContent': false,
|
|
|
|
'canContainContent': false,
|
2012-04-20 23:34:47 +00:00
|
|
|
'childNodeTypes': ['listItem'],
|
|
|
|
'parentNodeTypes': null
|
|
|
|
};
|
|
|
|
|
2012-05-31 23:50:16 +00:00
|
|
|
/**
|
|
|
|
* Node converters.
|
|
|
|
*
|
|
|
|
* @see {ve.dm.Converter}
|
|
|
|
* @static
|
|
|
|
* @member
|
|
|
|
*/
|
|
|
|
ve.dm.ListNode.converters = {
|
2012-06-07 00:47:27 +00:00
|
|
|
'domElementTypes': ['ul', 'ol'],
|
|
|
|
'toDomElement': function( type, element ) {
|
2012-06-01 00:02:50 +00:00
|
|
|
return element.attributes && ( {
|
2012-06-07 00:47:27 +00:00
|
|
|
'bullet': ve.dm.createDomElement( 'ul' ),
|
|
|
|
'number': ve.dm.createDomElement( 'ol' )
|
2012-06-01 00:02:50 +00:00
|
|
|
} )[element.attributes['style']];
|
2012-05-31 23:50:16 +00:00
|
|
|
},
|
2012-06-07 00:47:27 +00:00
|
|
|
'toDataElement': function( tag, element ) {
|
2012-06-01 00:02:50 +00:00
|
|
|
return ( {
|
|
|
|
'ul': { 'type': 'list', 'attributes': { 'style': 'bullet' } },
|
|
|
|
'ol': { 'type': 'list', 'attributes': { 'style': 'number' } }
|
|
|
|
} )[tag];
|
2012-05-31 23:50:16 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-04-20 23:34:47 +00:00
|
|
|
/* Registration */
|
|
|
|
|
2012-05-31 22:20:58 +00:00
|
|
|
ve.dm.nodeFactory.register( 'list', ve.dm.ListNode );
|
2012-04-20 23:34:47 +00:00
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.extendClass( ve.dm.ListNode, ve.dm.BranchNode );
|