import React from 'react'; import { StyleSheet, ViewStyle } from 'react-native'; import { CustomIcon } from '../lib/Icons'; import { STATUS_COLORS, themes } from '../constants/colors'; import Status from './Status/Status'; import { withTheme } from '../theme'; const styles = StyleSheet.create({ icon: { marginRight: 4 } }); interface IRoomTypeIcon { theme?: string; type: string; isGroupChat?: boolean; teamMain?: boolean; status?: string; size?: number; style?: ViewStyle; } const RoomTypeIcon = React.memo(({ type, isGroupChat, status, style, theme, teamMain, size = 16 }: IRoomTypeIcon) => { if (!type) { return null; } const color = themes[theme!].titleText; const iconStyle = [styles.icon, { color }, style]; if (type === 'd' && !isGroupChat) { return ( ); } // TODO: move this to a separate function let icon = 'channel-private'; if (teamMain) { icon = `teams${type === 'p' ? '-private' : ''}`; } else if (type === 'discussion') { icon = 'discussions'; } else if (type === 'c') { icon = 'channel-public'; } else if (type === 'd') { if (isGroupChat) { icon = 'message'; } else { icon = 'mention'; } } else if (type === 'l') { icon = 'omnichannel'; } return ; }); export default withTheme(RoomTypeIcon);