import React, { useContext, useState } from 'react'; import { StyleSheet, Text, View } from 'react-native'; import moment from 'moment'; import { transparentize } from 'color2k'; 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'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; import { fileDownloadAndPreview } from '../../utils/fileDownload'; import { formatAttachmentUrl } from '../../lib/utils'; import { IAttachment } from '../../definitions/IAttachment'; import { TGetCustomEmoji } from '../../definitions/IEmoji'; import RCActivityIndicator from '../ActivityIndicator'; const styles = StyleSheet.create({ button: { flex: 1, flexDirection: 'row', alignItems: 'center', marginTop: 6, alignSelf: 'flex-start', borderWidth: 1, borderRadius: 4 }, attachmentContainer: { flex: 1, borderRadius: 4, flexDirection: 'column', padding: 15 }, backdrop: { ...StyleSheet.absoluteFillObject }, authorContainer: { flex: 1, flexDirection: 'row', alignItems: 'center' }, author: { flex: 1, fontSize: 16, ...sharedStyles.textMedium }, time: { fontSize: 12, marginLeft: 10, ...sharedStyles.textRegular, fontWeight: '300' }, 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: { // @ts-ignore width: null, height: 200, flex: 1, borderTopLeftRadius: 4, borderTopRightRadius: 4, marginBottom: 1 }, title: { flex: 1, fontSize: 16, marginBottom: 3, ...sharedStyles.textMedium } }); interface IMessageTitle { attachment: IAttachment; timeFormat: string; theme: string; } interface IMessageDescription { attachment: IAttachment; getCustomEmoji: TGetCustomEmoji; theme: string; } interface IMessageFields { attachment: IAttachment; theme: string; getCustomEmoji: TGetCustomEmoji; } interface IMessageReply { attachment: IAttachment; timeFormat: string; index: number; theme: string; getCustomEmoji: TGetCustomEmoji; } const Title = React.memo(({ attachment, timeFormat, theme }: IMessageTitle) => { const time = attachment.message_link && attachment.ts ? moment(attachment.ts).format(timeFormat) : null; return ( {attachment.author_name ? ( {attachment.author_name} ) : null} {attachment.title ? {attachment.title} : null} {time ? {time} : null} ); }); const Description = React.memo( ({ attachment, getCustomEmoji, theme }: IMessageDescription) => { const text = attachment.text || attachment.title; if (!text) { return null; } const { baseUrl, user } = useContext(MessageContext); return ; }, (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( ({ image }: any) => { if (!image) { return null; } const { baseUrl, user } = useContext(MessageContext); image = image.includes('http') ? image : `${baseUrl}/${image}?rc_uid=${user.id}&rc_token=${user.token}`; return ; }, (prevProps, nextProps) => prevProps.image === nextProps.image ); const Fields = React.memo( ({ attachment, theme, getCustomEmoji }: IMessageFields) => { if (!attachment.fields) { return null; } const { baseUrl, user } = useContext(MessageContext); return ( {attachment.fields.map(field => ( {field.title} ))} ); }, (prevProps, nextProps) => dequal(prevProps.attachment.fields, nextProps.attachment.fields) && prevProps.theme === nextProps.theme ); const Reply = React.memo( ({ attachment, timeFormat, index, getCustomEmoji, theme }: IMessageReply) => { const [loading, setLoading] = useState(false); if (!attachment) { return null; } const { baseUrl, user, jumpToMessage } = useContext(MessageContext); const onPress = async () => { let url = attachment.title_link || attachment.author_link; if (attachment.message_link) { return jumpToMessage(attachment.message_link); } if (!url) { return; } if (attachment.type === 'file' && attachment.title_link) { setLoading(true); url = formatAttachmentUrl(attachment.title_link, user.id, user.token, baseUrl); await fileDownloadAndPreview(url, attachment); setLoading(false); return; } openLink(url, theme); }; let { borderColor, chatComponentBackground: backgroundColor } = themes[theme]; try { if (attachment.color) { backgroundColor = transparentize(attachment.color, 0.8); borderColor = attachment.color; } } catch (e) { // fallback to default } return ( <> 0 && styles.marginTop, attachment.description && styles.marginBottom, { backgroundColor, borderColor } ]} background={Touchable.Ripple(themes[theme].bannerBackground)} disabled={loading}> <UrlImage image={attachment.thumb_url} /> <Description attachment={attachment} getCustomEmoji={getCustomEmoji} theme={theme} /> <Fields attachment={attachment} getCustomEmoji={getCustomEmoji} theme={theme} /> {loading ? ( <View style={[styles.backdrop]}> <View style={[ styles.backdrop, { backgroundColor: themes[theme].bannerBackground, opacity: themes[theme].attachmentLoadingOpacity } ]}></View> <RCActivityIndicator theme={theme} /> </View> ) : null} </View> </Touchable> <Markdown msg={attachment.description} baseUrl={baseUrl} username={user.username} getCustomEmoji={getCustomEmoji} theme={theme} /> </> ); }, (prevProps, nextProps) => dequal(prevProps.attachment, nextProps.attachment) && prevProps.theme === nextProps.theme ); Reply.displayName = 'MessageReply'; Title.displayName = 'MessageReplyTitle'; Description.displayName = 'MessageReplyDescription'; Fields.displayName = 'MessageReplyFields'; export default Reply;