@koffeekat/react-native-auto-height-image
Version:
react-native auto height image
92 lines (81 loc) • 2.22 kB
JavaScript
/**
* @since 2017-04-11 19:10:08
* @author vivaxy
*/
import React, { useEffect, useState, useRef } from 'react';
import ImagePolyfill from './ImagePolyfill';
import AnimatableImage from './AnimatableImage';
import PropTypes from 'prop-types';
import { getImageSizeFitWidth, getImageSizeFitWidthFromCache } from './cache';
import { NOOP, DEFAULT_HEIGHT } from './helpers';
// remove `resizeMode` props from `Image.propTypes`
const { resizeMode, ...ImagePropTypes } = AnimatableImage.propTypes;
function AutoHeightImage(props) {
const {
onHeightChange,
source,
width,
style,
maxHeight,
onError,
...rest
} = props;
const [height, setHeight] = useState(
getImageSizeFitWidthFromCache(source, width, maxHeight).height ||
DEFAULT_HEIGHT
);
const mountedRef = useRef(false);
useEffect(function () {
mountedRef.current = true;
return function () {
mountedRef.current = false;
};
}, []);
useEffect(
function () {
(async function () {
try {
const { height: newHeight } = await getImageSizeFitWidth(
source,
width,
maxHeight
);
if (mountedRef.current) {
// might trigger `onHeightChange` with same `height` value
// dedupe maybe?
setHeight(newHeight);
onHeightChange(newHeight);
}
} catch (e) {
onError(e);
}
})();
},
[source, onHeightChange, width, maxHeight]
);
// StyleSheet.create will cache styles, not what we want
const imageStyles = { width, height };
// Since it only makes sense to use polyfill with remote images
const ImageComponent = source.uri ? ImagePolyfill : AnimatableImage;
return (
<ImageComponent
source={source}
style={[imageStyles, style]}
onError={onError}
{...rest}
/>
);
}
AutoHeightImage.propTypes = {
...ImagePropTypes,
width: PropTypes.number.isRequired,
maxHeight: PropTypes.number,
onHeightChange: PropTypes.func,
animated: PropTypes.bool
};
AutoHeightImage.defaultProps = {
maxHeight: Infinity,
onHeightChange: NOOP,
animated: false
};
export default AutoHeightImage;