2018-12-21 10:55:35 +00:00
|
|
|
import React, { Component } from 'react';
|
2018-10-31 18:40:08 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { responsive } from 'react-native-responsive-ui';
|
|
|
|
import equal from 'deep-equal';
|
|
|
|
|
2019-04-08 12:35:28 +00:00
|
|
|
import Header from './Header';
|
2019-04-17 17:01:03 +00:00
|
|
|
import RightButtons from './RightButtons';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../../theme';
|
2019-11-25 20:01:17 +00:00
|
|
|
import RoomHeaderLeft from './RoomHeaderLeft';
|
2018-10-31 18:40:08 +00:00
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
class RoomHeaderView extends Component {
|
2018-10-31 18:40:08 +00:00
|
|
|
static propTypes = {
|
|
|
|
title: PropTypes.string,
|
2020-03-30 20:19:01 +00:00
|
|
|
subtitle: PropTypes.string,
|
2018-10-31 18:40:08 +00:00
|
|
|
type: PropTypes.string,
|
2019-04-08 12:35:28 +00:00
|
|
|
prid: PropTypes.string,
|
2019-04-17 17:01:03 +00:00
|
|
|
tmid: PropTypes.string,
|
2019-09-16 20:26:32 +00:00
|
|
|
usersTyping: PropTypes.string,
|
2018-10-31 18:40:08 +00:00
|
|
|
window: PropTypes.object,
|
2019-04-17 17:01:03 +00:00
|
|
|
status: PropTypes.string,
|
2020-03-30 20:19:01 +00:00
|
|
|
statusText: PropTypes.string,
|
2019-04-30 19:31:51 +00:00
|
|
|
connecting: PropTypes.bool,
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: PropTypes.string,
|
2020-04-01 12:28:54 +00:00
|
|
|
roomUserId: PropTypes.string,
|
2019-11-25 20:01:17 +00:00
|
|
|
widthOffset: PropTypes.number,
|
|
|
|
goRoomActionsView: PropTypes.func
|
2018-10-31 18:40:08 +00:00
|
|
|
};
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
shouldComponentUpdate(nextProps) {
|
2018-12-21 10:55:35 +00:00
|
|
|
const {
|
2020-03-30 20:19:01 +00:00
|
|
|
type, title, subtitle, status, statusText, window, connecting, goRoomActionsView, usersTyping, theme
|
2018-12-21 10:55:35 +00:00
|
|
|
} = this.props;
|
2019-12-04 16:39:53 +00:00
|
|
|
if (nextProps.theme !== theme) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
if (nextProps.type !== type) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (nextProps.title !== title) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-03-30 20:19:01 +00:00
|
|
|
if (nextProps.subtitle !== subtitle) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
if (nextProps.status !== status) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-03-30 20:19:01 +00:00
|
|
|
if (nextProps.statusText !== statusText) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-04-30 19:31:51 +00:00
|
|
|
if (nextProps.connecting !== connecting) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
if (nextProps.window.width !== window.width) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (nextProps.window.height !== window.height) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
if (!equal(nextProps.usersTyping, usersTyping)) {
|
2019-04-29 16:03:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
2019-11-25 20:01:17 +00:00
|
|
|
if (nextProps.goRoomActionsView !== goRoomActionsView) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-10-31 18:40:08 +00:00
|
|
|
render() {
|
|
|
|
const {
|
2020-04-01 12:28:54 +00:00
|
|
|
window, title, subtitle, type, prid, tmid, widthOffset, status = 'offline', statusText, connecting, usersTyping, goRoomActionsView, roomUserId, theme
|
2018-10-31 18:40:08 +00:00
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
return (
|
2019-04-08 12:35:28 +00:00
|
|
|
<Header
|
|
|
|
prid={prid}
|
2019-04-17 17:01:03 +00:00
|
|
|
tmid={tmid}
|
2019-04-08 12:35:28 +00:00
|
|
|
title={title}
|
2020-03-30 20:19:01 +00:00
|
|
|
subtitle={type === 'd' ? statusText : subtitle}
|
2019-04-08 12:35:28 +00:00
|
|
|
type={type}
|
|
|
|
status={status}
|
|
|
|
width={window.width}
|
|
|
|
height={window.height}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-04-08 12:35:28 +00:00
|
|
|
usersTyping={usersTyping}
|
2019-04-17 17:01:03 +00:00
|
|
|
widthOffset={widthOffset}
|
2020-04-01 12:28:54 +00:00
|
|
|
roomUserId={roomUserId}
|
2019-11-25 20:01:17 +00:00
|
|
|
goRoomActionsView={goRoomActionsView}
|
2019-04-30 19:31:51 +00:00
|
|
|
connecting={connecting}
|
2019-04-08 12:35:28 +00:00
|
|
|
/>
|
2018-10-31 18:40:08 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-04-17 17:01:03 +00:00
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
const mapStateToProps = (state, ownProps) => {
|
2020-03-30 20:19:01 +00:00
|
|
|
let statusText;
|
2020-05-08 17:36:10 +00:00
|
|
|
let status = 'offline';
|
|
|
|
const { roomUserId, type, visitor = {} } = ownProps;
|
|
|
|
|
|
|
|
if (state.meteor.connected) {
|
|
|
|
if (type === 'd' && state.activeUsers[roomUserId]) {
|
|
|
|
({ status, statusText } = state.activeUsers[roomUserId]);
|
|
|
|
} else if (type === 'l' && visitor?.status) {
|
|
|
|
({ status } = visitor);
|
2019-08-07 13:51:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
connecting: state.meteor.connecting,
|
2019-09-16 20:26:32 +00:00
|
|
|
usersTyping: state.usersTyping,
|
2020-03-30 20:19:01 +00:00
|
|
|
status,
|
|
|
|
statusText
|
2019-08-07 13:51:34 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
export default responsive(connect(mapStateToProps)(withTheme(RoomHeaderView)));
|
2019-08-07 13:51:34 +00:00
|
|
|
|
2019-11-25 20:01:17 +00:00
|
|
|
export { RightButtons, RoomHeaderLeft };
|