import React, { Component, } from 'react' import { requireNativeComponent, Image, NativeModules, View, } from 'react-native' const resolveAssetSource = require('react-native/Libraries/Image/resolveAssetSource') const FastImageViewNativeModule = NativeModules.FastImageView class FastImage extends Component { setNativeProps(nativeProps) { this._root.setNativeProps(nativeProps) } render() { const { source, onError, onLoad, onProgress, ...props } = this.props // If there's no source or source uri just fallback to Image. if (!source || !source.uri) { return ( (this._root = e)} {...props} source={source} onProgress={onProgress} onError={onError} onLoad={onLoad} /> ) } const resolvedSource = resolveAssetSource(source) return ( (this._root = e)} {...props} source={resolvedSource} onFastImageProgress={onProgress} onFastImageError={onError} onFastImageLoad={onLoad} /> ) } } FastImage.resizeMode = { contain: 'contain', cover: 'cover', stretch: 'stretch', center: 'center', } FastImage.priority = { low: 'low', normal: 'normal', high: 'high', } FastImage.preload = sources => { FastImageViewNativeModule.preload(sources) } const FastImageSourcePropType = PropTypes.shape({ uri: PropTypes.string, headers: PropTypes.objectOf(PropTypes.string), priority: PropTypes.oneOf(Object.keys(FastImage.priority)), }) FastImage.propTypes = { ...View.propTypes, source: FastImageSourcePropType, onFastImageProgress: PropTypes.func, onFastImageError: PropTypes.func, onFastImageLoad: PropTypes.func, } FastImage.defaultProps = { resizeMode: FastImage.resizeMode.cover, onProgress: Function.prototype, onLoad: Function.prototype, onError: Function.prototype, } const FastImageView = requireNativeComponent('FastImageView', FastImage, { nativeOnly: { onFastImageProgress: true, onFastImageError: true, onFastImageLoad: true }, }) export default FastImage