import React, { useContext } from 'react'; import { Text, View } from 'react-native'; import styles from './styles'; import { themes } from '../../constants/colors'; import MessageContext from './Context'; import ThreadDetails from '../ThreadDetails'; import I18n from '../../i18n'; import { IMessageThread } from './interfaces'; const Thread = React.memo( ({ msg, tcount, tlm, isThreadRoom, theme, id }: IMessageThread) => { if (!tlm || isThreadRoom || tcount === 0) { return null; } const { threadBadgeColor, toggleFollowThread, user, replies } = useContext(MessageContext); return ( {I18n.t('Reply')} ); }, (prevProps, nextProps) => { if (prevProps.tcount !== nextProps.tcount) { return false; } if (prevProps.theme !== nextProps.theme) { return false; } return true; } ); Thread.displayName = 'MessageThread'; export default Thread;