51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
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 (
|
|||
<View style={styles.buttonContainer}>
|
|||
<View style={[styles.button, { backgroundColor: themes[theme].tintColor }]} testID={`message-thread-button-${msg}`}>
|
|||
<Text style={[styles.buttonText, { color: themes[theme].buttonText }]}>{I18n.t('Reply')}</Text>
|
|||
</View>
|
|||
<ThreadDetails
|
|||
item={{
|
|||
tcount,
|
|||
replies,
|
|||
id
|
|||
}}
|
|||
user={user}
|
|||
badgeColor={threadBadgeColor}
|
|||
toggleFollowThread={toggleFollowThread}
|
|||
style={styles.threadDetails}
|
|||
/>
|
|||
</View>
|
|||
);
|
|||
},
|
|||
(prevProps, nextProps) => {
|
|||
if (prevProps.tcount !== nextProps.tcount) {
|
|||
return false;
|
|||
}
|
|||
if (prevProps.theme !== nextProps.theme) {
|
|||
return false;
|
|||
}
|
|||
return true;
|
|||
}
|
|||
);
|
|||
|
|||
Thread.displayName = 'MessageThread';
|
|||
|
|||
export default Thread;
|