mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
edcaaf9edc
Add a static.name property to ce nodes and make sure both ce and dm nodes always use the static.name property in constructors and registration calls. The result of this is that any given node type should now only appear once in the code as a string. Bug: 45701 Change-Id: Ibf31de16ab28ad58209c1443cd74f93dda278998
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel ListNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel list node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.BranchNode
|
|
* @constructor
|
|
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
|
|
* @param {Object} [element] Reference to element in linear model
|
|
*/
|
|
ve.dm.ListNode = function VeDmListNode( children, element ) {
|
|
// Parent constructor
|
|
ve.dm.BranchNode.call( this, children, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.ListNode, ve.dm.BranchNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.ListNode.static.name = 'list';
|
|
|
|
ve.dm.ListNode.static.childNodeTypes = [ 'listItem' ];
|
|
|
|
ve.dm.ListNode.static.defaultAttributes = {
|
|
'style': 'bullet'
|
|
};
|
|
|
|
ve.dm.ListNode.static.matchTagNames = [ 'ul', 'ol' ];
|
|
|
|
ve.dm.ListNode.static.toDataElement = function ( domElements ) {
|
|
var style = domElements[0].nodeName.toLowerCase() === 'ol' ? 'number' : 'bullet';
|
|
return { 'type': 'list', 'attributes': { 'style': style } };
|
|
};
|
|
|
|
ve.dm.ListNode.static.toDomElements = function ( dataElement ) {
|
|
var tag = dataElement.attributes && dataElement.attributes.style === 'number' ? 'ol' : 'ul';
|
|
return [ document.createElement( tag ) ];
|
|
};
|
|
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.ListNode );
|