import React, { useEffect, useReducer, useRef } from 'react'; import { Subscription } from 'rxjs'; import I18n from '../../i18n'; import { getUserPresence } from '../../lib/methods'; import { isGroupChat } from '../../lib/methods/helpers'; import { formatDate } from '../../lib/methods/helpers/room'; import { IRoomItemContainerProps } from './interfaces'; import RoomItem from './RoomItem'; import { ROW_HEIGHT, ROW_HEIGHT_CONDENSED } from './styles'; import { useUserStatus } from './useUserStatus'; export { ROW_HEIGHT, ROW_HEIGHT_CONDENSED }; const attrs = ['width', 'isFocused', 'showLastMessage', 'autoJoin', 'showAvatar', 'displayMode']; const RoomItemContainer = React.memo( ({ item, id, onPress, onLongPress, width, toggleFav, toggleRead, hideChannel, isFocused, showLastMessage, username, useRealName, autoJoin, showAvatar, displayMode, getRoomTitle = () => 'title', getRoomAvatar = () => '', getIsRead = () => false, swipeEnabled = true }: IRoomItemContainerProps) => { const name = getRoomTitle(item); const testID = `rooms-list-view-item-${name}`; const avatar = getRoomAvatar(item); const isRead = getIsRead(item); const date = item.roomUpdatedAt && formatDate(item.roomUpdatedAt); const alert = item.alert || item.tunread?.length; const [_, forceUpdate] = useReducer(x => x + 1, 1); const roomSubscription = useRef(null); const { connected, status } = useUserStatus(item.t, item?.visitor?.status, id); useEffect(() => { const init = () => { if (item?.observe) { const observable = item.observe(); roomSubscription.current = observable?.subscribe?.(() => { if (_) forceUpdate(); }); } }; init(); return () => roomSubscription.current?.unsubscribe(); }, []); useEffect(() => { const isDirect = !!(item.t === 'd' && id && !isGroupChat(item)); if (connected && isDirect) { getUserPresence(id); } }, [connected]); const handleOnPress = () => onPress(item); const handleOnLongPress = () => onLongPress && onLongPress(item); let accessibilityLabel = ''; if (item.unread === 1) { accessibilityLabel = `, ${item.unread} ${I18n.t('alert')}`; } else if (item.unread > 1) { accessibilityLabel = `, ${item.unread} ${I18n.t('alerts')}`; } if (item.userMentions > 0) { accessibilityLabel = `, ${I18n.t('you_were_mentioned')}`; } if (date) { accessibilityLabel = `, ${I18n.t('last_message')} ${date}`; } return ( ); }, (props, nextProps) => attrs.every(key => props[key] === nextProps[key]) ); export default RoomItemContainer;