2020-04-30 20:05:59 +00:00
|
|
|
import React, { useContext } from 'react';
|
2019-05-20 20:43:50 +00:00
|
|
|
import { View } from 'react-native';
|
2017-12-02 13:19:58 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2020-07-17 17:39:06 +00:00
|
|
|
import FastImage from '@rocket.chat/react-native-fast-image';
|
2018-12-21 10:55:35 +00:00
|
|
|
import equal from 'deep-equal';
|
2019-12-18 21:13:11 +00:00
|
|
|
import { createImageProgress } from 'react-native-image-progress';
|
|
|
|
import * as Progress from 'react-native-progress';
|
2018-08-01 19:35:06 +00:00
|
|
|
|
2020-04-30 20:05:59 +00:00
|
|
|
import Touchable from './Touchable';
|
2019-08-27 12:25:38 +00:00
|
|
|
import Markdown from '../markdown';
|
2018-08-01 19:35:06 +00:00
|
|
|
import styles from './styles';
|
2019-05-20 20:43:50 +00:00
|
|
|
import { formatAttachmentUrl } from '../../lib/utils';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { themes } from '../../constants/colors';
|
2020-04-30 20:05:59 +00:00
|
|
|
import MessageContext from './Context';
|
2017-12-02 13:19:58 +00:00
|
|
|
|
2019-12-18 21:13:11 +00:00
|
|
|
const ImageProgress = createImageProgress(FastImage);
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
const Button = React.memo(({
|
2020-06-15 14:00:46 +00:00
|
|
|
children, onPress, theme
|
2019-12-04 16:39:53 +00:00
|
|
|
}) => (
|
2019-05-20 20:43:50 +00:00
|
|
|
<Touchable
|
|
|
|
onPress={onPress}
|
2020-06-15 14:00:46 +00:00
|
|
|
style={styles.imageContainer}
|
2019-12-04 16:39:53 +00:00
|
|
|
background={Touchable.Ripple(themes[theme].bannerBackground)}
|
2019-05-20 20:43:50 +00:00
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</Touchable>
|
|
|
|
));
|
2017-12-02 13:19:58 +00:00
|
|
|
|
2020-02-11 14:01:35 +00:00
|
|
|
export const MessageImage = React.memo(({ img, theme }) => (
|
2019-12-18 21:13:11 +00:00
|
|
|
<ImageProgress
|
2019-12-04 16:39:53 +00:00
|
|
|
style={[styles.image, { borderColor: themes[theme].borderColor }]}
|
2019-05-20 20:43:50 +00:00
|
|
|
source={{ uri: encodeURI(img) }}
|
|
|
|
resizeMode={FastImage.resizeMode.cover}
|
2019-12-18 21:13:11 +00:00
|
|
|
indicator={Progress.Pie}
|
|
|
|
indicatorProps={{
|
|
|
|
color: themes[theme].actionTintColor
|
|
|
|
}}
|
2019-05-20 20:43:50 +00:00
|
|
|
/>
|
|
|
|
));
|
2018-12-21 10:55:35 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
const ImageContainer = React.memo(({
|
2020-06-15 14:00:46 +00:00
|
|
|
file, imageUrl, showAttachment, getCustomEmoji, theme
|
2019-05-20 20:43:50 +00:00
|
|
|
}) => {
|
2020-04-30 20:05:59 +00:00
|
|
|
const { baseUrl, user } = useContext(MessageContext);
|
2020-02-11 14:01:35 +00:00
|
|
|
const img = imageUrl || formatAttachmentUrl(file.image_url, user.id, user.token, baseUrl);
|
2019-05-20 20:43:50 +00:00
|
|
|
if (!img) {
|
|
|
|
return null;
|
2018-12-21 10:55:35 +00:00
|
|
|
}
|
2017-12-02 13:19:58 +00:00
|
|
|
|
2019-12-18 21:13:11 +00:00
|
|
|
const onPress = () => showAttachment(file);
|
2018-09-19 14:18:32 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
if (file.description) {
|
|
|
|
return (
|
2020-06-15 14:00:46 +00:00
|
|
|
<Button theme={theme} onPress={onPress}>
|
2019-05-20 20:43:50 +00:00
|
|
|
<View>
|
2020-02-11 14:01:35 +00:00
|
|
|
<MessageImage img={img} theme={theme} />
|
2020-02-27 18:34:20 +00:00
|
|
|
<Markdown msg={file.description} baseUrl={baseUrl} username={user.username} getCustomEmoji={getCustomEmoji} theme={theme} />
|
2019-05-20 20:43:50 +00:00
|
|
|
</View>
|
|
|
|
</Button>
|
|
|
|
);
|
2017-12-02 13:19:58 +00:00
|
|
|
}
|
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
return (
|
2020-06-15 14:00:46 +00:00
|
|
|
<Button theme={theme} onPress={onPress}>
|
2020-02-11 14:01:35 +00:00
|
|
|
<MessageImage img={img} theme={theme} />
|
2019-05-20 20:43:50 +00:00
|
|
|
</Button>
|
|
|
|
);
|
2020-06-15 14:00:46 +00:00
|
|
|
}, (prevProps, nextProps) => equal(prevProps.file, nextProps.file) && prevProps.theme === nextProps.theme);
|
2017-12-02 13:19:58 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
ImageContainer.propTypes = {
|
|
|
|
file: PropTypes.object,
|
2020-02-11 14:01:35 +00:00
|
|
|
imageUrl: PropTypes.string,
|
2019-12-18 21:13:11 +00:00
|
|
|
showAttachment: PropTypes.func,
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: PropTypes.string,
|
2020-06-15 14:00:46 +00:00
|
|
|
getCustomEmoji: PropTypes.func
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
ImageContainer.displayName = 'MessageImageContainer';
|
2018-09-14 19:39:52 +00:00
|
|
|
|
2020-02-11 14:01:35 +00:00
|
|
|
MessageImage.propTypes = {
|
2019-12-04 16:39:53 +00:00
|
|
|
img: PropTypes.string,
|
|
|
|
theme: PropTypes.string
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
ImageContainer.displayName = 'MessageImage';
|
2018-09-14 19:39:52 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
Button.propTypes = {
|
|
|
|
children: PropTypes.node,
|
2019-11-25 20:01:17 +00:00
|
|
|
onPress: PropTypes.func,
|
2020-06-15 14:00:46 +00:00
|
|
|
theme: PropTypes.string
|
2019-05-20 20:43:50 +00:00
|
|
|
};
|
|
|
|
ImageContainer.displayName = 'MessageButton';
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
export default ImageContainer;
|