2013-04-25 00:47:17 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor DataModel MWBlockImageNode class.
|
|
|
|
*
|
2019-01-01 13:24:23 +00:00
|
|
|
* @copyright 2011-2019 VisualEditor Team and others; see AUTHORS.txt
|
2013-04-25 00:47:17 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DataModel MediaWiki image node.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.dm.BranchNode
|
2013-10-15 12:18:11 +00:00
|
|
|
* @mixins ve.dm.MWImageNode
|
2014-10-28 11:46:40 +00:00
|
|
|
* @mixins ve.dm.ClassAttributeNode
|
2014-06-07 03:17:26 +00:00
|
|
|
*
|
2013-04-25 00:47:17 +00:00
|
|
|
* @constructor
|
|
|
|
* @param {Object} [element] Reference to element in linear model
|
2014-06-07 03:17:26 +00:00
|
|
|
* @param {ve.dm.Node[]} [children]
|
2013-04-25 00:47:17 +00:00
|
|
|
*/
|
2014-06-07 03:17:26 +00:00
|
|
|
ve.dm.MWBlockImageNode = function VeDmMWBlockImageNode() {
|
2013-10-15 12:18:11 +00:00
|
|
|
// Parent constructor
|
2016-08-22 21:44:59 +00:00
|
|
|
ve.dm.MWBlockImageNode.super.apply( this, arguments );
|
2013-10-15 12:18:11 +00:00
|
|
|
|
|
|
|
// Mixin constructors
|
|
|
|
ve.dm.MWImageNode.call( this );
|
2014-10-28 11:46:40 +00:00
|
|
|
ve.dm.ClassAttributeNode.call( this );
|
2013-04-25 00:47:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2013-10-11 21:44:09 +00:00
|
|
|
OO.inheritClass( ve.dm.MWBlockImageNode, ve.dm.BranchNode );
|
2013-04-25 00:47:17 +00:00
|
|
|
|
2017-04-13 10:32:30 +00:00
|
|
|
// Need to mixin base class as well (T92540)
|
2013-10-11 21:44:09 +00:00
|
|
|
OO.mixinClass( ve.dm.MWBlockImageNode, ve.dm.GeneratedContentNode );
|
2013-10-15 12:18:11 +00:00
|
|
|
|
2013-10-11 21:44:09 +00:00
|
|
|
OO.mixinClass( ve.dm.MWBlockImageNode, ve.dm.MWImageNode );
|
2013-10-15 12:18:11 +00:00
|
|
|
|
2014-10-28 11:46:40 +00:00
|
|
|
OO.mixinClass( ve.dm.MWBlockImageNode, ve.dm.ClassAttributeNode );
|
|
|
|
|
2013-04-25 00:47:17 +00:00
|
|
|
/* Static Properties */
|
|
|
|
|
2013-05-28 11:31:41 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.name = 'mwBlockImage';
|
2013-04-25 00:47:17 +00:00
|
|
|
|
2015-02-18 10:29:14 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.preserveHtmlAttributes = function ( attribute ) {
|
2018-06-26 12:02:19 +00:00
|
|
|
var attributes = [ 'typeof', 'class', 'src', 'resource', 'width', 'height', 'href', 'rel', 'data-mw' ];
|
2015-03-10 12:50:42 +00:00
|
|
|
return attributes.indexOf( attribute ) === -1;
|
2013-06-07 23:04:45 +00:00
|
|
|
};
|
2013-05-20 23:54:03 +00:00
|
|
|
|
2013-04-25 00:47:17 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.handlesOwnChildren = true;
|
|
|
|
|
2015-03-20 17:54:13 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.ignoreChildren = true;
|
|
|
|
|
2013-05-28 11:31:41 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.childNodeTypes = [ 'mwImageCaption' ];
|
2013-04-25 00:47:17 +00:00
|
|
|
|
2013-06-19 21:08:45 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.matchTagNames = [ 'figure' ];
|
2013-09-19 18:03:04 +00:00
|
|
|
|
|
|
|
ve.dm.MWBlockImageNode.static.blacklistedAnnotationTypes = [ 'link' ];
|
2013-06-19 21:08:45 +00:00
|
|
|
|
2014-10-28 11:46:40 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.classAttributes = {
|
|
|
|
'mw-image-border': { borderImage: true },
|
|
|
|
'mw-halign-left': { align: 'left' },
|
|
|
|
'mw-halign-right': { align: 'right' },
|
|
|
|
'mw-halign-center': { align: 'center' },
|
|
|
|
'mw-halign-none': { align: 'none' },
|
|
|
|
'mw-default-size': { defaultSize: true }
|
|
|
|
};
|
|
|
|
|
2013-04-25 00:47:17 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.toDataElement = function ( domElements, converter ) {
|
2015-08-19 18:05:01 +00:00
|
|
|
var dataElement, newDimensions, attributes,
|
2018-08-01 02:35:49 +00:00
|
|
|
figure, imgWrapper, img, captionNode, caption,
|
2018-06-26 12:02:19 +00:00
|
|
|
classAttr, typeofAttrs, errorIndex, width, height, types,
|
|
|
|
mwDataJSON, mwData;
|
2015-01-26 17:46:55 +00:00
|
|
|
|
2015-08-19 18:05:01 +00:00
|
|
|
figure = domElements[ 0 ];
|
2018-06-05 11:41:09 +00:00
|
|
|
imgWrapper = figure.children[ 0 ]; // <a> or <span>
|
2018-08-02 19:25:08 +00:00
|
|
|
img = imgWrapper.children[ 0 ]; // <img>, <video> or <audio>
|
2018-08-01 02:35:49 +00:00
|
|
|
captionNode = figure.children[ 1 ]; // <figcaption> or undefined
|
2015-08-19 18:05:01 +00:00
|
|
|
classAttr = figure.getAttribute( 'class' );
|
2018-10-02 20:48:25 +00:00
|
|
|
typeofAttrs = figure.getAttribute( 'typeof' ).trim().split( /\s+/ );
|
2018-06-26 12:02:19 +00:00
|
|
|
mwDataJSON = figure.getAttribute( 'data-mw' );
|
|
|
|
mwData = mwDataJSON ? JSON.parse( mwDataJSON ) : {};
|
2015-08-19 18:05:01 +00:00
|
|
|
errorIndex = typeofAttrs.indexOf( 'mw:Error' );
|
2018-06-05 11:41:09 +00:00
|
|
|
width = img.getAttribute( 'width' );
|
|
|
|
height = img.getAttribute( 'height' );
|
2013-12-28 10:29:35 +00:00
|
|
|
|
2015-05-12 22:48:20 +00:00
|
|
|
if ( errorIndex !== -1 ) {
|
|
|
|
typeofAttrs.splice( errorIndex, 1 );
|
|
|
|
}
|
2017-04-27 18:08:35 +00:00
|
|
|
|
2017-04-29 11:36:17 +00:00
|
|
|
types = this.rdfaToTypes[ typeofAttrs[ 0 ] ];
|
2017-04-27 18:08:35 +00:00
|
|
|
|
2015-05-12 22:48:20 +00:00
|
|
|
attributes = {
|
2017-04-27 18:08:35 +00:00
|
|
|
mediaClass: types.mediaClass,
|
|
|
|
type: types.frameType,
|
2018-06-05 11:41:09 +00:00
|
|
|
src: img.getAttribute( 'src' ) || img.getAttribute( 'poster' ),
|
|
|
|
href: imgWrapper.getAttribute( 'href' ),
|
|
|
|
resource: img.getAttribute( 'resource' ),
|
|
|
|
width: width !== null && width !== '' ? +width : null,
|
|
|
|
height: height !== null && height !== '' ? +height : null,
|
|
|
|
alt: img.getAttribute( 'alt' ),
|
2018-06-26 12:02:19 +00:00
|
|
|
mw: mwData,
|
2018-06-05 11:41:09 +00:00
|
|
|
isError: errorIndex !== -1
|
2015-05-12 22:48:20 +00:00
|
|
|
};
|
|
|
|
|
2014-10-28 11:46:40 +00:00
|
|
|
this.setClassAttributes( attributes, classAttr );
|
2013-05-15 23:23:42 +00:00
|
|
|
|
2014-10-28 11:46:40 +00:00
|
|
|
attributes.align = attributes.align || 'default';
|
2013-05-14 23:39:13 +00:00
|
|
|
|
|
|
|
// Default-size
|
2014-10-28 11:46:40 +00:00
|
|
|
if ( attributes.defaultSize ) {
|
2014-02-27 17:39:19 +00:00
|
|
|
// Force wiki-default size for thumb and frameless
|
|
|
|
if (
|
|
|
|
attributes.type === 'thumb' ||
|
|
|
|
attributes.type === 'frameless'
|
|
|
|
) {
|
2015-12-09 16:47:13 +00:00
|
|
|
// We're going to change .width and .height, store the original
|
2014-03-06 01:44:01 +00:00
|
|
|
// values so we can restore them later.
|
|
|
|
// FIXME "just" don't modify .width and .height instead
|
|
|
|
attributes.originalWidth = attributes.width;
|
|
|
|
attributes.originalHeight = attributes.height;
|
2014-02-27 17:39:19 +00:00
|
|
|
// Parsoid hands us images with default Wikipedia dimensions
|
|
|
|
// rather than default MediaWiki configuration dimensions.
|
|
|
|
// We must force local wiki default in edit mode for default
|
|
|
|
// size images.
|
2018-08-02 19:25:08 +00:00
|
|
|
newDimensions = this.scaleToThumbnailSize( attributes );
|
2014-07-25 02:28:07 +00:00
|
|
|
if ( newDimensions ) {
|
|
|
|
attributes.width = newDimensions.width;
|
|
|
|
attributes.height = newDimensions.height;
|
2014-02-27 17:39:19 +00:00
|
|
|
}
|
2014-02-20 05:11:04 +00:00
|
|
|
}
|
2013-05-14 23:39:13 +00:00
|
|
|
}
|
|
|
|
|
2018-08-01 02:35:49 +00:00
|
|
|
if ( captionNode ) {
|
|
|
|
caption = converter.getDataFromDomClean( captionNode, { type: 'mwImageCaption' } );
|
2015-01-26 17:46:55 +00:00
|
|
|
} else {
|
2018-08-01 02:35:49 +00:00
|
|
|
caption = [
|
2014-08-22 20:50:48 +00:00
|
|
|
{ type: 'mwImageCaption' },
|
2018-08-01 02:35:49 +00:00
|
|
|
{ type: 'paragraph', internal: { generated: 'wrapper' } },
|
|
|
|
{ type: '/paragraph' },
|
|
|
|
{ type: '/mwImageCaption' }
|
2013-05-23 05:47:11 +00:00
|
|
|
];
|
2013-05-14 23:39:13 +00:00
|
|
|
}
|
2018-08-01 02:35:49 +00:00
|
|
|
|
|
|
|
dataElement = { type: this.name, attributes: attributes };
|
|
|
|
|
|
|
|
this.storeGeneratedContents( dataElement, dataElement.attributes.src, converter.getStore() );
|
|
|
|
|
|
|
|
return [ dataElement ]
|
|
|
|
.concat( caption )
|
|
|
|
.concat( { type: '/' + this.name } );
|
2013-04-25 00:47:17 +00:00
|
|
|
};
|
|
|
|
|
2013-06-05 21:34:53 +00:00
|
|
|
// TODO: At this moment node is not resizable but when it will be then adding defaultSize class
|
|
|
|
// should be more conditional.
|
2013-04-25 00:47:17 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.toDomElements = function ( data, doc, converter ) {
|
2018-08-02 19:25:08 +00:00
|
|
|
var width, height, srcAttr,
|
2015-08-19 17:33:02 +00:00
|
|
|
dataElement = data[ 0 ],
|
2017-04-27 18:08:35 +00:00
|
|
|
mediaClass = dataElement.attributes.mediaClass,
|
2013-04-25 00:47:17 +00:00
|
|
|
figure = doc.createElement( 'figure' ),
|
2018-06-05 11:41:09 +00:00
|
|
|
imgWrapper = doc.createElement( dataElement.attributes.href ? 'a' : 'span' ),
|
2018-08-02 19:25:08 +00:00
|
|
|
img = doc.createElement( this.typesToTags[ mediaClass ] ),
|
2013-06-24 19:34:15 +00:00
|
|
|
wrapper = doc.createElement( 'div' ),
|
2014-10-28 11:46:40 +00:00
|
|
|
classAttr = this.getClassAttrFromAttributes( dataElement.attributes ),
|
2014-03-06 01:44:01 +00:00
|
|
|
captionData = data.slice( 1, -1 );
|
2013-09-05 20:39:12 +00:00
|
|
|
|
2017-04-27 18:08:35 +00:00
|
|
|
// RDFa type
|
|
|
|
figure.setAttribute( 'typeof', this.getRdfa( mediaClass, dataElement.attributes.type ) );
|
2018-06-26 12:02:19 +00:00
|
|
|
if ( !ve.isEmptyObject( dataElement.attributes.mw ) ) {
|
|
|
|
figure.setAttribute( 'data-mw', JSON.stringify( dataElement.attributes.mw ) );
|
|
|
|
}
|
2013-06-05 21:34:53 +00:00
|
|
|
|
2014-10-28 11:46:40 +00:00
|
|
|
if ( classAttr ) {
|
|
|
|
figure.className = classAttr;
|
2013-06-05 21:34:53 +00:00
|
|
|
}
|
|
|
|
|
2018-06-05 11:41:09 +00:00
|
|
|
if ( dataElement.attributes.href ) {
|
2013-08-16 19:03:46 +00:00
|
|
|
imgWrapper.setAttribute( 'href', dataElement.attributes.href );
|
|
|
|
}
|
2014-03-06 01:44:01 +00:00
|
|
|
|
|
|
|
width = dataElement.attributes.width;
|
|
|
|
height = dataElement.attributes.height;
|
|
|
|
// If defaultSize is set, and was set on the way in, use the original width and height
|
|
|
|
// we got on the way in.
|
|
|
|
if ( dataElement.attributes.defaultSize ) {
|
|
|
|
if ( dataElement.attributes.originalWidth !== undefined ) {
|
|
|
|
width = dataElement.attributes.originalWidth;
|
|
|
|
}
|
|
|
|
if ( dataElement.attributes.originalHeight !== undefined ) {
|
|
|
|
height = dataElement.attributes.originalHeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-02 19:25:08 +00:00
|
|
|
srcAttr = this.typesToSrcAttrs[ mediaClass ];
|
|
|
|
if ( srcAttr ) {
|
|
|
|
img.setAttribute( srcAttr, dataElement.attributes.src );
|
|
|
|
}
|
2014-03-06 01:44:01 +00:00
|
|
|
img.setAttribute( 'width', width );
|
|
|
|
img.setAttribute( 'height', height );
|
2013-04-25 00:47:17 +00:00
|
|
|
img.setAttribute( 'resource', dataElement.attributes.resource );
|
2018-06-05 11:41:09 +00:00
|
|
|
if ( typeof dataElement.attributes.alt === 'string' ) {
|
2013-12-28 10:29:35 +00:00
|
|
|
img.setAttribute( 'alt', dataElement.attributes.alt );
|
|
|
|
}
|
2013-08-16 19:03:46 +00:00
|
|
|
figure.appendChild( imgWrapper );
|
|
|
|
imgWrapper.appendChild( img );
|
2013-04-25 00:47:17 +00:00
|
|
|
|
2013-06-25 00:22:03 +00:00
|
|
|
// If length of captionData is smaller or equal to 2 it means that there is no caption or that
|
|
|
|
// it is empty - in both cases we are going to skip appending <figcaption>.
|
|
|
|
if ( captionData.length > 2 ) {
|
|
|
|
converter.getDomSubtreeFromData( data.slice( 1, -1 ), wrapper );
|
|
|
|
while ( wrapper.firstChild ) {
|
|
|
|
figure.appendChild( wrapper.firstChild );
|
|
|
|
}
|
2013-04-25 00:47:17 +00:00
|
|
|
}
|
|
|
|
return [ figure ];
|
|
|
|
};
|
|
|
|
|
2013-06-18 22:58:10 +00:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the caption node of the image.
|
|
|
|
*
|
|
|
|
* @method
|
2015-08-19 18:09:34 +00:00
|
|
|
* @return {ve.dm.MWImageCaptionNode|null} Caption node, if present
|
2013-06-18 22:58:10 +00:00
|
|
|
*/
|
2013-12-06 02:34:44 +00:00
|
|
|
ve.dm.MWBlockImageNode.prototype.getCaptionNode = function () {
|
2015-08-19 17:33:02 +00:00
|
|
|
var node = this.children[ 0 ];
|
2013-06-18 22:58:10 +00:00
|
|
|
return node instanceof ve.dm.MWImageCaptionNode ? node : null;
|
|
|
|
};
|
|
|
|
|
2013-04-25 00:47:17 +00:00
|
|
|
/* Registration */
|
|
|
|
|
2015-05-16 17:02:33 +00:00
|
|
|
ve.dm.modelRegistry.unregister( ve.dm.BlockImageNode );
|
2013-06-06 20:49:29 +00:00
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWBlockImageNode );
|