mattermost-mobile/app/components/progressive_image/index.tsx

110 lines
3.6 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {Image, ImageBackground, type ImageContentFit, type ImageStyle} from 'expo-image';
import React, {type ReactNode, useEffect, useState} from 'react';
import {type StyleProp, StyleSheet, View, type ViewStyle} from 'react-native';
import Animated from 'react-native-reanimated';
import {useTheme} from '@context/theme';
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
const AnimatedImageBackground = Animated.createAnimatedComponent(ImageBackground);
const AnimatedImage = Animated.createAnimatedComponent(Image);
type Props = ProgressiveImageProps & {
children?: ReactNode | ReactNode[];
forwardRef?: React.RefObject<any>;
id: string;
imageStyle?: StyleProp<ImageStyle>;
isBackgroundImage?: boolean;
onError: () => void;
contentFit?: ImageContentFit;
style?: StyleProp<ViewStyle>;
tintDefaultSource?: boolean;
};
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return {
defaultImageContainer: {
alignItems: 'center',
justifyContent: 'center',
backgroundColor: changeOpacity(theme.centerChannelColor, 0.08),
},
defaultImageTint: {
flex: 1,
tintColor: changeOpacity(theme.centerChannelColor, 0.2),
},
};
});
const ProgressiveImage = ({
children, defaultSource, forwardRef, id, imageStyle, imageUri, inViewPort, isBackgroundImage,
onError, contentFit = 'contain', style = {}, thumbnailUri, tintDefaultSource,
}: Props) => {
const [showHighResImage, setShowHighResImage] = useState(false);
const theme = useTheme();
const styles = getStyleSheet(theme);
useEffect(() => {
if (inViewPort) {
setShowHighResImage(inViewPort);
}
}, [inViewPort]);
if (isBackgroundImage && imageUri) {
return (
<View style={[styles.defaultImageContainer, style]}>
<AnimatedImageBackground
key={id}
source={{uri: imageUri}}
contentFit='cover'
style={[StyleSheet.absoluteFill, imageStyle]}
>
{children}
</AnimatedImageBackground>
</View>
);
}
if (defaultSource) {
return (
<View style={[styles.defaultImageContainer, style]}>
<AnimatedImage
ref={forwardRef}
source={defaultSource}
style={[
StyleSheet.absoluteFill,
imageStyle,
tintDefaultSource ? styles.defaultImageTint : null,
]}
contentFit={contentFit}
onError={onError}
nativeID={`image-${id}`}
recyclingKey={`image-${id}`}
/>
</View>
);
}
const showImage = showHighResImage || !thumbnailUri;
return (
<Animated.View style={[styles.defaultImageContainer, style]}>
<Image
ref={forwardRef}
placeholder={{uri: thumbnailUri}}
placeholderContentFit='cover'
nativeID={`image-${id}`}
recyclingKey={`image-${id}`}
testID='progressive_image.highResImage'
transition={300}
style={[StyleSheet.absoluteFill, imageStyle]}
source={(showImage) ? {uri: imageUri} : undefined}
autoplay={true}
/>
</Animated.View>
);
};
export default ProgressiveImage;