import React, { useContext } from 'react'; import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import moment from 'moment'; import { themes } from '../../lib/constants'; import { useTheme } from '../../theme'; import MessageError from './MessageError'; import sharedStyles from '../../views/Styles'; import messageStyles from './styles'; import MessageContext from './Context'; import { SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME } from './utils'; import { SubscriptionType } from '../../definitions'; import { IRoomInfoParam } from '../../views/SearchMessagesView'; const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center' }, username: { fontSize: 16, lineHeight: 22, ...sharedStyles.textMedium }, usernameInfoMessage: { fontSize: 16, ...sharedStyles.textMedium }, titleContainer: { flexShrink: 1, flexDirection: 'row', alignItems: 'center' }, alias: { fontSize: 14, ...sharedStyles.textRegular } }); interface IMessageUser { isHeader?: boolean; hasError?: boolean; useRealName?: boolean; author?: { _id: string; name?: string; username?: string; }; alias?: string; ts?: Date; timeFormat?: string; navToRoomInfo?: (navParam: IRoomInfoParam) => void; type: string; } const User = React.memo( ({ isHeader, useRealName, author, alias, ts, timeFormat, hasError, navToRoomInfo, type, ...props }: IMessageUser) => { const { user } = useContext(MessageContext); const { theme } = useTheme(); if (isHeader || hasError) { const username = (useRealName && author?.name) || author?.username; const aliasUsername = alias ? ( @{username} ) : null; const time = moment(ts).format(timeFormat); const onUserPress = () => { navToRoomInfo?.({ t: SubscriptionType.DIRECT, rid: author?._id || '' }); }; const isDisabled = author?._id === user.id; const textContent = ( <> {alias || username} {aliasUsername} ); if (SYSTEM_MESSAGE_TYPES_WITH_AUTHOR_NAME.includes(type)) { return ( {textContent} ); } return ( {textContent} {time} {hasError ? : null} ); } return null; } ); User.displayName = 'MessageUser'; export default User;