import React from 'react'; import PropTypes from 'prop-types'; import { FlatList } from 'react-native'; import { connect } from 'react-redux'; import isEqual from 'react-fast-compare'; import I18n from '../i18n'; import RoomItem, { ROW_HEIGHT } from '../presentation/RoomItem'; import { MAX_SIDEBAR_WIDTH } from '../constants/tablet'; import { isTablet, isIOS } from '../utils/deviceInfo'; import { getUserSelector } from '../selectors/login'; import { withTheme } from '../theme'; import { withDimensions } from '../dimensions'; import SafeAreaView from '../containers/SafeAreaView'; import { themes } from '../constants/colors'; import StatusBar from '../containers/StatusBar'; import { goRoom } from '../utils/goRoom'; import { CloseModalButton } from '../containers/HeaderButton'; import RocketChat from '../lib/rocketchat'; import { logEvent, events } from '../utils/log'; import { getInquiryQueueSelector } from '../selectors/inquiry'; const INITIAL_NUM_TO_RENDER = isTablet ? 20 : 12; const getItemLayout = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); const keyExtractor = item => item.rid; class QueueListView extends React.Component { static navigationOptions = ({ navigation, isMasterDetail }) => { const options = { title: I18n.t('Queued_chats') }; if (isMasterDetail) { options.headerLeft = () => ; } return options; } static propTypes = { user: PropTypes.shape({ id: PropTypes.string, username: PropTypes.string, token: PropTypes.string }), isMasterDetail: PropTypes.bool, width: PropTypes.number, queued: PropTypes.array, server: PropTypes.string, useRealName: PropTypes.bool, navigation: PropTypes.object, theme: PropTypes.string } shouldComponentUpdate(nextProps) { const { queued } = this.props; if (!isEqual(nextProps.queued, queued)) { return true; } return false; } onPressItem = (item = {}) => { logEvent(events.QL_GO_ROOM); const { navigation, isMasterDetail } = this.props; if (isMasterDetail) { navigation.navigate('DrawerNavigator'); } else { navigation.navigate('RoomsListView'); } goRoom({ item: { ...item, // we're calling v as visitor on our mergeSubscriptionsRooms visitor: item.v }, isMasterDetail }); }; getRoomTitle = item => RocketChat.getRoomTitle(item) getRoomAvatar = item => RocketChat.getRoomAvatar(item) getUidDirectMessage = room => RocketChat.getUidDirectMessage(room) renderItem = ({ item }) => { const { user: { id: userId, username, token }, server, useRealName, theme, isMasterDetail, width } = this.props; const id = this.getUidDirectMessage(item); return ( ); } render() { const { queued, theme } = this.props; return ( ); } } const mapStateToProps = state => ({ user: getUserSelector(state), isMasterDetail: state.app.isMasterDetail, server: state.server.server, useRealName: state.settings.UI_Use_Real_Name, queued: getInquiryQueueSelector(state) }); export default connect(mapStateToProps)(withDimensions(withTheme(QueueListView)));