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
61 lines
1.3 KiB
JavaScript
61 lines
1.3 KiB
JavaScript
/*!
|
|
* VisualEditor ContentEditable DefinitionListItemNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* ContentEditable definition list item node.
|
|
*
|
|
* @class
|
|
* @extends ve.ce.BranchNode
|
|
* @constructor
|
|
* @param {ve.dm.DefinitionListItemNode} model Model to observe
|
|
*/
|
|
ve.ce.DefinitionListItemNode = function VeCeDefinitionListItemNode( model ) {
|
|
// Parent constructor
|
|
ve.ce.BranchNode.call(
|
|
this, model, ve.ce.BranchNode.getDomWrapper( model, 'style' )
|
|
);
|
|
|
|
// Events
|
|
this.model.addListenerMethod( this, 'update', 'onUpdate' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ce.DefinitionListItemNode, ve.ce.BranchNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ce.DefinitionListItemNode.static.name = 'definitionListItem';
|
|
|
|
/**
|
|
* Mapping of list item style values and DOM wrapper element types.
|
|
*
|
|
* @static
|
|
* @property
|
|
*/
|
|
ve.ce.DefinitionListItemNode.domWrapperElementTypes = {
|
|
'definition': 'dd',
|
|
'term': 'dt'
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Handle model update events.
|
|
*
|
|
* If the style changed since last update the DOM wrapper will be replaced with an appropriate one.
|
|
*
|
|
* @method
|
|
*/
|
|
ve.ce.DefinitionListItemNode.prototype.onUpdate = function () {
|
|
this.updateDomWrapper( 'style' );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.nodeFactory.register( ve.ce.DefinitionListItemNode );
|