import React from 'react'; import PropTypes from 'prop-types'; import { View, Text, StyleSheet } from 'react-native'; import Touchable from 'react-native-platform-touchable'; import { withTheme } from '../../theme'; import Avatar from '../../containers/Avatar'; import sharedStyles from '../Styles'; import { themes } from '../../constants/colors'; import Markdown from '../../containers/markdown'; import { formatDateThreads, makeThreadName } from '../../utils/room'; import ThreadDetails from '../../containers/ThreadDetails'; const styles = StyleSheet.create({ container: { flexDirection: 'row', padding: 16 }, contentContainer: { flexDirection: 'column', flex: 1 }, titleContainer: { flexDirection: 'row', marginBottom: 2, alignItems: 'center' }, title: { flexShrink: 1, fontSize: 18, ...sharedStyles.textMedium }, time: { fontSize: 14, marginLeft: 4, ...sharedStyles.textRegular }, avatar: { marginRight: 8 }, threadDetails: { marginTop: 8 }, badge: { width: 8, height: 8, borderRadius: 4, marginHorizontal: 8, alignSelf: 'center' }, messageContainer: { flexDirection: 'row' }, markdown: { flex: 1 } }); const Item = ({ item, baseUrl, theme, useRealName, user, badgeColor, onPress, toggleFollowThread }) => { const username = (useRealName && item?.u?.name) || item?.u?.username; let time; if (item?.ts) { time = formatDateThreads(item.ts); } return ( onPress(item)} testID={`thread-messages-view-${ item.msg }`} style={{ backgroundColor: themes[theme].backgroundColor }}> {username} {time} {badgeColor ? : null } ); }; Item.propTypes = { item: PropTypes.object, baseUrl: PropTypes.string, theme: PropTypes.string, useRealName: PropTypes.bool, user: PropTypes.object, badgeColor: PropTypes.string, onPress: PropTypes.func, toggleFollowThread: PropTypes.func }; export default withTheme(Item);