import React from 'react'; import { View, Text, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import moment from 'moment'; import Touchable from 'react-native-platform-touchable'; import Markdown from './Markdown'; import openLink from '../../utils/openLink'; import sharedStyles from '../../views/Styles'; import { COLOR_BACKGROUND_CONTAINER, COLOR_BORDER } from '../../constants/colors'; const styles = StyleSheet.create({ button: { flex: 1, flexDirection: 'row', alignItems: 'center', marginTop: 6, alignSelf: 'flex-end', backgroundColor: COLOR_BACKGROUND_CONTAINER, borderColor: COLOR_BORDER, 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.textColorNormal, ...sharedStyles.textMedium }, time: { fontSize: 12, marginLeft: 10, ...sharedStyles.textColorDescription, ...sharedStyles.textRegular, fontWeight: '300' }, fieldsContainer: { flex: 1, flexWrap: 'wrap', flexDirection: 'row' }, fieldContainer: { flexDirection: 'column', padding: 10 }, fieldTitle: { fontSize: 14, ...sharedStyles.textColorNormal, ...sharedStyles.textSemibold }, fieldValue: { fontSize: 14, ...sharedStyles.textColorNormal, ...sharedStyles.textRegular }, 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_name) { 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]} background={Touchable.Ripple('#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;