175 lines
4.4 KiB
JavaScript
175 lines
4.4 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { FlatList, View, Text } from 'react-native';
|
|
import { SafeAreaView } from 'react-navigation';
|
|
import equal from 'deep-equal';
|
|
import moment from 'moment';
|
|
import { connect } from 'react-redux';
|
|
|
|
import Avatar from '../../containers/Avatar';
|
|
import styles from './styles';
|
|
import ActivityIndicator from '../../containers/ActivityIndicator';
|
|
import I18n from '../../i18n';
|
|
import RocketChat from '../../lib/rocketchat';
|
|
import StatusBar from '../../containers/StatusBar';
|
|
import { withTheme } from '../../theme';
|
|
import { themedHeader } from '../../utils/navigation';
|
|
import { themes } from '../../constants/colors';
|
|
import { getUserSelector } from '../../selectors/login';
|
|
|
|
class ReadReceiptView extends React.Component {
|
|
static navigationOptions = ({ screenProps }) => ({
|
|
title: I18n.t('Read_Receipt'),
|
|
...themedHeader(screenProps.theme)
|
|
})
|
|
|
|
static propTypes = {
|
|
navigation: PropTypes.object,
|
|
Message_TimeFormat: PropTypes.string,
|
|
baseUrl: PropTypes.string,
|
|
user: PropTypes.object,
|
|
theme: PropTypes.string
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.messageId = props.navigation.getParam('messageId');
|
|
this.state = {
|
|
loading: false,
|
|
receipts: []
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.load();
|
|
}
|
|
|
|
shouldComponentUpdate(nextProps, nextState) {
|
|
const { loading, receipts } = this.state;
|
|
const { theme } = this.props;
|
|
if (nextProps.theme !== theme) {
|
|
return true;
|
|
}
|
|
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);
|
|
}
|
|
}
|
|
|
|
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>
|
|
);
|
|
}
|
|
|
|
renderItem = ({ item }) => {
|
|
const {
|
|
Message_TimeFormat, user: { id: userId, token }, baseUrl, theme
|
|
} = this.props;
|
|
const time = moment(item.ts).format(Message_TimeFormat);
|
|
return (
|
|
<View style={[styles.itemContainer, { backgroundColor: themes[theme].backgroundColor }]}>
|
|
<Avatar
|
|
text={item.user.username}
|
|
size={40}
|
|
baseUrl={baseUrl}
|
|
userId={userId}
|
|
token={token}
|
|
/>
|
|
<View style={styles.infoContainer}>
|
|
<View style={styles.item}>
|
|
<Text style={[styles.name, { color: themes[theme].titleText }]}>
|
|
{item.user.name}
|
|
</Text>
|
|
<Text style={{ color: themes[theme].auxiliaryText }}>
|
|
{time}
|
|
</Text>
|
|
</View>
|
|
<Text style={{ color: themes[theme].auxiliaryText }}>
|
|
{`@${ item.user.username }`}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
renderSeparator = () => {
|
|
const { theme } = this.props;
|
|
return <View style={[styles.separator, { backgroundColor: themes[theme].separatorColor }]} />;
|
|
}
|
|
|
|
render() {
|
|
const { receipts, loading } = this.state;
|
|
const { theme } = this.props;
|
|
|
|
if (!loading && receipts.length === 0) {
|
|
return this.renderEmpty();
|
|
}
|
|
|
|
return (
|
|
<SafeAreaView
|
|
style={[styles.container, { backgroundColor: themes[theme].chatComponentBackground }]}
|
|
forceInset={{ bottom: 'always' }}
|
|
testID='read-receipt-view'
|
|
>
|
|
<StatusBar theme={theme} />
|
|
<View>
|
|
{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}
|
|
/>
|
|
)}
|
|
</View>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = state => ({
|
|
Message_TimeFormat: state.settings.Message_TimeFormat,
|
|
baseUrl: state.server.server,
|
|
user: getUserSelector(state)
|
|
});
|
|
|
|
export default connect(mapStateToProps)(withTheme(ReadReceiptView));
|