Newer
Older
import React from 'react';
import PropTypes from 'prop-types';
import {
FlatList, View, Text, InteractionManager
} from 'react-native';
import { connect } from 'react-redux';
import SafeAreaView from 'react-native-safe-area-view';
import orderBy from 'lodash/orderBy';
import { Q } from '@nozbe/watermelondb';
import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord';
import styles from './styles';
import Message from '../../containers/message';
import RCActivityIndicator from '../../containers/ActivityIndicator';
import I18n from '../../i18n';
import RocketChat from '../../lib/rocketchat';
import database from '../../lib/database';
import StatusBar from '../../containers/StatusBar';
import buildMessage from '../../lib/methods/helpers/buildMessage';
import log from '../../utils/log';
import debounce from '../../utils/debounce';
import protectedFunction from '../../lib/methods/helpers/protectedFunction';
const Separator = React.memo(() => <View style={styles.separator} />);
class ThreadMessagesView extends React.Component {
static navigationOptions = {
title: I18n.t('Threads')
}
static propTypes = {
user: PropTypes.object,
navigation: PropTypes.object,
baseUrl: PropTypes.string,
useRealName: PropTypes.bool,
customEmojis: PropTypes.object
this.rid = props.navigation.getParam('rid');
this.t = props.navigation.getParam('t');
this.state = {
loading: false,
end: false,
Diego Mello
committed
this.subscribeData();
this.mountInteraction = InteractionManager.runAfterInteractions(() => {
this.init();
});
componentWillUnmount() {
if (this.mountInteraction && this.mountInteraction.cancel) {
this.mountInteraction.cancel();
if (this.loadInteraction && this.loadInteraction.cancel) {
this.loadInteraction.cancel();
if (this.syncInteraction && this.syncInteraction.cancel) {
this.syncInteraction.cancel();
if (this.subSubscription && this.subSubscription.unsubscribe) {
this.subSubscription.unsubscribe();
}
if (this.messagesSubscription && this.messagesSubscription.unsubscribe) {
this.messagesSubscription.unsubscribe();
}
subscribeData = () => {
try {
const db = database.active;
this.subObservable = db.collections
.get('subscriptions')
.findAndObserve(this.rid);
this.subSubscription = this.subObservable
.subscribe((data) => {
this.subscription = data;
});
this.messagesObservable = db.collections
.get('threads')
.query(
Q.where('rid', this.rid),
Q.where('t', Q.notEq('rm'))
)
.observeWithColumns(['updated_at']);
this.messagesSubscription = this.messagesObservable
.subscribe((data) => {
const messages = orderBy(data, ['ts'], ['desc']);
if (this.mounted) {
this.setState({ messages });
} else {
this.state.messages = messages;
}
});
} catch (e) {
log(e);
}
}
// eslint-disable-next-line react/sort-comp
try {
const lastThreadSync = new Date();
if (this.subscription.lastThreadSync) {
this.sync(this.subscription.lastThreadSync);
} else {
this.load(lastThreadSync);
}
} catch (e) {
log(e);
}
}
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
updateThreads = async({ update, remove, lastThreadSync }) => {
try {
const db = database.active;
const threadsCollection = db.collections.get('threads');
const allThreadsRecords = await this.subscription.threads.fetch();
let threadsToCreate = [];
let threadsToUpdate = [];
let threadsToDelete = [];
if (update && update.length) {
update = update.map(m => buildMessage(m));
// filter threads
threadsToCreate = update.filter(i1 => !allThreadsRecords.find(i2 => i1._id === i2.id));
threadsToUpdate = allThreadsRecords.filter(i1 => update.find(i2 => i1.id === i2._id));
threadsToCreate = threadsToCreate.map(thread => threadsCollection.prepareCreate(protectedFunction((t) => {
t._raw = sanitizedRaw({ id: thread._id }, threadsCollection.schema);
t.subscription.set(this.subscription);
Object.assign(t, thread);
})));
threadsToUpdate = threadsToUpdate.map((thread) => {
const newThread = update.find(t => t._id === thread.id);
return thread.prepareUpdate(protectedFunction((t) => {
Object.assign(t, newThread);
}));
});
}
if (remove && remove.length) {
threadsToDelete = allThreadsRecords.filter(i1 => remove.find(i2 => i1.id === i2._id));
threadsToDelete = threadsToDelete.map(t => t.prepareDestroyPermanently());
}
await db.action(async() => {
await db.batch(
...threadsToCreate,
...threadsToUpdate,
...threadsToDelete,
this.subscription.prepareUpdate((s) => {
s.lastThreadSync = lastThreadSync;
})
);
});
} catch (e) {
log(e);
}
// eslint-disable-next-line react/sort-comp
load = debounce(async(lastThreadSync) => {
const { loading, end, messages } = this.state;
return;
}
this.setState({ loading: true });
try {
rid: this.rid, count: API_FETCH_COUNT, offset: messages.length
if (result.success) {
this.loadInteraction = InteractionManager.runAfterInteractions(() => {
this.updateThreads({ update: result.threads, lastThreadSync });
this.setState({
loading: false,
end: result.count < API_FETCH_COUNT
});
});
}
}, 300)
// eslint-disable-next-line react/sort-comp
sync = async(updatedSince) => {
this.setState({ loading: true });
try {
const result = await RocketChat.getSyncThreadsList({
rid: this.rid, updatedSince: updatedSince.toISOString()
});
if (result.success && result.threads) {
this.syncInteraction = InteractionManager.runAfterInteractions(() => {
const { update, remove } = result.threads;
this.updateThreads({ update, remove, lastThreadSync: updatedSince });
this.setState({
loading: false
});
formatMessage = lm => (
lm ? moment(lm).calendar(null, {
lastDay: `[${ I18n.t('Yesterday') }]`,
sameDay: 'h:mm A',
lastWeek: 'dddd',
sameElse: 'MMM D'
}) : null
)
getCustomEmoji = (name) => {
const { customEmojis } = this.props;
const emoji = customEmojis[name];
if (emoji) {
return emoji;
}
return null;
}
onThreadPress = debounce((item) => {
const { navigation } = this.props;
navigation.push('RoomView', {
rid: item.subscription.id, tmid: item.id, name: item.msg, t: 'thread'
});
renderSeparator = () => <Separator />
renderEmpty = () => (
<View style={styles.listEmptyContainer} testID='thread-messages-view'>
<Text style={styles.noDataFound}>{I18n.t('No_thread_messages')}</Text>
</View>
)
renderItem = ({ item }) => {
const {
user, navigation, baseUrl, useRealName
} = this.props;
return (
<Message
key={item.id}
item={item}
user={user}
archived={false}
broadcast={false}
status={item.status}
navigation={navigation}
timeFormat='MMM D'
customThreadTimeFormat='MMM Do YYYY, h:mm:ss a'
onThreadPress={this.onThreadPress}
baseUrl={baseUrl}
useRealName={useRealName}
getCustomEmoji={this.getCustomEmoji}
/>
);
if (!loading && messages.length === 0) {
<SafeAreaView style={styles.list} testID='thread-messages-view' forceInset={{ vertical: 'never' }}>
renderItem={this.renderItem}
style={styles.list}
contentContainerStyle={styles.contentContainer}
onEndReached={this.load}
onEndReachedThreshold={0.5}
maxToRenderPerBatch={5}
initialNumToRender={1}
ItemSeparatorComponent={this.renderSeparator}
ListFooterComponent={loading ? <RCActivityIndicator /> : null}
/>
</SafeAreaView>
);
}
}
const mapStateToProps = state => ({
baseUrl: state.settings.Site_Url || state.server ? state.server.server : '',
user: {
id: state.login.user && state.login.user.id,
username: state.login.user && state.login.user.username,
token: state.login.user && state.login.user.token
},
useRealName: state.settings.UI_Use_Real_Name,
customEmojis: state.customEmojis
});
export default connect(mapStateToProps)(ThreadMessagesView);