import React from 'react'; import { View } from 'react-native'; import PropTypes from 'prop-types'; import FastImage from 'react-native-fast-image'; import equal from 'deep-equal'; import Touchable from 'react-native-platform-touchable'; import { createImageProgress } from 'react-native-image-progress'; import * as Progress from 'react-native-progress'; import Markdown from '../markdown'; import styles from './styles'; import { formatAttachmentUrl } from '../../lib/utils'; import { withSplit } from '../../split'; import { themes } from '../../constants/colors'; import sharedStyles from '../../views/Styles'; const ImageProgress = createImageProgress(FastImage); const Button = React.memo(({ children, onPress, split, theme }) => ( {children} )); export const MessageImage = React.memo(({ img, theme }) => ( )); const ImageContainer = React.memo(({ file, imageUrl, baseUrl, user, showAttachment, getCustomEmoji, split, theme }) => { 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) => equal(prevProps.file, nextProps.file) && prevProps.split === nextProps.split && prevProps.theme === nextProps.theme); ImageContainer.propTypes = { file: PropTypes.object, imageUrl: PropTypes.string, baseUrl: PropTypes.string, user: PropTypes.object, showAttachment: PropTypes.func, theme: PropTypes.string, getCustomEmoji: PropTypes.func, split: PropTypes.bool }; 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, split: PropTypes.bool }; ImageContainer.displayName = 'MessageButton'; export default withSplit(ImageContainer);