mediawiki-extensions-Visual.../modules/ve-mw/dm/nodes/ve.dm.MWGalleryCaptionNode.js
Thalia 12cc56400b Make gallery dialog work with native gallery implementation
Updates the model and re-renders the gallery.

Bug: T150621
Bug: T149602
Bug: T149596
Change-Id: I1e93c3af02eeeff1fcdaa5549cccc61ea755ee04
2018-03-19 23:55:17 +01: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.split( ' ' ).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 );