2019-06-10 18:36:31 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { FlatList, View, Text } from 'react-native';
|
|
|
|
import equal from 'deep-equal';
|
|
|
|
import moment from 'moment';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
|
|
|
import Avatar from '../../containers/Avatar';
|
|
|
|
import styles from './styles';
|
2019-12-04 16:39:53 +00:00
|
|
|
import ActivityIndicator from '../../containers/ActivityIndicator';
|
2020-10-30 16:15:58 +00:00
|
|
|
import * as HeaderButton from '../../containers/HeaderButton';
|
2019-06-10 18:36:31 +00:00
|
|
|
import I18n from '../../i18n';
|
|
|
|
import RocketChat from '../../lib/rocketchat';
|
|
|
|
import StatusBar from '../../containers/StatusBar';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../theme';
|
|
|
|
import { themes } from '../../constants/colors';
|
2020-06-15 14:00:46 +00:00
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
2019-06-10 18:36:31 +00:00
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
class ReadReceiptView extends React.Component {
|
2020-07-17 17:13:44 +00:00
|
|
|
static navigationOptions = ({ navigation, isMasterDetail }) => {
|
|
|
|
const options = {
|
|
|
|
title: I18n.t('Read_Receipt')
|
|
|
|
};
|
|
|
|
if (isMasterDetail) {
|
2020-10-30 16:15:58 +00:00
|
|
|
options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} testID='read-receipt-view-close' />;
|
2020-07-17 17:13:44 +00:00
|
|
|
}
|
|
|
|
return options;
|
2020-06-15 14:00:46 +00:00
|
|
|
}
|
2019-06-10 18:36:31 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
2020-06-15 14:00:46 +00:00
|
|
|
route: PropTypes.object,
|
2019-06-10 18:36:31 +00:00
|
|
|
Message_TimeFormat: PropTypes.string,
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: PropTypes.string
|
2019-06-10 18:36:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2020-06-15 14:00:46 +00:00
|
|
|
this.messageId = props.route.params?.messageId;
|
2019-06-10 18:36:31 +00:00
|
|
|
this.state = {
|
|
|
|
loading: false,
|
|
|
|
receipts: []
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
shouldComponentUpdate(nextProps, nextState) {
|
|
|
|
const { loading, receipts } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
|
|
|
if (nextProps.theme !== theme) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-06-10 18:36:31 +00:00
|
|
|
if (nextState.loading !== loading) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!equal(nextState.receipts, receipts)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
load = async() => {
|
|
|
|
const { loading } = this.state;
|
|
|
|
if (loading) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ loading: true });
|
|
|
|
|
|
|
|
try {
|
|
|
|
const result = await RocketChat.getReadReceipts(this.messageId);
|
|
|
|
if (result.success) {
|
|
|
|
this.setState({
|
|
|
|
receipts: result.receipts,
|
|
|
|
loading: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
this.setState({ loading: false });
|
|
|
|
console.log('err_fetch_read_receipts', error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
renderEmpty = () => {
|
|
|
|
const { theme } = this.props;
|
|
|
|
return (
|
|
|
|
<View style={[styles.listEmptyContainer, { backgroundColor: themes[theme].chatComponentBackground }]} testID='read-receipt-view'>
|
|
|
|
<Text style={{ color: themes[theme].titleText }}>{I18n.t('No_Read_Receipts')}</Text>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
2019-06-10 18:36:31 +00:00
|
|
|
|
|
|
|
renderItem = ({ item }) => {
|
2020-10-30 13:12:02 +00:00
|
|
|
const { Message_TimeFormat, theme } = this.props;
|
2019-06-10 18:36:31 +00:00
|
|
|
const time = moment(item.ts).format(Message_TimeFormat);
|
2020-09-15 13:09:23 +00:00
|
|
|
if (!item?.user?.username) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-06-10 18:36:31 +00:00
|
|
|
return (
|
2019-12-04 16:39:53 +00:00
|
|
|
<View style={[styles.itemContainer, { backgroundColor: themes[theme].backgroundColor }]}>
|
2019-06-10 18:36:31 +00:00
|
|
|
<Avatar
|
|
|
|
text={item.user.username}
|
|
|
|
size={40}
|
|
|
|
/>
|
|
|
|
<View style={styles.infoContainer}>
|
|
|
|
<View style={styles.item}>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Text style={[styles.name, { color: themes[theme].titleText }]}>
|
2020-09-15 13:09:23 +00:00
|
|
|
{item?.user?.name}
|
2019-06-10 18:36:31 +00:00
|
|
|
</Text>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Text style={{ color: themes[theme].auxiliaryText }}>
|
2019-06-10 18:36:31 +00:00
|
|
|
{time}
|
|
|
|
</Text>
|
|
|
|
</View>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Text style={{ color: themes[theme].auxiliaryText }}>
|
2019-06-10 18:36:31 +00:00
|
|
|
{`@${ item.user.username }`}
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
renderSeparator = () => {
|
|
|
|
const { theme } = this.props;
|
|
|
|
return <View style={[styles.separator, { backgroundColor: themes[theme].separatorColor }]} />;
|
|
|
|
}
|
2019-06-10 18:36:31 +00:00
|
|
|
|
|
|
|
render() {
|
|
|
|
const { receipts, loading } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
2019-06-10 18:36:31 +00:00
|
|
|
|
|
|
|
if (!loading && receipts.length === 0) {
|
|
|
|
return this.renderEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2020-10-30 13:59:44 +00:00
|
|
|
<SafeAreaView testID='read-receipt-view'>
|
|
|
|
<StatusBar />
|
2020-09-15 13:09:23 +00:00
|
|
|
{loading
|
|
|
|
? <ActivityIndicator theme={theme} />
|
|
|
|
: (
|
|
|
|
<FlatList
|
|
|
|
data={receipts}
|
|
|
|
renderItem={this.renderItem}
|
|
|
|
ItemSeparatorComponent={this.renderSeparator}
|
|
|
|
style={[
|
|
|
|
styles.list,
|
|
|
|
{
|
|
|
|
backgroundColor: themes[theme].chatComponentBackground,
|
|
|
|
borderColor: themes[theme].separatorColor
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
keyExtractor={item => item._id}
|
|
|
|
/>
|
|
|
|
)}
|
2019-06-10 18:36:31 +00:00
|
|
|
</SafeAreaView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2020-10-30 13:12:02 +00:00
|
|
|
Message_TimeFormat: state.settings.Message_TimeFormat
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
export default connect(mapStateToProps)(withTheme(ReadReceiptView));
|