2013-04-25 00:47:17 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor DataModel MWBlockImageNode class.
|
|
|
|
*
|
2014-01-05 12:05:05 +00:00
|
|
|
* @copyright 2011-2014 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-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
|
2014-06-07 03:17:26 +00:00
|
|
|
ve.dm.BranchNode.apply( this, arguments );
|
2013-10-15 12:18:11 +00:00
|
|
|
|
|
|
|
// Mixin constructors
|
|
|
|
ve.dm.MWImageNode.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
|
|
|
|
2013-10-15 12:18:11 +00:00
|
|
|
// Need to mixin base class as well
|
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
|
|
|
|
2013-04-25 00:47:17 +00:00
|
|
|
/* Static Properties */
|
|
|
|
|
2013-09-05 20:39:12 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.rdfaToType = {
|
|
|
|
'mw:Image/Thumb': 'thumb',
|
|
|
|
'mw:Image/Frame': 'frame',
|
|
|
|
'mw:Image/Frameless': 'frameless',
|
|
|
|
'mw:Image': 'none'
|
|
|
|
};
|
|
|
|
|
2013-05-28 11:31:41 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.name = 'mwBlockImage';
|
2013-04-25 00:47:17 +00:00
|
|
|
|
2013-06-07 23:04:45 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.storeHtmlAttributes = {
|
2014-08-22 20:50:48 +00:00
|
|
|
blacklist: [ 'typeof', 'class', 'src', 'resource', 'width', 'height', 'href', 'rel' ]
|
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;
|
|
|
|
|
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
|
|
|
|
2013-09-05 20:39:12 +00:00
|
|
|
ve.dm.MWBlockImageNode.static.getMatchRdfaTypes = function () {
|
2014-02-20 21:30:29 +00:00
|
|
|
return ve.getObjectKeys( this.rdfaToType );
|
2013-09-05 20:39:12 +00:00
|
|
|
};
|
2013-04-25 00:47:17 +00:00
|
|
|
|
|
|
|
ve.dm.MWBlockImageNode.static.toDataElement = function ( domElements, converter ) {
|
2013-10-15 12:18:11 +00:00
|
|
|
var dataElement,
|
|
|
|
$figure = $( domElements[0] ),
|
2013-08-15 19:36:49 +00:00
|
|
|
// images with link='' have a span wrapper instead
|
2013-08-16 19:03:46 +00:00
|
|
|
$imgWrapper = $figure.children( 'a, span' ).eq( 0 ),
|
|
|
|
$img = $imgWrapper.children( 'img' ).eq( 0 ),
|
2013-04-25 00:47:17 +00:00
|
|
|
$caption = $figure.children( 'figcaption' ).eq( 0 ),
|
2013-05-14 23:39:13 +00:00
|
|
|
typeofAttr = $figure.attr( 'typeof' ),
|
2013-05-15 23:23:42 +00:00
|
|
|
classes = $figure.attr( 'class' ),
|
2013-06-28 00:24:05 +00:00
|
|
|
recognizedClasses = [],
|
2013-05-14 23:39:13 +00:00
|
|
|
attributes = {
|
2013-09-05 20:39:12 +00:00
|
|
|
type: this.rdfaToType[typeofAttr],
|
2013-08-16 19:03:46 +00:00
|
|
|
href: $imgWrapper.attr( 'href' ) || '',
|
2013-05-14 23:39:13 +00:00
|
|
|
src: $img.attr( 'src' ),
|
2013-06-24 19:34:15 +00:00
|
|
|
resource: $img.attr( 'resource' ),
|
|
|
|
originalClasses: classes
|
2013-10-15 16:50:01 +00:00
|
|
|
},
|
|
|
|
width = $img.attr( 'width' ),
|
2013-12-28 10:29:35 +00:00
|
|
|
height = $img.attr( 'height' ),
|
2014-02-20 05:11:04 +00:00
|
|
|
altText = $img.attr( 'alt' ),
|
2014-03-06 04:43:27 +00:00
|
|
|
defaultThumbWidth = mw.config.get( 'wgVisualEditorConfig' )
|
2014-02-20 05:11:04 +00:00
|
|
|
.defaultUserOptions.defaultthumbsize;
|
2013-12-28 10:29:35 +00:00
|
|
|
|
|
|
|
if ( altText !== undefined ) {
|
|
|
|
attributes.alt = altText;
|
|
|
|
}
|
2013-10-15 16:50:01 +00:00
|
|
|
|
2013-05-15 23:23:42 +00:00
|
|
|
// Extract individual classes
|
2013-06-28 00:24:05 +00:00
|
|
|
classes = typeof classes === 'string' ? classes.trim().split( /\s+/ ) : [];
|
2013-05-15 23:23:42 +00:00
|
|
|
|
2014-02-27 17:39:19 +00:00
|
|
|
// Deal with border flag
|
|
|
|
if ( classes.indexOf( 'mw-image-border' ) !== -1 ) {
|
|
|
|
attributes.borderImage = true;
|
|
|
|
recognizedClasses.push( 'mw-image-border' );
|
|
|
|
}
|
|
|
|
|
2013-05-14 23:39:13 +00:00
|
|
|
// Horizontal alignment
|
|
|
|
if ( classes.indexOf( 'mw-halign-left' ) !== -1 ) {
|
|
|
|
attributes.align = 'left';
|
2013-06-28 00:24:05 +00:00
|
|
|
recognizedClasses.push( 'mw-halign-left' );
|
2013-05-14 23:39:13 +00:00
|
|
|
} else if ( classes.indexOf( 'mw-halign-right' ) !== -1 ) {
|
|
|
|
attributes.align = 'right';
|
2013-06-28 00:24:05 +00:00
|
|
|
recognizedClasses.push( 'mw-halign-right' );
|
2013-05-14 23:39:13 +00:00
|
|
|
} else if ( classes.indexOf( 'mw-halign-center' ) !== -1 ) {
|
|
|
|
attributes.align = 'center';
|
2013-06-28 00:24:05 +00:00
|
|
|
recognizedClasses.push( 'mw-halign-center' );
|
2013-05-14 23:39:13 +00:00
|
|
|
} else if ( classes.indexOf( 'mw-halign-none' ) !== -1 ) {
|
|
|
|
attributes.align = 'none';
|
2013-06-28 00:24:05 +00:00
|
|
|
recognizedClasses.push( 'mw-halign-none' );
|
2013-05-14 23:39:13 +00:00
|
|
|
} else {
|
2013-06-05 21:34:53 +00:00
|
|
|
attributes.align = 'default';
|
2013-05-14 23:39:13 +00:00
|
|
|
}
|
|
|
|
|
2014-02-20 05:11:04 +00:00
|
|
|
attributes.width = width !== undefined && width !== '' ? Number( width ) : null;
|
|
|
|
attributes.height = height !== undefined && height !== '' ? Number( height ) : null;
|
|
|
|
|
2013-05-14 23:39:13 +00:00
|
|
|
// Default-size
|
2013-06-06 20:49:29 +00:00
|
|
|
if ( classes.indexOf( 'mw-default-size' ) !== -1 ) {
|
2014-02-27 17:39:19 +00:00
|
|
|
// Flag as default size
|
2013-05-14 23:39:13 +00:00
|
|
|
attributes.defaultSize = true;
|
2013-06-28 00:24:05 +00:00
|
|
|
recognizedClasses.push( 'mw-default-size' );
|
2014-02-27 17:39:19 +00:00
|
|
|
// Force wiki-default size for thumb and frameless
|
|
|
|
if (
|
|
|
|
attributes.type === 'thumb' ||
|
|
|
|
attributes.type === 'frameless'
|
|
|
|
) {
|
2014-03-06 01:44:01 +00:00
|
|
|
// We're gonna change .width and .height, store the original
|
|
|
|
// 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.
|
2014-03-06 04:43:27 +00:00
|
|
|
// Only change the image size to default if the image isn't
|
|
|
|
// smaller than the default size
|
|
|
|
if (
|
|
|
|
attributes.width > defaultThumbWidth
|
|
|
|
) {
|
2014-02-27 17:39:19 +00:00
|
|
|
if ( attributes.height !== null ) {
|
2014-03-06 04:43:27 +00:00
|
|
|
attributes.height = Math.round( ( attributes.height / attributes.width ) * defaultThumbWidth );
|
2014-02-27 17:39:19 +00:00
|
|
|
}
|
2014-03-06 04:43:27 +00:00
|
|
|
attributes.width = defaultThumbWidth;
|
2014-02-27 17:39:19 +00:00
|
|
|
}
|
2014-02-20 05:11:04 +00:00
|
|
|
}
|
2013-05-14 23:39:13 +00:00
|
|
|
}
|
|
|
|
|
2013-06-28 00:24:05 +00:00
|
|
|
// Store unrecognized classes so we can restore them on the way out
|
2013-10-23 01:26:50 +00:00
|
|
|
attributes.unrecognizedClasses = OO.simpleArrayDifference( classes, recognizedClasses );
|
2013-06-28 00:24:05 +00:00
|
|
|
|
2014-08-22 20:50:48 +00:00
|
|
|
dataElement = { type: this.name, attributes: attributes };
|
2013-10-15 12:18:11 +00:00
|
|
|
|
|
|
|
this.storeGeneratedContents( dataElement, dataElement.attributes.src, converter.getStore() );
|
|
|
|
|
2013-05-14 23:39:13 +00:00
|
|
|
if ( $caption.length === 0 ) {
|
2013-05-23 05:47:11 +00:00
|
|
|
return [
|
2013-10-15 12:18:11 +00:00
|
|
|
dataElement,
|
2014-08-22 20:50:48 +00:00
|
|
|
{ type: 'mwImageCaption' },
|
|
|
|
{ type: '/mwImageCaption' },
|
|
|
|
{ type: '/' + this.name }
|
2013-05-23 05:47:11 +00:00
|
|
|
];
|
2013-05-14 23:39:13 +00:00
|
|
|
} else {
|
2013-10-15 12:18:11 +00:00
|
|
|
return [ dataElement ].
|
2014-08-22 20:50:48 +00:00
|
|
|
concat( converter.getDataFromDomClean( $caption[0], { type: 'mwImageCaption' } ) ).
|
|
|
|
concat( [ { type: '/' + this.name } ] );
|
2013-05-14 23:39:13 +00:00
|
|
|
}
|
2013-04-25 00:47:17 +00:00
|
|
|
};
|
|
|
|
|
2013-06-05 21:34:53 +00:00
|
|
|
// TODO: Consider using jQuery instead of pure JS.
|
|
|
|
// 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 ) {
|
2014-03-06 01:44:01 +00:00
|
|
|
var rdfa, width, height,
|
|
|
|
dataElement = data[0],
|
2013-04-25 00:47:17 +00:00
|
|
|
figure = doc.createElement( 'figure' ),
|
2013-08-16 19:03:46 +00:00
|
|
|
imgWrapper = doc.createElement( dataElement.attributes.href !== '' ? 'a' : 'span' ),
|
2013-04-25 00:47:17 +00:00
|
|
|
img = doc.createElement( 'img' ),
|
2013-06-24 19:34:15 +00:00
|
|
|
wrapper = doc.createElement( 'div' ),
|
|
|
|
classes = [],
|
2013-06-25 00:22:03 +00:00
|
|
|
originalClasses = dataElement.attributes.originalClasses,
|
2014-03-06 01:44:01 +00:00
|
|
|
captionData = data.slice( 1, -1 );
|
2013-09-05 20:39:12 +00:00
|
|
|
|
|
|
|
if ( !this.typeToRdfa ) {
|
|
|
|
this.typeToRdfa = {};
|
|
|
|
for ( rdfa in this.rdfaToType ) {
|
|
|
|
this.typeToRdfa[this.rdfaToType[rdfa]] = rdfa;
|
|
|
|
}
|
|
|
|
}
|
2013-06-05 21:34:53 +00:00
|
|
|
|
|
|
|
// Type
|
2013-09-05 20:39:12 +00:00
|
|
|
figure.setAttribute( 'typeof', this.typeToRdfa[dataElement.attributes.type] );
|
2014-02-27 17:39:19 +00:00
|
|
|
if ( dataElement.attributes.borderImage === true ) {
|
|
|
|
classes.push( 'mw-image-border' );
|
|
|
|
}
|
2013-06-05 21:34:53 +00:00
|
|
|
|
2014-02-20 05:11:04 +00:00
|
|
|
// Apply classes if size is default
|
2013-06-05 21:34:53 +00:00
|
|
|
if ( dataElement.attributes.defaultSize === true ) {
|
2013-06-24 19:34:15 +00:00
|
|
|
classes.push( 'mw-default-size' );
|
2013-06-05 21:34:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Horizontal alignment
|
|
|
|
switch ( dataElement.attributes.align ) {
|
|
|
|
case 'left':
|
2013-06-24 19:34:15 +00:00
|
|
|
classes.push( 'mw-halign-left' );
|
2013-06-05 21:34:53 +00:00
|
|
|
break;
|
|
|
|
case 'right':
|
2013-06-24 19:34:15 +00:00
|
|
|
classes.push( 'mw-halign-right' );
|
2013-06-05 21:34:53 +00:00
|
|
|
break;
|
|
|
|
case 'center':
|
2013-06-24 19:34:15 +00:00
|
|
|
classes.push( 'mw-halign-center' );
|
2013-06-05 21:34:53 +00:00
|
|
|
break;
|
|
|
|
case 'none':
|
2013-06-24 19:34:15 +00:00
|
|
|
classes.push( 'mw-halign-none' );
|
2013-06-05 21:34:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-06-28 00:24:05 +00:00
|
|
|
if ( dataElement.attributes.unrecognizedClasses ) {
|
2013-10-23 01:26:50 +00:00
|
|
|
classes = OO.simpleArrayUnion( classes, dataElement.attributes.unrecognizedClasses );
|
2013-06-28 00:24:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
originalClasses &&
|
|
|
|
ve.compare( originalClasses.trim().split( /\s+/ ).sort(), classes.sort() )
|
|
|
|
) {
|
2013-06-24 19:34:15 +00:00
|
|
|
figure.className = originalClasses;
|
|
|
|
} else if ( classes.length > 0 ) {
|
|
|
|
figure.className = classes.join( ' ' );
|
|
|
|
}
|
2013-08-16 19:03:46 +00:00
|
|
|
if ( dataElement.attributes.href !== '' ) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-25 00:47:17 +00:00
|
|
|
img.setAttribute( 'src', 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 );
|
2013-12-28 10:29:35 +00:00
|
|
|
if ( dataElement.attributes.alt !== undefined ) {
|
|
|
|
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
|
2013-07-31 22:53:29 +00:00
|
|
|
* @returns {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 () {
|
2013-06-18 22:58:10 +00:00
|
|
|
var node = this.children[0];
|
|
|
|
return node instanceof ve.dm.MWImageCaptionNode ? node : null;
|
|
|
|
};
|
|
|
|
|
2013-04-25 00:47:17 +00:00
|
|
|
/* Registration */
|
|
|
|
|
2013-06-06 20:49:29 +00:00
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWBlockImageNode );
|