mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
1f01100eb9
This causes the converter not to strip inner whitespace in them, and causes CE to suppress the whitespace mangling logic that is normally applied (↵ for newlines, ➞ for tabs, alternating s for spaces). Change-Id: I738a750c91a4ca4836c485e282865bb7525bf30a
70 lines
1.5 KiB
JavaScript
70 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 VeDmListNode( children, attributes ) {
|
|
// Parent constructor
|
|
ve.dm.BranchNode.call( this, 'list', children, attributes );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.ListNode, ve.dm.BranchNode );
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* Node rules.
|
|
*
|
|
* @see ve.dm.NodeFactory
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.dm.ListNode.rules = {
|
|
'isWrapped': true,
|
|
'isContent': false,
|
|
'canContainContent': false,
|
|
'hasSignificantWhitespace': 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 ) {
|
|
return ( {
|
|
'ul': { 'type': 'list', 'attributes': { 'style': 'bullet' } },
|
|
'ol': { 'type': 'list', 'attributes': { 'style': 'number' } }
|
|
} )[tag];
|
|
}
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.nodeFactory.register( 'list', ve.dm.ListNode );
|