import React, {Fragment, useContext} from 'react'; import {StyleSheet, View} from 'react-native'; import {Text} from 'react-native-animatable'; import {TouchableOpacity} from 'react-native-gesture-handler'; import {normalize} from '../../utils'; import ComposeIcon from '../../assets/icons/compose.svg'; import {ChatContext} from '../../App'; type MessagesHeaderProps = { createChannel: () => void; }; const MessagesHeader: React.FC = ({createChannel}) => { const {chatClient} = useContext(ChatContext); const unread = chatClient.user?.total_unread_count as number; return ( Messages {unread && unread !== 0 ? ( {unread > 99 ? '99+' : unread} unread ) : ( )} ); }; const styles = StyleSheet.create({ flex: { flex: 1, }, header: { marginHorizontal: '8%', marginTop: '5%', alignItems: 'center', flexDirection: 'row', }, headerText: { fontWeight: '700', fontSize: normalize(18), lineHeight: normalize(21), }, unreadText: { color: '#8F01FF', marginLeft: 10, fontWeight: '700', lineHeight: normalize(17), fontSize: normalize(14), }, compose: {}, }); export default MessagesHeader;