import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import moment from 'moment'; import { RectButton } from 'react-native-gesture-handler'; import Markdown from './Markdown'; import openLink from '../../utils/openLink'; const styles = StyleSheet.create({ button: { flex: 1, flexDirection: 'row', alignItems: 'center', marginTop: 15, alignSelf: 'flex-end', backgroundColor: '#f3f4f5' }, attachmentContainer: { flex: 1, borderRadius: 4, flexDirection: 'column', padding: 15 }, authorContainer: { flexDirection: 'row', alignItems: 'center' }, author: { color: '#1d74f5', fontSize: 18, fontWeight: '500', marginRight: 10 }, time: { fontSize: 14, fontWeight: 'normal', color: '#9ea2a8', marginLeft: 5 }, fieldsContainer: { flex: 1, flexWrap: 'wrap', flexDirection: 'row' }, fieldContainer: { flexDirection: 'column', padding: 10 }, fieldTitle: { fontWeight: 'bold' }, marginTop: { marginTop: 4 } }); const onPress = (attachment, baseUrl, user) => { let url = attachment.title_link || attachment.author_link; if (!url) { return; } if (attachment.type === 'file') { url = `${ baseUrl }${ url }?rc_uid=${ user.id }&rc_token=${ user.token }`; } openLink(url); }; const Reply = ({ attachment, timeFormat, baseUrl, customEmojis, user, index }) => { if (!attachment) { return null; } const renderAuthor = () => ( attachment.author_name ? {attachment.author_name} : null ); const renderTime = () => { const time = attachment.ts ? moment(attachment.ts).format(timeFormat) : null; return time ? { time } : null; }; const renderTitle = () => { if (!(attachment.author_icon || attachment.author_name || attachment.ts)) { return null; } return ( {renderAuthor()} {renderTime()} ); }; const renderText = () => { const text = attachment.text || attachment.title; if (text) { return ( ); } }; const renderFields = () => { if (!attachment.fields) { return null; } return ( {attachment.fields.map(field => ( {field.title} {field.value} ))} ); }; return ( onPress(attachment, baseUrl, user)} style={[styles.button, index > 0 && styles.marginTop]} activeOpacity={0.5} underlayColor='#fff' > {renderTitle()} {renderText()} {renderFields()} ); }; Reply.propTypes = { attachment: PropTypes.object.isRequired, timeFormat: PropTypes.string.isRequired, baseUrl: PropTypes.string.isRequired, customEmojis: PropTypes.object.isRequired, user: PropTypes.object.isRequired, index: PropTypes.number }; export default Reply;