2015-02-20 04:10:52 +00:00
|
|
|
/**
|
2015-03-23 20:35:08 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-02-20 04:10:52 +00:00
|
|
|
*
|
|
|
|
* @providesModule Image
|
2015-03-26 17:06:50 +00:00
|
|
|
* @flow
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var EdgeInsetsPropType = require('EdgeInsetsPropType');
|
2015-04-21 17:48:54 +00:00
|
|
|
var ImageResizeMode = require('ImageResizeMode');
|
|
|
|
var ImageStylePropTypes = require('ImageStylePropTypes');
|
2015-02-20 04:10:52 +00:00
|
|
|
var NativeMethodsMixin = require('NativeMethodsMixin');
|
2015-03-17 10:08:52 +00:00
|
|
|
var NativeModules = require('NativeModules');
|
2015-02-20 04:10:52 +00:00
|
|
|
var PropTypes = require('ReactPropTypes');
|
|
|
|
var React = require('React');
|
2015-05-08 16:45:43 +00:00
|
|
|
var ReactNativeViewAttributes = require('ReactNativeViewAttributes');
|
2015-02-20 04:10:52 +00:00
|
|
|
var StyleSheet = require('StyleSheet');
|
|
|
|
var StyleSheetPropType = require('StyleSheetPropType');
|
|
|
|
|
|
|
|
var flattenStyle = require('flattenStyle');
|
|
|
|
var invariant = require('invariant');
|
2015-04-17 01:17:19 +00:00
|
|
|
var requireNativeComponent = require('requireNativeComponent');
|
2015-04-21 17:48:54 +00:00
|
|
|
var resolveAssetSource = require('resolveAssetSource');
|
|
|
|
var warning = require('warning');
|
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
|
|
|
*
|
2015-03-09 16:28:51 +00:00
|
|
|
* Example usage:
|
2015-02-20 04:10:52 +00:00
|
|
|
*
|
2015-03-09 16:28:51 +00:00
|
|
|
* ```
|
|
|
|
* renderImages: function() {
|
|
|
|
* return (
|
|
|
|
* <View>
|
|
|
|
* <Image
|
|
|
|
* style={styles.icon}
|
2015-03-20 22:51:11 +00:00
|
|
|
* source={require('image!myIcon')}
|
2015-03-09 16:28:51 +00:00
|
|
|
* />
|
|
|
|
* <Image
|
|
|
|
* style={styles.logo}
|
|
|
|
* source={{uri: 'http://facebook.github.io/react/img/logo_og.png'}}
|
|
|
|
* />
|
|
|
|
* </View>
|
|
|
|
* );
|
|
|
|
* },
|
|
|
|
* ```
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
|
|
|
var Image = React.createClass({
|
|
|
|
propTypes: {
|
2015-07-15 20:17:13 +00:00
|
|
|
style: StyleSheetPropType(ImageStylePropTypes),
|
2015-04-01 17:56:21 +00:00
|
|
|
/**
|
|
|
|
* `uri` is a string representing the resource identifier for the image, which
|
|
|
|
* could be an http address, a local file path, or the name of a static image
|
2015-05-18 20:03:57 +00:00
|
|
|
* resource (which should be wrapped in the `require('image!name')` function).
|
2015-04-01 17:56:21 +00:00
|
|
|
*/
|
2015-03-09 16:29:16 +00:00
|
|
|
source: PropTypes.shape({
|
|
|
|
uri: PropTypes.string,
|
2015-03-11 21:48:22 +00:00
|
|
|
}),
|
2015-04-17 01:17:19 +00:00
|
|
|
/**
|
|
|
|
* A static image to display while downloading the final image off the
|
|
|
|
* network.
|
2015-07-24 13:01:33 +00:00
|
|
|
* @platform ios
|
2015-04-17 01:17:19 +00:00
|
|
|
*/
|
|
|
|
defaultSource: PropTypes.shape({
|
|
|
|
uri: PropTypes.string,
|
|
|
|
}),
|
2015-02-20 04:10:52 +00:00
|
|
|
/**
|
2015-07-24 13:01:33 +00:00
|
|
|
* When true, indicates the image is an accessibility element.
|
|
|
|
* @platform ios
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
|
|
|
accessible: PropTypes.bool,
|
|
|
|
/**
|
2015-07-24 13:01:33 +00:00
|
|
|
* The text that's read by the screen reader when the user interacts with
|
|
|
|
* the image.
|
|
|
|
* @platform ios
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
|
|
|
accessibilityLabel: PropTypes.string,
|
|
|
|
/**
|
2015-04-01 17:56:21 +00:00
|
|
|
* When the image is resized, the corners of the size specified
|
2015-02-20 04:10:52 +00:00
|
|
|
* by capInsets will stay a fixed size, but the center content and borders
|
|
|
|
* of the image will be stretched. This is useful for creating resizable
|
2015-04-01 17:56:21 +00:00
|
|
|
* rounded buttons, shadows, and other resizable assets. More info on
|
|
|
|
* [Apple documentation](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImage_Class/index.html#//apple_ref/occ/instm/UIImage/resizableImageWithCapInsets)
|
2015-07-24 13:01:33 +00:00
|
|
|
* @platform ios
|
2015-02-20 04:10:52 +00:00
|
|
|
*/
|
|
|
|
capInsets: EdgeInsetsPropType,
|
2015-04-17 01:17:19 +00:00
|
|
|
/**
|
|
|
|
* Determines how to resize the image when the frame doesn't match the raw
|
|
|
|
* image dimensions.
|
|
|
|
*/
|
|
|
|
resizeMode: PropTypes.oneOf(['cover', 'contain', 'stretch']),
|
2015-02-20 04:10:52 +00:00
|
|
|
/**
|
2015-04-01 17:56:21 +00:00
|
|
|
* A unique identifier for this element to be used in UI Automation
|
2015-02-20 04:10:52 +00:00
|
|
|
* testing scripts.
|
|
|
|
*/
|
|
|
|
testID: PropTypes.string,
|
2015-05-16 01:05:49 +00:00
|
|
|
/**
|
|
|
|
* Invoked on mount and layout changes with
|
2015-07-24 13:01:33 +00:00
|
|
|
* `{nativeEvent: {layout: {x, y, width, height}}}`.
|
2015-05-16 01:05:49 +00:00
|
|
|
*/
|
2015-07-09 16:48:22 +00:00
|
|
|
onLayout: PropTypes.func,
|
|
|
|
/**
|
|
|
|
* Invoked on load start
|
2015-07-24 13:01:33 +00:00
|
|
|
* @platform ios
|
2015-07-09 16:48:22 +00:00
|
|
|
*/
|
|
|
|
onLoadStart: PropTypes.func,
|
|
|
|
/**
|
2015-07-24 13:01:33 +00:00
|
|
|
* Invoked on download progress with `{nativeEvent: {loaded, total}}`
|
|
|
|
* @platform ios
|
2015-07-09 16:48:22 +00:00
|
|
|
*/
|
2015-07-15 20:17:13 +00:00
|
|
|
onProgress: PropTypes.func,
|
2015-07-09 16:48:22 +00:00
|
|
|
/**
|
2015-07-24 13:01:33 +00:00
|
|
|
* Invoked on load error with `{nativeEvent: {error}}`
|
|
|
|
* @platform ios
|
2015-07-09 16:48:22 +00:00
|
|
|
*/
|
2015-07-15 20:17:13 +00:00
|
|
|
onError: PropTypes.func,
|
2015-07-09 16:48:22 +00:00
|
|
|
/**
|
2015-07-15 20:17:13 +00:00
|
|
|
* Invoked when load completes successfully
|
2015-07-24 13:01:33 +00:00
|
|
|
* @platform ios
|
2015-07-09 16:48:22 +00:00
|
|
|
*/
|
2015-07-15 20:17:13 +00:00
|
|
|
onLoad: PropTypes.func,
|
|
|
|
/**
|
|
|
|
* Invoked when load either succeeds or fails
|
2015-07-24 13:01:33 +00:00
|
|
|
* @platform ios
|
2015-07-15 20:17:13 +00:00
|
|
|
*/
|
|
|
|
onLoadEnd: PropTypes.func,
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
statics: {
|
|
|
|
resizeMode: ImageResizeMode,
|
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [NativeMethodsMixin],
|
|
|
|
|
|
|
|
/**
|
|
|
|
* `NativeMethodsMixin` will look for this when invoking `setNativeProps`. We
|
|
|
|
* make `this` look like an actual native component class.
|
|
|
|
*/
|
|
|
|
viewConfig: {
|
|
|
|
uiViewClassName: 'UIView',
|
2015-05-08 16:45:43 +00:00
|
|
|
validAttributes: ReactNativeViewAttributes.UIView
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2015-07-25 01:31:55 +00:00
|
|
|
for (var prop in cfg.nativeOnly) {
|
|
|
|
if (this.props[prop] !== undefined) {
|
|
|
|
console.warn('Prop `' + prop + ' = ' + this.props[prop] + '` should ' +
|
|
|
|
'not be set directly on Image.');
|
|
|
|
}
|
|
|
|
}
|
2015-05-06 22:51:59 +00:00
|
|
|
var source = resolveAssetSource(this.props.source) || {};
|
2015-07-15 20:17:13 +00:00
|
|
|
var defaultSource = (this.props.defaultSource && resolveAssetSource(this.props.defaultSource)) || {};
|
2015-04-21 17:48:54 +00:00
|
|
|
|
|
|
|
var {width, height} = source;
|
2015-07-15 20:17:13 +00:00
|
|
|
var style = flattenStyle([{width, height}, styles.base, this.props.style]) || {};
|
2015-04-21 17:48:54 +00:00
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
var isNetwork = source.uri && source.uri.match(/^https?:/);
|
2015-07-15 20:17:13 +00:00
|
|
|
var RawImage = isNetwork ? RCTNetworkImageView : RCTImageView;
|
|
|
|
var resizeMode = this.props.resizeMode || (style || {}).resizeMode || 'cover'; // Workaround for flow bug t7737108
|
|
|
|
var tintColor = (style || {}).tintColor; // Workaround for flow bug t7737108
|
|
|
|
|
|
|
|
return (
|
|
|
|
<RawImage
|
|
|
|
{...this.props}
|
|
|
|
style={style}
|
|
|
|
resizeMode={resizeMode}
|
|
|
|
tintColor={tintColor}
|
|
|
|
src={source.uri}
|
2015-08-11 11:29:55 +00:00
|
|
|
defaultImageSrc={defaultSource.uri}
|
2015-07-15 20:17:13 +00:00
|
|
|
/>
|
2015-02-20 04:10:52 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
base: {
|
|
|
|
overflow: 'hidden',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2015-07-25 01:31:55 +00:00
|
|
|
var cfg = {
|
|
|
|
nativeOnly: {
|
|
|
|
src: true,
|
|
|
|
defaultImageSrc: true,
|
|
|
|
imageTag: true,
|
|
|
|
progressHandlerRegistered: true,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
var RCTImageView = requireNativeComponent('RCTImageView', Image, cfg);
|
|
|
|
var RCTNetworkImageView = (NativeModules.NetworkImageViewManager) ? requireNativeComponent('RCTNetworkImageView', Image, cfg) : RCTImageView;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
module.exports = Image;
|