import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { responsive } from 'react-native-responsive-ui'; import equal from 'deep-equal'; import Header from './Header'; import RightButtons from './RightButtons'; import { withTheme } from '../../../theme'; import RoomHeaderLeft from './RoomHeaderLeft'; import { getUserSelector } from '../../../selectors/login'; class RoomHeaderView extends Component { static propTypes = { title: PropTypes.string, subtitle: PropTypes.string, type: PropTypes.string, prid: PropTypes.string, tmid: PropTypes.string, usersTyping: PropTypes.string, window: PropTypes.object, status: PropTypes.string, statusText: PropTypes.string, connecting: PropTypes.bool, theme: PropTypes.string, roomUserId: PropTypes.string, widthOffset: PropTypes.number, goRoomActionsView: PropTypes.func }; shouldComponentUpdate(nextProps) { const { type, title, subtitle, status, statusText, window, connecting, goRoomActionsView, usersTyping, theme } = this.props; if (nextProps.theme !== theme) { return true; } if (nextProps.type !== type) { return true; } if (nextProps.title !== title) { return true; } if (nextProps.subtitle !== subtitle) { return true; } if (nextProps.status !== status) { return true; } if (nextProps.statusText !== statusText) { return true; } if (nextProps.connecting !== connecting) { return true; } if (nextProps.window.width !== window.width) { return true; } if (nextProps.window.height !== window.height) { return true; } if (!equal(nextProps.usersTyping, usersTyping)) { return true; } if (nextProps.goRoomActionsView !== goRoomActionsView) { return true; } return false; } render() { const { window, title, subtitle, type, prid, tmid, widthOffset, status = 'offline', statusText, connecting, usersTyping, goRoomActionsView, roomUserId, theme } = this.props; return (
); } } const mapStateToProps = (state, ownProps) => { let status; let statusText; const { roomUserId, type } = ownProps; if (type === 'd') { const user = getUserSelector(state); if (user.id) { if (state.activeUsers[roomUserId] && state.meteor.connected) { ({ status, statusText } = state.activeUsers[roomUserId]); } else { status = 'offline'; } } } return { connecting: state.meteor.connecting, usersTyping: state.usersTyping, status, statusText }; }; export default responsive(connect(mapStateToProps)(withTheme(RoomHeaderView))); export { RightButtons, RoomHeaderLeft };