import React, { useContext } from 'react'; import { View } from 'react-native'; import PropTypes from 'prop-types'; import FastImage from '@rocket.chat/react-native-fast-image'; import { dequal } from 'dequal'; import { createImageProgress } from 'react-native-image-progress'; import * as Progress from 'react-native-progress'; import Touchable from './Touchable'; import Markdown from '../markdown'; import styles from './styles'; import { formatAttachmentUrl } from '../../lib/utils'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; const ImageProgress = createImageProgress(FastImage); const Button = React.memo(({ children, onPress, theme }) => ( {children} )); export const MessageImage = React.memo(({ img, theme }) => ( )); const ImageContainer = React.memo(({ file, imageUrl, showAttachment, getCustomEmoji, theme }) => { const { baseUrl, user } = useContext(MessageContext); const img = imageUrl || formatAttachmentUrl(file.image_url, user.id, user.token, baseUrl); if (!img) { return null; } const onPress = () => showAttachment(file); if (file.description) { return ( ); } return ( ); }, (prevProps, nextProps) => dequal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme); ImageContainer.propTypes = { file: PropTypes.object, imageUrl: PropTypes.string, showAttachment: PropTypes.func, theme: PropTypes.string, getCustomEmoji: PropTypes.func }; ImageContainer.displayName = 'MessageImageContainer'; MessageImage.propTypes = { img: PropTypes.string, theme: PropTypes.string }; ImageContainer.displayName = 'MessageImage'; Button.propTypes = { children: PropTypes.node, onPress: PropTypes.func, theme: PropTypes.string }; ImageContainer.displayName = 'MessageButton'; export default ImageContainer;