mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.MetaBlockNode.js
Timo Tijhof a15b2f77f2 Fix constructor names; remove redundant hasOwnProperty.
Add some missing constructor names and rename the ones with a
lowercase 'v'.

I previously changed Object.create and others to using hasOwn,
but that turned out to be useless. The thought at the time was
to only use the native one if it really is a native one (and not
a polyfill from another script), however in then hasOwn is only
relevant on prototypes and when negated. For static members it
would be an own-property either way.

Follows-up:
* Id6783fcfc35a896db088ff424ff9faaabcaff716 (metanode)
* Iab763954fb8cf375900d7a9a92dec1c755d5407e (object-management)

Change-Id: Ia6ef597e5e5453277472dfc23f25d2878b68b7f6
2012-10-08 06:15:20 +02:00

70 lines
1.7 KiB
JavaScript

/**
* VisualEditor data model MetaBlockNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel node for an alien block node.
*
* @class
* @constructor
* @extends {ve.dm.BranchNode}
* @param {Integer} [length] Length of content data in document
* @param {Object} [attributes] Reference to map of attribute key/value pairs
* @param {Object} [internal] Reference to internal data object
*/
ve.dm.MetaBlockNode = function VeDmMetaBlockNode( length, attributes, internal ) {
// Parent constructor
ve.dm.BranchNode.call( this, 'metaBlock', 0, attributes, internal );
};
/* Inheritance */
ve.inheritClass( ve.dm.MetaBlockNode, ve.dm.BranchNode );
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.MetaBlockNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'childNodeTypes': [],
'parentNodeTypes': null
};
/**
* Node converters.
*
* @see {ve.dm.Converter}
* @static
* @member
*/
ve.dm.MetaBlockNode.converters = {
'domElementTypes': ['meta', 'link'],
'toDomElement': function ( type, element ) {
var isLink = element.attributes.style === 'link',
domElement = document.createElement( isLink ? 'link' : 'meta' );
if ( element.attributes.key !== null ) {
domElement.setAttribute( isLink ? 'rel' : 'property', element.attributes.key );
}
if ( element.attributes.value ) {
domElement.setAttribute( isLink ? 'href' : 'content', element.attributes.value );
}
return domElement;
},
'toDataElement': null // Special handling in ve.dm.Converter
};
/* Registration */
ve.dm.nodeFactory.register( 'metaBlock', ve.dm.MetaBlockNode );