mediawiki-extensions-Visual.../modules/ve-mw/dm/nodes/ve.dm.MWGalleryCaptionNode.js
David Lynch e2cf367a95 Make RDF attribute splits more robust
Split on regexp for whitespace instead of a single space. Avoids multiple-
spaces causing `'foo  bar'` to become `['foo', '', 'bar']`.

See also: I1f467f51017e2deae30905163bf5e6b07048cecf

Change-Id: Id7a887a20fac99715b79045f01e861b4efe9f2c7
2018-10-02 16:11:58 -05:00

46 lines
1.3 KiB
JavaScript

/*!
* VisualEditor DataModel MWGalleryCaptionNode class.
*
* @copyright 2016 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel gallery caption node.
*
* @class
* @extends ve.dm.BranchNode
*
* @constructor
* @param {Object} [element] Reference to element in linear model
* @param {ve.dm.Node[]} [children]
*/
ve.dm.MWGalleryCaptionNode = function VeDmMWGalleryCaptionNode() {
// Parent constructor
ve.dm.MWGalleryCaptionNode.super.apply( this, arguments );
};
OO.inheritClass( ve.dm.MWGalleryCaptionNode, ve.dm.BranchNode );
ve.dm.MWGalleryCaptionNode.static.name = 'mwGalleryCaption';
ve.dm.MWGalleryCaptionNode.static.matchTagNames = [ 'li' ];
ve.dm.MWGalleryCaptionNode.static.matchFunction = function ( element ) {
var parentTypeof = ( element.parentNode && element.parentNode.getAttribute( 'typeof' ) ) || '';
return element.getAttribute( 'class' ) === 'gallerycaption' &&
parentTypeof.trim().split( /\s+/ ).indexOf( 'mw:Extension/gallery' ) !== -1;
};
ve.dm.MWGalleryCaptionNode.static.parentNodeTypes = [ 'mwGallery' ];
ve.dm.MWGalleryCaptionNode.static.toDomElements = function ( dataElement, doc ) {
var li = doc.createElement( 'li' );
li.classList.add( 'gallerycaption' );
return [ li ];
};
/* Registration */
ve.dm.modelRegistry.register( ve.dm.MWGalleryCaptionNode );