* Bump react native to 0.73.6 * iOS changes * Fix gallery * Fix test * Add missing patch * Unify react native navigation patch * Update the rest of libraries * iOS updates * Update mattermost libraries * Fix tests and final bumps * iOS podfile update * Update android locks * Revert webrtc update because it was messing with the tests * Update podfile for webrtc
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
import {Image, type ColorValue, type StyleProp, type ImageStyle} from 'react-native';
|
|
import FastImage, {type ImageStyle as FastImageStyle, type Source} from 'react-native-fast-image';
|
|
import Animated, {type SharedValue} from 'react-native-reanimated';
|
|
|
|
const AnimatedFastImage = Animated.createAnimatedComponent(FastImage);
|
|
const AnimatedImage = Animated.createAnimatedComponent(Image);
|
|
|
|
type ThumbnailProps = {
|
|
onError: () => void;
|
|
opacity?: SharedValue<number>;
|
|
source?: Source;
|
|
style: StyleProp<ImageStyle>;
|
|
tintColor?: ColorValue;
|
|
}
|
|
|
|
const Thumbnail = ({onError, opacity, style, source, tintColor}: ThumbnailProps) => {
|
|
if (source?.uri) {
|
|
return (
|
|
<AnimatedFastImage
|
|
onError={onError}
|
|
resizeMode='cover'
|
|
source={source}
|
|
style={(style as StyleProp<FastImageStyle>)}
|
|
testID='progressive_image.miniPreview'
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<AnimatedImage
|
|
resizeMode='contain'
|
|
onError={onError}
|
|
source={require('@assets/images/thumb.png')}
|
|
style={[style, {opacity: opacity?.value, tintColor}]}
|
|
testID='progressive_image.thumbnail'
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default Thumbnail;
|