mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
49963c75fd
This is cleaner than passing around the attributes separately, and it allows us to access the annotations in dm.LeafNode as well. Change-Id: Ie5b90988114835831cbe5cdccf63c7cd45719e31
70 lines
1.7 KiB
JavaScript
70 lines
1.7 KiB
JavaScript
/**
|
|
* VisualEditor data model DefinitionListItemNode class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel node for a definition list item.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.dm.BranchNode}
|
|
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
|
|
* @param {Object} [element] Reference to element in linear model
|
|
*/
|
|
ve.dm.DefinitionListItemNode = function VeDmDefinitionListItemNode( children, element ) {
|
|
// Parent constructor
|
|
ve.dm.BranchNode.call( this, 'definitionListItem', children, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.DefinitionListItemNode, ve.dm.BranchNode );
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* Node rules.
|
|
*
|
|
* @see ve.dm.NodeFactory
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.dm.DefinitionListItemNode.rules = {
|
|
'isWrapped': true,
|
|
'isContent': false,
|
|
'canContainContent': false,
|
|
'hasSignificantWhitespace': false,
|
|
'childNodeTypes': null,
|
|
'parentNodeTypes': ['definitionList']
|
|
};
|
|
|
|
/**
|
|
* Node converters.
|
|
*
|
|
* @see {ve.dm.Converter}
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.dm.DefinitionListItemNode.converters = {
|
|
'domElementTypes': ['dt', 'dd'],
|
|
'toDomElement': function ( type, element ) {
|
|
return element.attributes && ( {
|
|
'term': document.createElement( 'dt' ),
|
|
'definition': document.createElement( 'dd' )
|
|
} )[element.attributes.style];
|
|
},
|
|
'toDataElement': function ( tag ) {
|
|
return ( {
|
|
'dt': { 'type': 'definitionListItem', 'attributes': { 'style': 'term' } },
|
|
'dd': { 'type': 'definitionListItem', 'attributes': { 'style': 'definition' } }
|
|
} )[tag];
|
|
}
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.nodeFactory.register( 'definitionListItem', ve.dm.DefinitionListItemNode );
|