2014-02-04 04:37:22 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the MediaWiki extension MultimediaViewer.
|
|
|
|
*
|
|
|
|
* MultimediaViewer is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MultimediaViewer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
( function ( mw, $ ) {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @class mw.mmv.provider.Image
|
|
|
|
* Loads an image.
|
|
|
|
*/
|
|
|
|
function Image() {
|
2014-02-13 09:52:40 +00:00
|
|
|
/**
|
|
|
|
* @property {mw.mmv.performance}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this.performance = new mw.mmv.performance();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AJAX call cache.
|
|
|
|
* @property {Object.<string, jQuery.Promise>} cache
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
this.cache = {};
|
2014-02-04 04:37:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method
|
|
|
|
* Loads an image and returns it.
|
|
|
|
* @param {string} url
|
2014-02-03 23:20:54 +00:00
|
|
|
* @return {jQuery.Promise.<HTMLImageElement>} a promise which resolves to the image object
|
2014-02-04 04:37:22 +00:00
|
|
|
*/
|
|
|
|
Image.prototype.get = function( url ) {
|
|
|
|
var img = new window.Image(),
|
2014-02-13 09:52:40 +00:00
|
|
|
cacheKey = url,
|
|
|
|
deferred;
|
2014-02-04 04:37:22 +00:00
|
|
|
|
2014-02-13 09:52:40 +00:00
|
|
|
if ( !this.cache[cacheKey] ) {
|
|
|
|
deferred = $.Deferred();
|
|
|
|
this.cache[cacheKey] = deferred.promise();
|
|
|
|
this.performance.record( 'image', url ).then( function() {
|
|
|
|
img.src = url;
|
|
|
|
img.onload = function() {
|
|
|
|
deferred.resolve( img );
|
|
|
|
};
|
|
|
|
img.onerror = function() {
|
|
|
|
deferred.reject( 'could not load image from ' + url );
|
|
|
|
};
|
|
|
|
} );
|
|
|
|
}
|
2014-02-04 04:37:22 +00:00
|
|
|
|
2014-02-13 09:52:40 +00:00
|
|
|
return this.cache[cacheKey];
|
2014-02-04 04:37:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
mw.mmv.provider.Image = Image;
|
|
|
|
}( mediaWiki, jQuery ) );
|