2021-11-16 15:59:58 +00:00
|
|
|
import React, { useContext, useState } from 'react';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { StyleSheet, Text, View } from 'react-native';
|
|
|
|
import moment from 'moment';
|
|
|
|
import { dequal } from 'dequal';
|
|
|
|
import FastImage from '@rocket.chat/react-native-fast-image';
|
|
|
|
|
|
|
|
import Touchable from './Touchable';
|
|
|
|
import Markdown from '../markdown';
|
|
|
|
import openLink from '../../utils/openLink';
|
|
|
|
import sharedStyles from '../../views/Styles';
|
2022-04-07 14:10:03 +00:00
|
|
|
import { themes } from '../../lib/constants';
|
2021-09-13 20:41:05 +00:00
|
|
|
import MessageContext from './Context';
|
2021-11-16 15:59:58 +00:00
|
|
|
import { fileDownloadAndPreview } from '../../utils/fileDownload';
|
2022-01-11 13:51:48 +00:00
|
|
|
import { IAttachment } from '../../definitions/IAttachment';
|
2022-02-17 15:27:01 +00:00
|
|
|
import { TGetCustomEmoji } from '../../definitions/IEmoji';
|
2021-11-16 15:59:58 +00:00
|
|
|
import RCActivityIndicator from '../ActivityIndicator';
|
2022-03-21 20:44:06 +00:00
|
|
|
import Attachments from './Attachments';
|
2022-04-12 16:27:05 +00:00
|
|
|
import { TSupportedThemes, useTheme } from '../../theme';
|
2022-04-07 13:13:19 +00:00
|
|
|
import { formatAttachmentUrl } from '../../lib/methods/helpers/formatAttachmentUrl';
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
button: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'row',
|
|
|
|
alignItems: 'center',
|
2022-03-21 20:44:06 +00:00
|
|
|
marginVertical: 4,
|
2021-09-13 20:41:05 +00:00
|
|
|
alignSelf: 'flex-start',
|
2022-03-21 20:44:06 +00:00
|
|
|
borderLeftWidth: 2
|
2021-09-13 20:41:05 +00:00
|
|
|
},
|
|
|
|
attachmentContainer: {
|
|
|
|
flex: 1,
|
|
|
|
borderRadius: 4,
|
|
|
|
flexDirection: 'column',
|
2022-03-21 20:44:06 +00:00
|
|
|
paddingVertical: 4,
|
|
|
|
paddingLeft: 8
|
2021-09-13 20:41:05 +00:00
|
|
|
},
|
2021-11-16 15:59:58 +00:00
|
|
|
backdrop: {
|
|
|
|
...StyleSheet.absoluteFillObject
|
|
|
|
},
|
2021-09-13 20:41:05 +00:00
|
|
|
authorContainer: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'row',
|
2022-03-21 20:44:06 +00:00
|
|
|
alignItems: 'center',
|
|
|
|
marginBottom: 8
|
2021-09-13 20:41:05 +00:00
|
|
|
},
|
|
|
|
author: {
|
|
|
|
flex: 1,
|
|
|
|
fontSize: 16,
|
|
|
|
...sharedStyles.textMedium
|
|
|
|
},
|
|
|
|
time: {
|
|
|
|
fontSize: 12,
|
2022-03-21 20:44:06 +00:00
|
|
|
marginLeft: 8,
|
|
|
|
...sharedStyles.textRegular
|
2021-09-13 20:41:05 +00:00
|
|
|
},
|
|
|
|
fieldsContainer: {
|
|
|
|
flex: 1,
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
flexDirection: 'row'
|
|
|
|
},
|
|
|
|
fieldContainer: {
|
|
|
|
flexDirection: 'column',
|
|
|
|
padding: 10
|
|
|
|
},
|
|
|
|
fieldTitle: {
|
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textSemibold
|
|
|
|
},
|
|
|
|
fieldValue: {
|
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textRegular
|
|
|
|
},
|
|
|
|
marginTop: {
|
|
|
|
marginTop: 4
|
|
|
|
},
|
|
|
|
marginBottom: {
|
|
|
|
marginBottom: 4
|
|
|
|
},
|
|
|
|
image: {
|
|
|
|
height: 200,
|
|
|
|
flex: 1,
|
|
|
|
borderTopLeftRadius: 4,
|
|
|
|
borderTopRightRadius: 4,
|
|
|
|
marginBottom: 1
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
flex: 1,
|
|
|
|
fontSize: 16,
|
|
|
|
marginBottom: 3,
|
|
|
|
...sharedStyles.textMedium
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
interface IMessageReply {
|
2022-01-11 13:51:48 +00:00
|
|
|
attachment: IAttachment;
|
2022-03-02 14:18:01 +00:00
|
|
|
timeFormat?: string;
|
2021-09-13 20:41:05 +00:00
|
|
|
index: number;
|
2022-02-17 15:27:01 +00:00
|
|
|
getCustomEmoji: TGetCustomEmoji;
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
|
2022-04-12 16:27:05 +00:00
|
|
|
const Title = React.memo(
|
|
|
|
({ attachment, timeFormat, theme }: { attachment: IAttachment; timeFormat?: string; theme: TSupportedThemes }) => {
|
|
|
|
const time = attachment.message_link && attachment.ts ? moment(attachment.ts).format(timeFormat) : null;
|
|
|
|
return (
|
|
|
|
<View style={styles.authorContainer}>
|
|
|
|
{attachment.author_name ? (
|
|
|
|
<Text style={[styles.author, { color: themes[theme].auxiliaryTintColor }]}>{attachment.author_name}</Text>
|
|
|
|
) : null}
|
|
|
|
{attachment.title ? <Text style={[styles.title, { color: themes[theme].bodyText }]}>{attachment.title}</Text> : null}
|
|
|
|
{time ? <Text style={[styles.time, { color: themes[theme].auxiliaryTintColor }]}>{time}</Text> : null}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
2021-09-13 20:41:05 +00:00
|
|
|
|
|
|
|
const Description = React.memo(
|
2022-04-12 16:27:05 +00:00
|
|
|
({
|
|
|
|
attachment,
|
|
|
|
getCustomEmoji,
|
|
|
|
theme
|
|
|
|
}: {
|
|
|
|
attachment: IAttachment;
|
|
|
|
getCustomEmoji: TGetCustomEmoji;
|
|
|
|
theme: TSupportedThemes;
|
|
|
|
}) => {
|
2022-04-11 18:01:43 +00:00
|
|
|
const { baseUrl, user } = useContext(MessageContext);
|
2021-09-13 20:41:05 +00:00
|
|
|
const text = attachment.text || attachment.title;
|
2022-04-11 18:01:43 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
if (!text) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-04-11 18:01:43 +00:00
|
|
|
|
2022-03-21 20:44:06 +00:00
|
|
|
return (
|
|
|
|
<Markdown
|
|
|
|
msg={text}
|
|
|
|
style={[{ color: themes[theme].auxiliaryTintColor, fontSize: 14 }]}
|
|
|
|
baseUrl={baseUrl}
|
|
|
|
username={user.username}
|
|
|
|
getCustomEmoji={getCustomEmoji}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
);
|
2021-09-13 20:41:05 +00:00
|
|
|
},
|
|
|
|
(prevProps, nextProps) => {
|
|
|
|
if (prevProps.attachment.text !== nextProps.attachment.text) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (prevProps.attachment.title !== nextProps.attachment.title) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (prevProps.theme !== nextProps.theme) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
const UrlImage = React.memo(
|
2022-04-01 21:52:38 +00:00
|
|
|
({ image }: { image?: string }) => {
|
2022-04-11 18:01:43 +00:00
|
|
|
const { baseUrl, user } = useContext(MessageContext);
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
if (!image) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-04-11 18:01:43 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
image = image.includes('http') ? image : `${baseUrl}/${image}?rc_uid=${user.id}&rc_token=${user.token}`;
|
|
|
|
return <FastImage source={{ uri: image }} style={styles.image} resizeMode={FastImage.resizeMode.cover} />;
|
|
|
|
},
|
|
|
|
(prevProps, nextProps) => prevProps.image === nextProps.image
|
|
|
|
);
|
|
|
|
|
|
|
|
const Fields = React.memo(
|
2022-04-12 16:27:05 +00:00
|
|
|
({
|
|
|
|
attachment,
|
|
|
|
theme,
|
|
|
|
getCustomEmoji
|
|
|
|
}: {
|
|
|
|
attachment: IAttachment;
|
|
|
|
theme: TSupportedThemes;
|
|
|
|
getCustomEmoji: TGetCustomEmoji;
|
|
|
|
}) => {
|
2022-04-11 18:01:43 +00:00
|
|
|
const { baseUrl, user } = useContext(MessageContext);
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
if (!attachment.fields) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View style={styles.fieldsContainer}>
|
|
|
|
{attachment.fields.map(field => (
|
|
|
|
<View key={field.title} style={[styles.fieldContainer, { width: field.short ? '50%' : '100%' }]}>
|
|
|
|
<Text style={[styles.fieldTitle, { color: themes[theme].bodyText }]}>{field.title}</Text>
|
|
|
|
<Markdown
|
2022-02-01 13:39:09 +00:00
|
|
|
msg={field?.value || ''}
|
2021-09-13 20:41:05 +00:00
|
|
|
baseUrl={baseUrl}
|
|
|
|
username={user.username}
|
|
|
|
getCustomEmoji={getCustomEmoji}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
))}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
(prevProps, nextProps) =>
|
|
|
|
dequal(prevProps.attachment.fields, nextProps.attachment.fields) && prevProps.theme === nextProps.theme
|
|
|
|
);
|
|
|
|
|
|
|
|
const Reply = React.memo(
|
2022-03-21 20:44:06 +00:00
|
|
|
({ attachment, timeFormat, index, getCustomEmoji }: IMessageReply) => {
|
2021-11-16 15:59:58 +00:00
|
|
|
const [loading, setLoading] = useState(false);
|
2022-04-01 21:52:38 +00:00
|
|
|
const { theme } = useTheme();
|
2022-04-11 18:01:43 +00:00
|
|
|
const { baseUrl, user, jumpToMessage } = useContext(MessageContext);
|
2021-11-16 15:59:58 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
if (!attachment) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-03-21 20:44:06 +00:00
|
|
|
|
2021-11-16 15:59:58 +00:00
|
|
|
const onPress = async () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
let url = attachment.title_link || attachment.author_link;
|
|
|
|
if (attachment.message_link) {
|
|
|
|
return jumpToMessage(attachment.message_link);
|
|
|
|
}
|
|
|
|
if (!url) {
|
|
|
|
return;
|
|
|
|
}
|
2022-02-07 18:44:04 +00:00
|
|
|
if (attachment.type === 'file' && attachment.title_link) {
|
2021-11-16 15:59:58 +00:00
|
|
|
setLoading(true);
|
|
|
|
url = formatAttachmentUrl(attachment.title_link, user.id, user.token, baseUrl);
|
|
|
|
await fileDownloadAndPreview(url, attachment);
|
|
|
|
setLoading(false);
|
|
|
|
return;
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
openLink(url, theme);
|
|
|
|
};
|
|
|
|
|
2022-03-21 20:44:06 +00:00
|
|
|
let { borderColor } = themes[theme];
|
|
|
|
if (attachment.color) {
|
|
|
|
borderColor = attachment.color;
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Touchable
|
|
|
|
onPress={onPress}
|
|
|
|
style={[
|
|
|
|
styles.button,
|
|
|
|
index > 0 && styles.marginTop,
|
|
|
|
attachment.description && styles.marginBottom,
|
|
|
|
{
|
|
|
|
borderColor
|
|
|
|
}
|
|
|
|
]}
|
2021-11-16 15:59:58 +00:00
|
|
|
background={Touchable.Ripple(themes[theme].bannerBackground)}
|
|
|
|
disabled={loading}>
|
2021-09-13 20:41:05 +00:00
|
|
|
<View style={styles.attachmentContainer}>
|
|
|
|
<Title attachment={attachment} timeFormat={timeFormat} theme={theme} />
|
2022-03-21 20:44:06 +00:00
|
|
|
<Attachments
|
|
|
|
attachments={attachment.attachments}
|
|
|
|
getCustomEmoji={getCustomEmoji}
|
|
|
|
timeFormat={timeFormat}
|
|
|
|
style={[{ color: themes[theme].auxiliaryTintColor, fontSize: 14, marginBottom: 8 }]}
|
|
|
|
isReply
|
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
<UrlImage image={attachment.thumb_url} />
|
|
|
|
<Description attachment={attachment} getCustomEmoji={getCustomEmoji} theme={theme} />
|
|
|
|
<Fields attachment={attachment} getCustomEmoji={getCustomEmoji} theme={theme} />
|
2021-11-16 15:59:58 +00:00
|
|
|
{loading ? (
|
|
|
|
<View style={[styles.backdrop]}>
|
|
|
|
<View
|
|
|
|
style={[
|
|
|
|
styles.backdrop,
|
|
|
|
{ backgroundColor: themes[theme].bannerBackground, opacity: themes[theme].attachmentLoadingOpacity }
|
|
|
|
]}></View>
|
2022-03-18 02:37:10 +00:00
|
|
|
<RCActivityIndicator />
|
2021-11-16 15:59:58 +00:00
|
|
|
</View>
|
|
|
|
) : null}
|
2021-09-13 20:41:05 +00:00
|
|
|
</View>
|
|
|
|
</Touchable>
|
|
|
|
<Markdown
|
2022-02-17 15:27:01 +00:00
|
|
|
msg={attachment.description}
|
2021-09-13 20:41:05 +00:00
|
|
|
baseUrl={baseUrl}
|
|
|
|
username={user.username}
|
|
|
|
getCustomEmoji={getCustomEmoji}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
},
|
2022-03-21 20:44:06 +00:00
|
|
|
(prevProps, nextProps) => dequal(prevProps.attachment, nextProps.attachment)
|
2021-09-13 20:41:05 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
Reply.displayName = 'MessageReply';
|
|
|
|
Title.displayName = 'MessageReplyTitle';
|
|
|
|
Description.displayName = 'MessageReplyDescription';
|
|
|
|
Fields.displayName = 'MessageReplyFields';
|
|
|
|
|
|
|
|
export default Reply;
|