import React, { useContext } from 'react'; import { View, Text, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import moment from 'moment'; import isEqual from 'deep-equal'; 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'; 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 }, 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 } }); const Title = React.memo(({ attachment, timeFormat, theme }) => { if (!attachment.author_name) { return null; } const time = attachment.ts ? moment(attachment.ts).format(timeFormat) : null; return ( {attachment.author_name ? {attachment.author_name} : null} {time ? { time } : null} ); }); const Description = React.memo(({ attachment, getCustomEmoji, theme }) => { 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 Fields = React.memo(({ attachment, theme }) => { if (!attachment.fields) { return null; } return ( {attachment.fields.map(field => ( {field.title} {field.value} ))} ); }, (prevProps, nextProps) => isEqual(prevProps.attachment.fields, nextProps.attachment.fields) && prevProps.theme === nextProps.theme); const Reply = React.memo(({ attachment, timeFormat, index, getCustomEmoji, theme }) => { if (!attachment) { return null; } const { baseUrl, user } = useContext(MessageContext); const onPress = () => { let url = attachment.title_link || attachment.author_link; if (!url) { return; } if (attachment.type === 'file') { if (!url.startsWith('http')) { url = `${ baseUrl }${ url }`; } url = `${ url }?rc_uid=${ user.id }&rc_token=${ user.token }`; } openLink(url, theme); }; return ( 0 && styles.marginTop, { backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor } ]} background={Touchable.Ripple(themes[theme].bannerBackground)} > <Description attachment={attachment} timeFormat={timeFormat} getCustomEmoji={getCustomEmoji} theme={theme} /> <Fields attachment={attachment} theme={theme} /> </View> </Touchable> ); }, (prevProps, nextProps) => isEqual(prevProps.attachment, nextProps.attachment) && prevProps.theme === nextProps.theme); Reply.propTypes = { attachment: PropTypes.object, timeFormat: PropTypes.string, index: PropTypes.number, theme: PropTypes.string, getCustomEmoji: PropTypes.func }; Reply.displayName = 'MessageReply'; Title.propTypes = { attachment: PropTypes.object, timeFormat: PropTypes.string, theme: PropTypes.string }; Title.displayName = 'MessageReplyTitle'; Description.propTypes = { attachment: PropTypes.object, getCustomEmoji: PropTypes.func, theme: PropTypes.string }; Description.displayName = 'MessageReplyDescription'; Fields.propTypes = { attachment: PropTypes.object, theme: PropTypes.string }; Fields.displayName = 'MessageReplyFields'; export default Reply;