2015-02-20 04:10:52 +00:00
/ * *
2015-03-23 20:35:08 +00:00
* Copyright ( c ) 2015 - present , Facebook , Inc .
*
2018-02-17 02:24:55 +00:00
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree .
2015-02-20 04:10:52 +00:00
*
2015-03-26 17:06:50 +00:00
* @ flow
2018-01-15 03:32:26 +00:00
* @ format
2015-02-20 04:10:52 +00:00
* /
'use strict' ;
2018-03-14 21:04:19 +00:00
const ImageProps = require ( 'ImageProps' ) ;
2016-06-07 12:29:13 +00:00
const NativeModules = require ( 'NativeModules' ) ;
const React = require ( 'React' ) ;
2018-06-20 04:28:04 +00:00
const ReactNative = require ( 'ReactNative' ) ;
2016-06-07 12:29:13 +00:00
const StyleSheet = require ( 'StyleSheet' ) ;
const flattenStyle = require ( 'flattenStyle' ) ;
const requireNativeComponent = require ( 'requireNativeComponent' ) ;
const resolveAssetSource = require ( 'resolveAssetSource' ) ;
const ImageViewManager = NativeModules . ImageViewManager ;
Added getImageSize method
Summary:
public
This diff adds a `getSize()` method to `Image` to retrieve the width and height of an image prior to displaying it. This is useful when working with images from uncontrolled sources, and has been a much-requested feature.
In order to retrieve the image dimensions, the image may first need to be loaded or downloaded, after which it will be cached. This means that in principle you could use this method to preload images, however it is not optimized for that purpose, and may in future be implemented in a way that does not fully load/download the image data.
A fully supported way to preload images will be provided in a future diff.
The API (separate success and failure callbacks) is far from ideal, but until we agree on a unified standard, this was the most conventional way I could think of to implement it. If it returned a promise or something similar, it would be unique among all such APIS in the framework.
Please note that this has been a long time coming, in part due to much bikeshedding about what the API should look like, so while it's not unlikely that the API may change in future, I think having *some* way to do this is better than waiting until we can define the "perfect" way.
Reviewed By: vjeux
Differential Revision: D2797365
fb-gh-sync-id: 11eb1b8547773b1f8be0bc55ddf6dfedebf7fc0a
2016-01-01 02:50:26 +00:00
2018-06-01 19:37:22 +00:00
const RCTImageView = requireNativeComponent ( 'RCTImageView' ) ;
2018-06-20 04:28:04 +00:00
import type { ImageProps as ImagePropsType } from 'ImageProps' ;
function getSize (
uri : string ,
success : ( width : number , height : number ) => void ,
failure ? : ( error : any ) => void ,
) {
ImageViewManager . getSize (
uri ,
success ,
failure ||
function ( ) {
console . warn ( 'Failed to get size for image: ' + uri ) ;
} ,
) ;
}
function prefetch ( url : string ) {
return ImageViewManager . prefetchImage ( url ) ;
}
declare class ImageComponentType extends ReactNative . NativeComponent <
ImagePropsType ,
> {
static getSize : typeof getSize ;
static prefetch : typeof prefetch ;
static resolveAssetSource : typeof resolveAssetSource ;
static propTypes : typeof ImageProps ;
}
2015-02-20 04:10:52 +00:00
/ * *
2015-04-27 20:55:01 +00:00
* A React component for displaying different types of images ,
2015-02-20 04:10:52 +00:00
* including network images , static resources , temporary local images , and
2015-03-09 16:28:51 +00:00
* images from local disk , such as the camera roll .
2015-02-20 04:10:52 +00:00
*
2018-01-30 00:10:49 +00:00
* See https : //facebook.github.io/react-native/docs/image.html
2015-02-20 04:10:52 +00:00
* /
2018-06-20 04:28:04 +00:00
let Image = (
props : ImagePropsType ,
forwardedRef : ? React . Ref < 'RCTImageView' > ,
) => {
const source = resolveAssetSource ( props . source ) || {
uri : undefined ,
width : undefined ,
height : undefined ,
} ;
let sources ;
let style ;
if ( Array . isArray ( source ) ) {
style = flattenStyle ( [ styles . base , props . style ] ) || { } ;
sources = source ;
} else {
const { width , height , uri } = source ;
style = flattenStyle ( [ { width , height } , styles . base , props . style ] ) || { } ;
sources = [ source ] ;
if ( uri === '' ) {
console . warn ( 'source.uri should not be an empty string' ) ;
}
}
2015-02-20 04:10:52 +00:00
2018-06-20 06:02:50 +00:00
const resizeMode = props . resizeMode || style . resizeMode ;
const tintColor = style . tintColor ;
2015-02-20 04:10:52 +00:00
2018-06-20 04:28:04 +00:00
if ( props . src != null ) {
console . warn (
'The <Image> component requires a `source` property rather than `src`.' ,
) ;
}
2015-02-20 04:10:52 +00:00
2018-06-20 04:28:04 +00:00
if ( props . children != null ) {
throw new Error (
'The <Image> component cannot contain children. If you want to render content on top of the image, consider using the <ImageBackground> component or absolute positioning.' ,
) ;
}
return (
< RCTImageView
{ ... props }
ref = { forwardedRef }
style = { style }
resizeMode = { resizeMode }
tintColor = { tintColor }
source = { sources }
/ >
) ;
} ;
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
Image = React . forwardRef ( Image ) ;
2016-06-06 20:20:09 +00:00
2018-06-20 04:28:04 +00:00
/ * *
* Retrieve the width and height ( in pixels ) of an image prior to displaying it .
*
* See https : //facebook.github.io/react-native/docs/image.html#getsize
* /
Image . getSize = getSize ;
2016-07-28 20:58:50 +00:00
2018-06-20 04:28:04 +00:00
/ * *
* Prefetches a remote image for later use by downloading it to the disk
* cache .
*
* See https : //facebook.github.io/react-native/docs/image.html#prefetch
* /
Image . prefetch = prefetch ;
2016-03-04 15:31:38 +00:00
2018-06-20 04:28:04 +00:00
/ * *
* Resolves an asset reference into an object .
*
* See https : //facebook.github.io/react-native/docs/image.html#resolveassetsource
* /
Image . resolveAssetSource = resolveAssetSource ;
2017-09-26 04:55:56 +00:00
2018-06-20 04:28:04 +00:00
Image . propTypes = ImageProps ;
2015-02-20 04:10:52 +00:00
2016-06-07 12:29:13 +00:00
const styles = StyleSheet . create ( {
2015-02-20 04:10:52 +00:00
base : {
overflow : 'hidden' ,
} ,
} ) ;
2018-06-20 04:28:04 +00:00
module . exports = ( Image : Class < ImageComponentType > ) ;