2013-10-15 12:18:11 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor DataModel MWImageNode class.
|
|
|
|
*
|
2014-01-05 12:05:05 +00:00
|
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
2013-10-15 12:18:11 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
2014-04-10 00:26:48 +00:00
|
|
|
/*global mw */
|
2013-10-15 12:18:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* DataModel generated content node.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @abstract
|
|
|
|
* @extends ve.dm.GeneratedContentNode
|
2014-04-10 00:26:48 +00:00
|
|
|
* @mixins ve.dm.ResizableNode
|
|
|
|
*
|
2013-10-15 12:18:11 +00:00
|
|
|
* @constructor
|
|
|
|
*/
|
|
|
|
ve.dm.MWImageNode = function VeDmMWImageNode() {
|
|
|
|
// Parent constructor
|
|
|
|
ve.dm.GeneratedContentNode.call( this );
|
2014-04-10 00:26:48 +00:00
|
|
|
// Mixin constructor
|
|
|
|
ve.dm.ResizableNode.call( this );
|
|
|
|
|
|
|
|
this.scalablePromise = null;
|
|
|
|
|
|
|
|
// Use 'bitmap' as default media type until we can
|
|
|
|
// fetch the actual media type from the API
|
|
|
|
this.mediaType = 'BITMAP';
|
|
|
|
// Get wiki defaults
|
|
|
|
this.svgMaxSize = mw.config.get( 'wgVisualEditor' ).svgMaxSize;
|
|
|
|
this.defaultThumbSize = mw.config.get( 'wgVisualEditorConfig' ).defaultUserOptions.defaultthumbsize;
|
|
|
|
|
|
|
|
// Initialize
|
2014-06-04 18:20:37 +00:00
|
|
|
this.syncScalableToType( this.getAttribute( 'type' ) );
|
2014-04-10 00:26:48 +00:00
|
|
|
|
|
|
|
// Events
|
|
|
|
this.connect( this, { 'attributeChange': 'onAttributeChange' } );
|
2013-10-15 12:18:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2013-10-11 21:44:09 +00:00
|
|
|
OO.inheritClass( ve.dm.MWImageNode, ve.dm.GeneratedContentNode );
|
2013-10-15 12:18:11 +00:00
|
|
|
|
2014-04-10 00:26:48 +00:00
|
|
|
OO.mixinClass( ve.dm.MWImageNode, ve.dm.ResizableNode );
|
|
|
|
|
2014-01-26 15:02:07 +00:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
2014-06-04 18:20:37 +00:00
|
|
|
* Update image scalable properties according to the image type.
|
2014-01-26 15:02:07 +00:00
|
|
|
*
|
2014-04-10 00:26:48 +00:00
|
|
|
* @param {string} type The new image type
|
2014-01-26 15:02:07 +00:00
|
|
|
*/
|
2014-06-04 18:20:37 +00:00
|
|
|
ve.dm.MWImageNode.prototype.syncScalableToType = function ( type ) {
|
2014-04-10 00:26:48 +00:00
|
|
|
var originalDimensions, dimensions,
|
|
|
|
scalable = this.getScalable(),
|
|
|
|
width = this.getAttribute( 'width' ),
|
|
|
|
height = this.getAttribute( 'height' );
|
|
|
|
|
2014-03-25 16:01:04 +00:00
|
|
|
// If no type is given, assume we are updating per current type
|
|
|
|
type = type || this.getAttribute( 'type' );
|
|
|
|
|
2014-04-10 00:26:48 +00:00
|
|
|
originalDimensions = scalable.getOriginalDimensions();
|
|
|
|
|
|
|
|
// Deal with the different default sizes
|
|
|
|
if ( type === 'thumb' || type === 'frameless' ) {
|
2014-06-04 18:20:37 +00:00
|
|
|
// Set the default size to that in the wiki configuration if
|
|
|
|
// 1. The image width is not smaller than the default
|
|
|
|
// 2. If the image is an SVG drawing
|
|
|
|
if ( width >= this.defaultThumbSize || this.getMediaType() === 'DRAWING' ) {
|
2014-04-10 00:26:48 +00:00
|
|
|
dimensions = this.scalable.getDimensionsFromValue( {
|
|
|
|
'width': this.defaultThumbSize
|
|
|
|
} );
|
|
|
|
} else {
|
|
|
|
dimensions = this.scalable.getDimensionsFromValue( {
|
|
|
|
'width': width
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
scalable.setDefaultDimensions( dimensions );
|
|
|
|
} else {
|
|
|
|
if ( originalDimensions ) {
|
|
|
|
scalable.setDefaultDimensions( originalDimensions );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deal with maximum dimensions for images and drawings
|
2014-06-04 18:20:37 +00:00
|
|
|
if ( this.getMediaType() !== 'DRAWING' ) {
|
2014-04-10 00:26:48 +00:00
|
|
|
if ( originalDimensions ) {
|
|
|
|
scalable.setMaxDimensions( originalDimensions );
|
|
|
|
scalable.setEnforcedMax( true );
|
|
|
|
} else {
|
|
|
|
scalable.setEnforcedMax( false );
|
|
|
|
}
|
2014-01-26 15:02:07 +00:00
|
|
|
} else {
|
2014-04-10 00:26:48 +00:00
|
|
|
// Set max to svgMaxSize on the shortest side
|
|
|
|
if ( width < height ) {
|
|
|
|
dimensions = scalable.getDimensionsFromValue( {
|
|
|
|
'width': this.svgMaxSize
|
2014-01-27 20:19:13 +00:00
|
|
|
} );
|
2014-04-10 00:26:48 +00:00
|
|
|
} else {
|
|
|
|
dimensions = scalable.getDimensionsFromValue( {
|
|
|
|
'height': this.svgMaxSize
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
scalable.setMaxDimensions( dimensions );
|
|
|
|
scalable.setEnforcedMax( true );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Respond to attribute change.
|
|
|
|
* Update the rendering of the 'align', src', 'width' and 'height' attributes
|
|
|
|
* when they change in the model.
|
|
|
|
*
|
|
|
|
* @method
|
|
|
|
* @param {string} key Attribute key
|
|
|
|
* @param {string} from Old value
|
|
|
|
* @param {string} to New value
|
|
|
|
*/
|
|
|
|
ve.dm.MWImageNode.prototype.onAttributeChange = function ( key, from, to ) {
|
|
|
|
if ( key === 'type' ) {
|
2014-06-04 18:20:37 +00:00
|
|
|
this.syncScalableToType( to );
|
2014-01-26 15:02:07 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the normalised filename of the image
|
|
|
|
*
|
|
|
|
* @returns {string} Filename
|
|
|
|
*/
|
|
|
|
ve.dm.MWImageNode.prototype.getFilename = function () {
|
2014-05-28 19:21:06 +00:00
|
|
|
// Strip ./ stuff and decode URI encoding
|
|
|
|
var resource = this.getAttribute( 'resource' ),
|
|
|
|
filename = resource.replace( /^(.+\/)*/, '' );
|
|
|
|
|
|
|
|
// Protect against decodeURIComponent() throwing exceptions
|
|
|
|
try {
|
|
|
|
filename = decodeURIComponent( filename );
|
|
|
|
} catch ( e ) {
|
|
|
|
ve.log( 'URI decoding exception', e );
|
|
|
|
}
|
|
|
|
return filename;
|
2014-01-26 15:02:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the store hash for the original dimensions of the image
|
|
|
|
*
|
|
|
|
* @returns {string} Store hash
|
|
|
|
*/
|
|
|
|
ve.dm.MWImageNode.prototype.getSizeHash = function () {
|
|
|
|
return 'MWImageOriginalSize:' + this.getFilename();
|
|
|
|
};
|
|
|
|
|
2013-10-15 12:18:11 +00:00
|
|
|
/* Static methods */
|
|
|
|
|
|
|
|
ve.dm.MWImageNode.static.getHashObject = function ( dataElement ) {
|
|
|
|
return {
|
|
|
|
'type': dataElement.type,
|
|
|
|
'resource': dataElement.attributes.resource,
|
|
|
|
'width': dataElement.attributes.width,
|
|
|
|
'height': dataElement.attributes.height
|
|
|
|
};
|
|
|
|
};
|
2014-04-10 00:26:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.dm.MWImageNode.prototype.getScalable = function () {
|
|
|
|
this.getScalablePromise();
|
|
|
|
// Parent method
|
|
|
|
return ve.dm.ResizableNode.prototype.getScalable.call( this );
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the scalable promise which fetches original dimensions from the API
|
|
|
|
*
|
|
|
|
* @returns {jQuery.Promise} Promise which resolves setOriginalDimensions has been called (if required)
|
|
|
|
*/
|
|
|
|
ve.dm.MWImageNode.prototype.getScalablePromise = function () {
|
|
|
|
// On the first call set off an async call to update the scalable's
|
|
|
|
// original dimensions from the API.
|
|
|
|
if ( !this.scalablePromise ) {
|
2014-05-23 09:57:58 +00:00
|
|
|
this.scalablePromise = ve.init.target.constructor.static.apiRequest(
|
2014-05-14 22:54:36 +00:00
|
|
|
{
|
|
|
|
'action': 'query',
|
|
|
|
'prop': 'imageinfo',
|
|
|
|
'indexpageids': '1',
|
|
|
|
'iiprop': 'size|mediatype',
|
|
|
|
'titles': this.getFilename()
|
|
|
|
},
|
|
|
|
{ 'type': 'POST' }
|
|
|
|
).then( ve.bind( function ( response ) {
|
|
|
|
var page = response.query && response.query.pages[response.query.pageids[0]],
|
|
|
|
info = page && page.imageinfo && page.imageinfo[0];
|
|
|
|
|
|
|
|
if ( info ) {
|
|
|
|
this.getScalable().setOriginalDimensions( {
|
|
|
|
'width': info.width,
|
|
|
|
'height': info.height
|
|
|
|
} );
|
|
|
|
// Update media type
|
|
|
|
this.mediaType = info.mediatype;
|
2014-03-25 16:01:04 +00:00
|
|
|
// Update according to type
|
2014-06-04 18:20:37 +00:00
|
|
|
this.syncScalableToType();
|
2014-05-14 22:54:36 +00:00
|
|
|
}
|
|
|
|
}, this ) ).promise();
|
2014-04-10 00:26:48 +00:00
|
|
|
}
|
|
|
|
return this.scalablePromise;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.dm.MWImageNode.prototype.createScalable = function () {
|
|
|
|
return new ve.dm.Scalable( {
|
|
|
|
'currentDimensions': {
|
|
|
|
'width': this.getAttribute( 'width' ),
|
|
|
|
'height': this.getAttribute( 'height' )
|
|
|
|
},
|
|
|
|
'minDimensions': {
|
|
|
|
'width': 1,
|
|
|
|
'height': 1
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
};
|
2014-06-04 18:20:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get symbolic name of media type.
|
|
|
|
*
|
|
|
|
* Example values: "BITMAP" for JPEG or PNG images; "DRAWING" for SVG graphics
|
|
|
|
*
|
|
|
|
* @return {string|undefined} Symbolic media type name, or undefined if empty
|
|
|
|
*/
|
|
|
|
ve.dm.MWImageNode.prototype.getMediaType = function () {
|
|
|
|
return this.mediaType;
|
|
|
|
};
|