Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions app/containers/message/Thread.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,10 @@ const Thread = React.memo(({
}

const {
getBadgeColor, toggleFollowThread, user, replies
threadBadgeColor, toggleFollowThread, user, replies
} = useContext(MessageContext);
const time = formatDateThreads(tlm);
const buttonText = formatMessageCount(tcount, THREAD);
const badgeColor = getBadgeColor?.(id);
const isFollowing = replies?.find(u => u === user.id);
return (
<View style={styles.buttonContainer}>
Expand All @@ -35,7 +34,7 @@ const Thread = React.memo(({
<Text style={[styles.buttonText, { color: themes[theme].buttonText }]}>{buttonText}</Text>
</View>
<Text style={[styles.time, { color: themes[theme].auxiliaryText }]}>{time}</Text>
{badgeColor ? <View style={[styles.threadBadge, { backgroundColor: badgeColor }]} /> : null}
{threadBadgeColor ? <View style={[styles.threadBadge, { backgroundColor: threadBadgeColor }]} /> : null}
<Touchable onPress={() => toggleFollowThread(isFollowing, id)}>
<CustomIcon
name={isFollowing ? 'notification' : 'notification-disabled'}
Expand Down
11 changes: 7 additions & 4 deletions app/containers/message/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class MessageContainer extends React.Component {
callJitsi: PropTypes.func,
blockAction: PropTypes.func,
theme: PropTypes.string,
getBadgeColor: PropTypes.func,
threadBadgeColor: PropTypes.string,
toggleFollowThread: PropTypes.func
}

Expand Down Expand Up @@ -84,10 +84,13 @@ class MessageContainer extends React.Component {
}

shouldComponentUpdate(nextProps) {
const { theme } = this.props;
const { theme, threadBadgeColor } = this.props;
if (nextProps.theme !== theme) {
return true;
}
if (nextProps.threadBadgeColor !== threadBadgeColor) {
return true;
}
return false;
}

Expand Down Expand Up @@ -244,7 +247,7 @@ class MessageContainer extends React.Component {

render() {
const {
item, user, style, archived, baseUrl, useRealName, broadcast, fetchThreadName, showAttachment, timeFormat, isReadReceiptEnabled, autoTranslateRoom, autoTranslateLanguage, navToRoomInfo, getCustomEmoji, isThreadRoom, callJitsi, blockAction, rid, theme, getBadgeColor, toggleFollowThread
item, user, style, archived, baseUrl, useRealName, broadcast, fetchThreadName, showAttachment, timeFormat, isReadReceiptEnabled, autoTranslateRoom, autoTranslateLanguage, navToRoomInfo, getCustomEmoji, isThreadRoom, callJitsi, blockAction, rid, theme, threadBadgeColor, toggleFollowThread
} = this.props;
const {
id, msg, ts, attachments, urls, reactions, t, avatar, emoji, u, alias, editedBy, role, drid, dcount, dlm, tmid, tcount, tlm, tmsg, mentions, channels, unread, blocks, autoTranslate: autoTranslateMessage, replies
Expand All @@ -271,7 +274,7 @@ class MessageContainer extends React.Component {
onEncryptedPress: this.onEncryptedPress,
onDiscussionPress: this.onDiscussionPress,
onReactionLongPress: this.onReactionLongPress,
getBadgeColor,
threadBadgeColor,
toggleFollowThread,
replies
}}
Expand Down
2 changes: 1 addition & 1 deletion app/views/RoomView/Header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const Header = React.memo(({
roomUserId={roomUserId}
theme={theme}
/>
<Text style={[styles.subtitle, { color: themes[theme].auxiliaryText }]}>{parentTitle}</Text>
<Text style={[styles.subtitle, { color: themes[theme].auxiliaryText }]} numberOfLines={1}>{parentTitle}</Text>
</View>
);
}
Expand Down
6 changes: 5 additions & 1 deletion app/views/RoomView/List.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class List extends React.Component {
loading: PropTypes.bool,
listRef: PropTypes.func,
hideSystemMessages: PropTypes.array,
tunread: PropTypes.array,
navigation: PropTypes.object,
showMessageInMainThread: PropTypes.bool
};
Expand Down Expand Up @@ -76,7 +77,7 @@ class List extends React.Component {

shouldComponentUpdate(nextProps, nextState) {
const { loading, end, refreshing } = this.state;
const { hideSystemMessages, theme } = this.props;
const { hideSystemMessages, theme, tunread } = this.props;
if (theme !== nextProps.theme) {
return true;
}
Expand All @@ -92,6 +93,9 @@ class List extends React.Component {
if (!isEqual(hideSystemMessages, nextProps.hideSystemMessages)) {
return true;
}
if (!isEqual(tunread, nextProps.tunread)) {
return true;
}
return false;
}

Expand Down
6 changes: 3 additions & 3 deletions app/views/RoomView/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const stateAttrsUpdate = [
'readOnly',
'member'
];
const roomAttrsUpdate = ['f', 'ro', 'blocked', 'blocker', 'archived', 'muted', 'jitsiTimeout', 'announcement', 'sysMes', 'topic', 'name', 'fname', 'roles', 'bannerClosed', 'visitor'];
const roomAttrsUpdate = ['f', 'ro', 'blocked', 'blocker', 'archived', 'muted', 'tunread', 'jitsiTimeout', 'announcement', 'sysMes', 'topic', 'name', 'fname', 'roles', 'bannerClosed', 'visitor'];

class RoomView extends React.Component {
static propTypes = {
Expand Down Expand Up @@ -909,7 +909,7 @@ class RoomView extends React.Component {
getCustomEmoji={this.getCustomEmoji}
callJitsi={this.callJitsi}
blockAction={this.blockAction}
getBadgeColor={this.getBadgeColor}
threadBadgeColor={this.getBadgeColor(item?.id)}
toggleFollowThread={this.toggleFollowThread}
/>
);
Expand Down Expand Up @@ -1053,7 +1053,7 @@ class RoomView extends React.Component {
t={t}
tmid={this.tmid}
theme={theme}
room={room}
tunread={room?.tunread}
renderRow={this.renderItem}
loading={loading}
navigation={navigation}
Expand Down
29 changes: 19 additions & 10 deletions app/views/RoomsListView/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class RoomsListView extends React.Component {
searching: false,
search: [],
loading: true,
chatsOrder: [],
chatsUpdate: [],
chats: [],
item: {}
};
Expand Down Expand Up @@ -224,15 +224,15 @@ class RoomsListView extends React.Component {
}

shouldComponentUpdate(nextProps, nextState) {
const { chatsOrder, searching, item } = this.state;
const { chatsUpdate, searching, item } = this.state;
// eslint-disable-next-line react/destructuring-assignment
const propsUpdated = shouldUpdateProps.some(key => nextProps[key] !== this.props[key]);
if (propsUpdated) {
return true;
}

// Compare changes only once
const chatsNotEqual = !isEqual(nextState.chatsOrder, chatsOrder);
const chatsNotEqual = !isEqual(nextState.chatsUpdate, chatsUpdate);

// If they aren't equal, set to update if focused
if (chatsNotEqual) {
Expand Down Expand Up @@ -437,7 +437,7 @@ class RoomsListView extends React.Component {
observable = await db.collections
.get('subscriptions')
.query(...defaultWhereClause)
.observe();
.observeWithColumns(['alert']);

// When we're NOT grouping
} else {
Expand All @@ -456,11 +456,20 @@ class RoomsListView extends React.Component {
let tempChats = [];
let chats = data;

/**
* We trigger re-render only when chats order changes
* RoomItem handles its own re-render
*/
const chatsOrder = data.map(item => item.rid);
let chatsUpdate = [];
if (showUnread) {
/**
* If unread on top, we trigger re-render based on order changes and sub.alert
* RoomItem handles its own re-render
*/
chatsUpdate = data.map(item => ({ rid: item.rid, alert: item.alert }));
} else {
/**
* Otherwise, we trigger re-render only when chats order changes
* RoomItem handles its own re-render
*/
chatsUpdate = data.map(item => item.rid);
}

const isOmnichannelAgent = user?.roles?.includes('livechat-agent');
if (isOmnichannelAgent) {
Expand Down Expand Up @@ -501,7 +510,7 @@ class RoomsListView extends React.Component {

this.internalSetState({
chats: tempChats,
chatsOrder,
chatsUpdate,
loading: false
});
});
Expand Down
2 changes: 1 addition & 1 deletion storybook/stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const messageDecorator = story => (
onReactionPress: () => {},
onDiscussionPress: () => {},
onReactionLongPress: () => {},
getBadgeColor: () => themes.light.tunreadBackground
threadBadgeColor: themes.light.tunreadBackground
}}
>
{story()}
Expand Down