mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 16:44:51 +00:00
97bc12a421
Make sure that each API request per file is delivered once. If the file appears more than once on the page, the API request for scalable details will be sent once and cached so there aren't multiple API requests per image. Change-Id: I68507a8ceb31b77dbf33d1074939ce6219cf076e
229 lines
6 KiB
JavaScript
229 lines
6 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel MWImageNode class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
/*global mw */
|
|
|
|
/**
|
|
* DataModel generated content node.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @extends ve.dm.GeneratedContentNode
|
|
* @mixins ve.dm.ResizableNode
|
|
*
|
|
* @constructor
|
|
* @param {number} [length] Length of content data in document; ignored and overridden to 0
|
|
* @param {Object} [element] Reference to element in linear model
|
|
*/
|
|
ve.dm.MWImageNode = function VeDmMWImageNode() {
|
|
// Parent constructor
|
|
ve.dm.GeneratedContentNode.call( this );
|
|
// 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
|
|
this.updateType( this.getAttribute( 'type' ) );
|
|
|
|
// Events
|
|
this.connect( this, { 'attributeChange': 'onAttributeChange' } );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.dm.MWImageNode, ve.dm.GeneratedContentNode );
|
|
|
|
OO.mixinClass( ve.dm.MWImageNode, ve.dm.ResizableNode );
|
|
|
|
/* Static Properties */
|
|
|
|
/**
|
|
* Cache the scalable promises to make sure that we only make one
|
|
* API request per image.
|
|
*
|
|
* @property {Object}
|
|
*/
|
|
ve.dm.MWImageNode.static.promiseCache = {};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Update image properties according to the image type.
|
|
*
|
|
* @param {string} type The new image type
|
|
*/
|
|
ve.dm.MWImageNode.prototype.updateType = function ( type ) {
|
|
var originalDimensions, dimensions,
|
|
scalable = this.getScalable(),
|
|
width = this.getAttribute( 'width' ),
|
|
height = this.getAttribute( 'height' );
|
|
|
|
originalDimensions = scalable.getOriginalDimensions();
|
|
|
|
// Deal with the different default sizes
|
|
if ( type === 'thumb' || type === 'frameless' ) {
|
|
if ( width >= this.defaultThumbSize ) {
|
|
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
|
|
if ( this.mediaType !== 'DRAWING' ) {
|
|
if ( originalDimensions ) {
|
|
scalable.setMaxDimensions( originalDimensions );
|
|
scalable.setEnforcedMax( true );
|
|
} else {
|
|
scalable.setEnforcedMax( false );
|
|
}
|
|
} else {
|
|
// Set max to svgMaxSize on the shortest side
|
|
if ( width < height ) {
|
|
dimensions = scalable.getDimensionsFromValue( {
|
|
'width': this.svgMaxSize
|
|
} );
|
|
} 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' ) {
|
|
this.updateType( to );
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Get the normalised filename of the image
|
|
*
|
|
* @returns {string} Filename
|
|
*/
|
|
ve.dm.MWImageNode.prototype.getFilename = function () {
|
|
// Strip the raw filename up to the 'File:' namespage
|
|
var resource = this.getAttribute( 'resource' );
|
|
return resource.substring( resource.indexOf( 'File:' ) );
|
|
};
|
|
|
|
/**
|
|
* 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();
|
|
};
|
|
|
|
/* 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
|
|
};
|
|
};
|
|
|
|
/**
|
|
* @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 ) {
|
|
// Check if the promise is already cached
|
|
if ( !ve.dm.MWImageNode.static.promiseCache[this.getFilename()] ) {
|
|
this.scalablePromise = ve.init.mw.Target.static.apiRequest(
|
|
{
|
|
'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;
|
|
}
|
|
}, this ) ).promise();
|
|
// Cache the promise
|
|
ve.dm.MWImageNode.static.promiseCache[this.getFilename()] = this.scalablePromise;
|
|
} else {
|
|
// If there is a promise for this image in cache, retrieve it
|
|
this.scalablePromise = ve.dm.MWImageNode.static.promiseCache[this.getFilename()];
|
|
}
|
|
}
|
|
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
|
|
}
|
|
} );
|
|
};
|