93 lines
1.8 KiB
TypeScript
93 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import { View, Text, StyleSheet } from 'react-native';
|
|
|
|
import sharedStyles from '../../views/Styles';
|
|
import { getUnreadStyle } from './getUnreadStyle';
|
|
import { withTheme } from '../../theme';
|
|
|
|
const styles = StyleSheet.create({
|
|
unreadNumberContainerNormal: {
|
|
height: 21,
|
|
paddingVertical: 3,
|
|
paddingHorizontal: 5,
|
|
borderRadius: 10.5,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
marginLeft: 10
|
|
},
|
|
unreadNumberContainerSmall: {
|
|
borderRadius: 10.5,
|
|
alignItems: 'center',
|
|
justifyContent: 'center'
|
|
},
|
|
unreadText: {
|
|
fontSize: 13,
|
|
...sharedStyles.textSemibold
|
|
},
|
|
textSmall: {
|
|
fontSize: 10
|
|
}
|
|
});
|
|
|
|
interface IUnreadBadge {
|
|
theme: string;
|
|
unread: number;
|
|
userMentions: number;
|
|
groupMentions: number;
|
|
style: object;
|
|
tunread: [];
|
|
tunreadUser: [];
|
|
tunreadGroup: [];
|
|
small: boolean;
|
|
}
|
|
|
|
const UnreadBadge = React.memo(({
|
|
theme, unread, userMentions, groupMentions, style, tunread, tunreadUser, tunreadGroup, small
|
|
}: IUnreadBadge) => {
|
|
if ((!unread || unread <= 0) && (!tunread?.length)) {
|
|
return null;
|
|
}
|
|
const { backgroundColor, color } = getUnreadStyle({
|
|
theme, unread, userMentions, groupMentions, tunread, tunreadUser, tunreadGroup
|
|
});
|
|
|
|
if (!backgroundColor) {
|
|
return null;
|
|
}
|
|
let text: any = unread || tunread?.length;
|
|
if (small && text >= 100) {
|
|
text = '+99';
|
|
}
|
|
if (!small && text >= 1000) {
|
|
text = '+999';
|
|
}
|
|
text = text.toString();
|
|
|
|
let minWidth = 21;
|
|
if (small) {
|
|
minWidth = 11 + text.length * 5;
|
|
}
|
|
|
|
return (
|
|
<View
|
|
style={[
|
|
small ? styles.unreadNumberContainerSmall : styles.unreadNumberContainerNormal,
|
|
{ backgroundColor, minWidth },
|
|
style
|
|
]}
|
|
>
|
|
<Text
|
|
style={[
|
|
styles.unreadText,
|
|
small && styles.textSmall,
|
|
{ color }
|
|
]}
|
|
numberOfLines={1}
|
|
>{text}
|
|
</Text>
|
|
</View>
|
|
);
|
|
});
|
|
|
|
export default withTheme(UnreadBadge);
|