Rocket.Chat.ReactNative/app/views/RoomView/Header/index.js

115 lines
2.6 KiB
JavaScript
Raw Normal View History

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 database from '../../../lib/realm';
import Header from './Header';
2019-04-17 17:01:03 +00:00
import RightButtons from './RightButtons';
2018-10-31 18:40:08 +00:00
@responsive
2019-04-08 12:35:28 +00:00
@connect((state, ownProps) => {
2018-10-31 18:40:08 +00:00
let status = '';
2019-04-08 12:35:28 +00:00
const { rid, type } = ownProps;
if (type === 'd') {
if (state.login.user && state.login.user.id) {
const { id: loggedUserId } = state.login.user;
2019-04-08 12:35:28 +00:00
const userId = rid.replace(loggedUserId, '').trim();
if (userId === loggedUserId) {
status = state.login.user.status; // eslint-disable-line
} else {
const user = state.activeUsers[userId];
status = (user && user.status) || 'offline';
}
2018-10-31 18:40:08 +00:00
}
}
2018-10-31 18:40:08 +00:00
return {
status
};
})
export default class RoomHeaderView extends Component {
2018-10-31 18:40:08 +00:00
static propTypes = {
title: PropTypes.string,
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-04-08 12:35:28 +00:00
rid: PropTypes.string,
2018-10-31 18:40:08 +00:00
window: PropTypes.object,
2019-04-17 17:01:03 +00:00
status: PropTypes.string,
widthOffset: PropTypes.number
2018-10-31 18:40:08 +00:00
};
2019-04-08 12:35:28 +00:00
constructor(props) {
super(props);
this.usersTyping = database.memoryDatabase.objects('usersTyping').filtered('rid = $0', props.rid);
this.state = {
usersTyping: this.usersTyping.slice() || []
};
this.usersTyping.addListener(this.updateState);
}
shouldComponentUpdate(nextProps, nextState) {
const { usersTyping } = this.state;
const {
2019-04-08 12:35:28 +00:00
type, title, status, window
} = this.props;
if (nextProps.type !== type) {
return true;
}
if (nextProps.title !== title) {
return true;
}
if (nextProps.status !== status) {
return true;
}
if (nextProps.window.width !== window.width) {
return true;
}
if (nextProps.window.height !== window.height) {
return true;
}
2019-04-08 12:35:28 +00:00
if (!equal(nextState.usersTyping, usersTyping)) {
return true;
}
return false;
}
2019-03-27 20:06:57 +00:00
// componentDidUpdate(prevProps) {
// if (isIOS) {
// const { usersTyping } = this.props;
// if (!equal(prevProps.usersTyping, usersTyping)) {
// LayoutAnimation.easeInEaseOut();
// }
// }
// }
2018-10-31 18:40:08 +00:00
2019-04-08 12:35:28 +00:00
updateState = () => {
this.setState({ usersTyping: this.usersTyping.slice() });
2018-10-31 18:40:08 +00:00
}
render() {
2019-04-08 12:35:28 +00:00
const { usersTyping } = this.state;
2018-10-31 18:40:08 +00:00
const {
2019-04-17 17:01:03 +00:00
window, title, type, status, prid, tmid, widthOffset
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}
type={type}
status={status}
width={window.width}
height={window.height}
usersTyping={usersTyping}
2019-04-17 17:01:03 +00:00
widthOffset={widthOffset}
2019-04-08 12:35:28 +00:00
/>
2018-10-31 18:40:08 +00:00
);
}
}
2019-04-17 17:01:03 +00:00
export { RightButtons };